From 02610f7c922093c2b0911253f101da01ed439cff Mon Sep 17 00:00:00 2001 From: Phillip LeBlanc Date: Tue, 26 Mar 2024 00:37:00 +0900 Subject: [PATCH] Add WIP for `sales-bi` sample --- .github/workflows/gardener.yml | 111 - .github/workflows/kubernetes.yml | 47 - .github/workflows/serverops.yml | 132 - .vscode/launch.json | 16 - Makefile | 15 - gardener/README.md | 222 - gardener/data/garden_data.csv | 6113 ----------------------- gardener/garden.py | 53 - gardener/main.py | 105 - gardener/requirements.txt | 1 - kubernetes/README.md | 87 - kubernetes/spiceai-deployment.yaml | 39 - kubernetes/spiceai-service.yaml | 12 - kubernetes/trader-configmap.yaml | 1517 ------ sales-bi/Dockerfile | 21 + sales-bi/Makefile | 16 + sales-bi/README.md | 45 + sales-bi/compose.yaml | 49 + sales-bi/init-pg/cleaned_sales_data.sql | 2892 +++++++++++ sales-bi/init-pg/init.sh | 9 + sales-bi/spicepod.yaml | 15 + sales-bi/superset/Dockerfile | 7 + sales-bi/superset/init/init.sh | 11 + serverops/README.md | 202 - serverops/docker-compose.yaml | 22 - serverops/serverops.ps1 | 62 - serverops/set-spice-vars.sh | 5 - serverops/telegraf.conf | 23 - trader/.gitignore | 2 - trader/README.md | 131 - trader/main.js | 66 - trader/package-lock.json | 144 - trader/package.json | 16 - 33 files changed, 3065 insertions(+), 9143 deletions(-) delete mode 100644 .github/workflows/gardener.yml delete mode 100644 .github/workflows/kubernetes.yml delete mode 100644 .github/workflows/serverops.yml delete mode 100644 .vscode/launch.json delete mode 100644 Makefile delete mode 100644 gardener/README.md delete mode 100644 gardener/data/garden_data.csv delete mode 100644 gardener/garden.py delete mode 100644 gardener/main.py delete mode 100644 gardener/requirements.txt delete mode 100644 kubernetes/README.md delete mode 100644 kubernetes/spiceai-deployment.yaml delete mode 100644 kubernetes/spiceai-service.yaml delete mode 100644 kubernetes/trader-configmap.yaml create mode 100644 sales-bi/Dockerfile create mode 100644 sales-bi/Makefile create mode 100644 sales-bi/README.md create mode 100644 sales-bi/compose.yaml create mode 100644 sales-bi/init-pg/cleaned_sales_data.sql create mode 100644 sales-bi/init-pg/init.sh create mode 100644 sales-bi/spicepod.yaml create mode 100644 sales-bi/superset/Dockerfile create mode 100755 sales-bi/superset/init/init.sh delete mode 100644 serverops/README.md delete mode 100644 serverops/docker-compose.yaml delete mode 100755 serverops/serverops.ps1 delete mode 100755 serverops/set-spice-vars.sh delete mode 100644 serverops/telegraf.conf delete mode 100644 trader/.gitignore delete mode 100644 trader/README.md delete mode 100644 trader/main.js delete mode 100644 trader/package-lock.json delete mode 100644 trader/package.json diff --git a/.github/workflows/gardener.yml b/.github/workflows/gardener.yml deleted file mode 100644 index 78d12df..0000000 --- a/.github/workflows/gardener.yml +++ /dev/null @@ -1,111 +0,0 @@ -name: gardener - -on: - push: - branches: - - trunk - paths: - - "gardener/**" - pull_request: - branches: - - trunk - paths: - - "gardener/**" - schedule: - - cron: "19 18 * * 4" - workflow_dispatch: - -defaults: - run: - shell: bash - working-directory: gardener - -jobs: - gardener: - name: gardener> ${{ matrix.display_name }} - runs-on: ubuntu-latest - env: - GOVER: 1.17 - - strategy: - fail-fast: false - matrix: - version: [released, edge] - include: - - version: released - context: docker - spicepod_version: latest - display_name: https://install.spiceai.org - - version: edge - context: metal - spicepod_version: latest - display_name: spiceai/spiceai@trunk - - steps: - - uses: actions/checkout@v2 - - - name: install Spice.ai (edge, metal) - if: matrix.version == 'edge' - uses: ./.github/actions/install-edge-metal - - - name: update PATH - if: matrix.version == 'released' - run: | - echo "PATH=~/.spice/bin:$PATH" >> $GITHUB_ENV - - - name: install Spice.ai (https://install.spiceai.org) - if: matrix.version == 'released' - run: | - curl https://install.spiceai.org | /bin/bash - - - name: start Spice.ai runtime (context ${{ matrix.context }}) - run: | - spice run --context ${{ matrix.context }} & - - - name: wait for Spice.ai runtime healthy - run: | - timeout 120 bash -c 'while [[ "$(curl -s -w 200 http://localhost:8000/health)" != "ok200" ]]; do sleep 1; done' || false - - - name: fetch diagnostics - run: | - curl http://localhost:8000/api/v0.1/diagnostics - - - name: spice add samples/gardener@${{ matrix.spicepod_version }} - if: matrix.spicepod_version != 'latest' - run: | - spice add samples/gardener@${{ matrix.spicepod_version }} - - - name: spice add samples/gardener - if: matrix.spicepod_version == 'latest' - run: | - spice add samples/gardener - - - name: fetch pods - run: | - curl -s http://localhost:8000/api/v0.1/pods | jq - - - name: fetch observations - run: | - curl http://localhost:8000/api/v0.1/pods/gardener/observations - - - name: fetch recommendations - run: | - curl -s http://localhost:8000/api/v0.1/pods/gardener/recommendation - - - name: install python packages - run: | - pip install -r requirements.txt - - - name: start gardener sample app - run: | - timeout 180 python main.py | tee gardener.out || true - - - name: fetch recommendations - run: | - curl -s http://localhost:8000/api/v0.1/pods/gardener/recommendation - curl -s http://localhost:8000/api/v0.1/pods/gardener/recommendation | grep -E "confidence" && echo "Fetched recommendation from trained model" || exit 1 - - - name: check output for success - run: | - cat gardener.out - grep -E "Watering" gardener.out && echo "Found successful action based on recommendation" || exit 1 diff --git a/.github/workflows/kubernetes.yml b/.github/workflows/kubernetes.yml deleted file mode 100644 index e334bbb..0000000 --- a/.github/workflows/kubernetes.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: kubernetes - -on: - push: - branches: - - trunk - pull_request: - branches: - - trunk - schedule: - - cron: '19 18 * * 4' - workflow_dispatch: - -defaults: - run: - shell: bash - working-directory: kubernetes - -jobs: - test: - name: test kubernetes - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: install k8s - run: | - curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE=777 sh - - cat /etc/rancher/k3s/k3s.yaml - mkdir -p ~/.kube - cp /etc/rancher/k3s/k3s.yaml ~/.kube/config - kubectl cluster-info - kubectl get po - - - name: add spice components to cluster - run: | - kubectl apply -f trader-configmap.yaml - kubectl apply -f spiceai-deployment.yaml - kubectl rollout status deployment/spiceai-deployment --timeout=240s - kubectl expose deployment spiceai-deployment --type=LoadBalancer - kubectl get service --all-namespaces - sleep 30 - kubectl get service --all-namespaces - - - name: fetch recommendation - run: | - curl http://localhost:8000/api/v0.1/pods/trader/recommendation \ No newline at end of file diff --git a/.github/workflows/serverops.yml b/.github/workflows/serverops.yml deleted file mode 100644 index af01404..0000000 --- a/.github/workflows/serverops.yml +++ /dev/null @@ -1,132 +0,0 @@ -name: serverops - -on: - push: - branches: - - trunk - paths: - - "serverops/**" - pull_request: - branches: - - trunk - paths: - - "serverops/**" - schedule: - - cron: "19 18 * * 4" - workflow_dispatch: - -defaults: - run: - shell: bash - working-directory: serverops - -jobs: - serverops: - name: serverops> ${{ matrix.display_name }} - runs-on: ubuntu-latest - env: - GOVER: 1.17 - - strategy: - fail-fast: false - matrix: - version: [released, edge] - include: - - version: released - context: docker - spicepod_version: latest - display_name: https://install.spiceai.org - - version: edge - context: metal - spicepod_version: latest - display_name: spiceai/spiceai@trunk - - steps: - - uses: actions/checkout@v2 - - - name: bring up influxdb/telegraf - run: docker-compose up -d - - - name: install Spice.ai (edge, metal) - if: matrix.version == 'edge' - uses: ./.github/actions/install-edge-metal - - - name: update PATH - if: matrix.version == 'released' - run: | - echo "PATH=~/.spice/bin:$PATH" >> $GITHUB_ENV - - - name: install Spice.ai (https://install.spiceai.org) - if: matrix.version == 'released' - run: | - curl https://install.spiceai.org | /bin/bash - - - name: wait for influxdb start and metrics collection - run: | - sleep 30 - curl -s http://localhost:8086 - - - name: start Spice.ai runtime (context ${{ matrix.context }}) - if: matrix.context == 'docker' - run: | - source set-spice-vars.sh - spice run --context ${{ matrix.context }} & - - - name: start Spice.ai runtime (context ${{ matrix.context }}) - if: matrix.context == 'metal' - run: | - source set-spice-vars.sh - SPICE_INFLUXDB_URL=http://localhost:8086 spice run --context ${{ matrix.context }} & - - - name: wait for Spice.ai runtime healthy - run: | - timeout 60 bash -c 'while [[ "$(curl -s -w 200 http://localhost:8000/health)" != "ok200" ]]; do sleep 1; done' || false - - - name: fetch diagnostics - run: | - curl -s http://localhost:8000/api/v0.1/diagnostics - - - name: spice add samples/serverops@${{ matrix.spicepod_version }} - if: matrix.spicepod_version != 'latest' - run: | - spice add samples/serverops@${{ matrix.spicepod_version }} - - - name: spice add samples/serverops - if: matrix.spicepod_version == 'latest' - run: | - spice add samples/serverops - - - name: fetch pods - run: | - curl -s http://localhost:8000/api/v0.1/pods | jq - - - name: query InfluxDB for measurements - run: | - curl -XPOST localhost:8086/api/v2/query\?org=my-org -sS \ - -H 'Accept:application/csv' \ - -H 'Content-type:application/vnd.flux' \ - -H 'Authorization: Token my-super-secret-auth-token' \ - -d 'from(bucket:"my-bucket") - |> range(start:-5m) - |> filter(fn:(r) => r._measurement == "cpu")' - - - name: fetch observations - run: | - curl -s http://localhost:8000/api/v0.1/pods/serverops/observations - - - name: fetch recommendation - run: | - curl -s http://localhost:8000/api/v0.1/pods/serverops/recommendation | jq - - - name: start serverops sample app - run: | - timeout 60 pwsh serverops.ps1 | tee serverops.out || true - - - name: fetch recommendations - run: | - curl -s http://localhost:8000/api/v0.1/pods/serverops/recommendation | jq - curl -s http://localhost:8000/api/v0.1/pods/serverops/recommendation | grep -E "confidence" && echo "Fetched recommendation from trained model" || exit 1 - - - name: check output for success - run: | - grep -E "any|now" serverops.out && echo "Found successful action based on recommendation" || exit 1 diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 1af2b36..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Gardener", - "type": "python", - "request": "launch", - "program": "${workspaceFolder}/gardener/main.py", - "console": "integratedTerminal", - "cwd": "${workspaceFolder}/gardener" - } - ] -} diff --git a/Makefile b/Makefile deleted file mode 100644 index f173e7d..0000000 --- a/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -SHELL = /bin/bash - -.PHONY: generate-acknowledgements -generate-acknowledgements: - echo -e "# Open Source Acknowledgements\n\nSpice.ai would like to acknowledge the following open source projects for making this project possible:\n\nPython Packages\n" > ACKNOWLEDGEMENTS.md - python -m venv venv-acknowledgments - source venv-acknowledgments/bin/activate - venv-acknowledgments/bin/pip install -r gardener/requirements.txt - venv-acknowledgments/bin/pip install pip-licenses - venv-acknowledgments/bin/pip-licenses -f csv --with-authors --with-urls 2>/dev/null >> ACKNOWLEDGEMENTS.md - rm -rf venv-acknowledgments - - sed -i 's/\"//g' ACKNOWLEDGEMENTS.md - sed -i 's/,/, /g' ACKNOWLEDGEMENTS.md - sed -i 's/, /, /g' ACKNOWLEDGEMENTS.md \ No newline at end of file diff --git a/gardener/README.md b/gardener/README.md deleted file mode 100644 index 0dd96ed..0000000 --- a/gardener/README.md +++ /dev/null @@ -1,222 +0,0 @@ -# Gardener - -This sample uses temperature and moisture sensor data as input to Spice.ai to water a simulated garden. A simple control loop is used to sample the conditions of the soil, then open a watering valve based on recommendations from Spice.ai. - -## Prerequisites - -This sample requires - -- [Spice.ai](https://docs.spiceai.org/getting-started/install-spiceai/) -- [Python 3](https://www.python.org/downloads/) - -## Start the Spice.ai runtime - -First, ensure this `samples` repository is cloned. - -```bash -git clone https://github.com/spiceai/samples.git -``` - -Move to the `gardener` directory, retrieve the gardener pod from spicerack.org and start the Spice.ai runtime. - -```bash -cd samples/gardener -spice add samples/gardener -spice run -``` - -You will observe the Spice.ai runtime start up and load a `sensors/garden` dataspace. - -## Use Spice.ai to a train a model - -Use Spice.ai to train a model that can control your watering valve. - -In another terminal, start a training run: - -```bash -cd samples/gardener -spice train gardener -``` - -In the Spice.ai runtime terminal, you will observe the runtime load sensor data and begin to train! - -## Water your garden - -After training completes, use the newly trained model to help control your garden watering software. First, install the Python dependencies: - -```bash -python3 -m venv venv -source venv/bin/activate -python3 -m pip install -r requirements.txt -``` - -Now, run the garden watering simulator: - -```bash -python3 main.py -``` - -You will see a sensor readings from simulated garden and a smart watering inputs powered by Spice.ai: - -``` -Time (s): 1616731200 Temperature (C): 8.341 Moisture (%): 0.294 -Time (s): 1616734800 Temperature (C): 7.202 Moisture (%): 0.289 -Time (s): 1616738400 Temperature (C): 6.229 Moisture (%): 0.285 -Time (s): 1616742000 Temperature (C): 5.366 Moisture (%): 0.282 -Time (s): 1616745600 Temperature (C): 4.438 Moisture (%): 0.279 -Watering at full flow -Time (s): 1616749200 Temperature (C): 3.678 Moisture (%): 0.286 -... -``` - -## How it works - -### Dataspaces - -Open the `gardener` pod manifest at [spicepods/gardener.yaml](spicepods/gardener.yaml), paying particular attention to the `dataspaces` section: - -``` -dataspaces: - - from: sensors - name: garden - fields: - - name: temperature - - name: moisture - data: - connector: - name: file - params: - path: data/garden_data.csv - processor: - name: csv -``` - -This particular Spice.ai [dataspace](https://docs.spiceai.org/concepts/#dataspace) is using a `csv` [data processor](https://docs.spiceai.org/concepts/#data-processor) and a `file` [data connector](https://docs.spiceai.org/concepts/#data-connector) to extract the `temperature` and `moisture` columns from `data/garden_data.csv`. You can learn more about dataspaces in the [Concepts](https://docs.spiceai.org/concepts/) section of the Spice.ai documentation. - -### Actions - -The possible actions to provide as recommendations are defined in the `actions` section of the manifest: - -```yaml -actions: - - name: close_valve - - name: open_valve_half - - name: open_valve_full -``` - -Spice.ai will train using these three actions to provide a recommendation on which one to take when asked. - -### Rewards - -Spice.ai learns which action to recommend by rewarding or penalizing an action using a Reward definition. Review the `rewards` section of the manifest: - -```yaml -training: - rewards: - - reward: close_valve - with: | - # Reward keeping moisture content above 25% - if new_state.sensors_garden_moisture > 0.25: - reward = 200 - - # Penalize low moisture content depending on how far the garden has dried out - else: - reward = -100 * (0.25 - new_state.sensors_garden_moisture) - - # Penalize especially heavily if the drying trend is continuing (new_state is drier than prev_state) - if new_state.sensors_garden_moisture < prev_state.sensors_garden_moisture: - reward = reward * 2 - - - reward: open_valve_half - with: | - # Reward watering when needed, more heavily if the garden is more dried out - if new_state.sensors_garden_moisture < 0.25: - reward = 100 * (0.25 - new_state.sensors_garden_moisture) - - # Penalize wasting water - # Penalize overwatering depending on how overwatered the garden is - else: - reward = -50 * (new_state.sensors_garden_moisture - 0.25) - - - reward: open_valve_full - with: | - # Reward watering when needed, more heavily if the garden is more dried out - if new_state.sensors_garden_moisture < 0.25: - reward = 200 * (0.25 - new_state.sensors_garden_moisture) - - # Penalize wasting water more heavily with valve fully open - # Penalize overwatering depending on how overwatered the garden is - else: - reward = -100 * (new_state.sensors_garden_moisture - 0.25) -``` - -This section tells Spice.ai to reward each action, given the state at that step. These rewards are defined by simple Python expressions that assign a value to `reward`. A higher value means Spice.ai will learn to take this action more frequently as it trains. You can use values from your Dataspaces to calculate these rewards. They can be accessed with the expression `(new_state|prev_state).(from)_(name)_(field)`. - -Here, `new_state.sensors_garden_moisture` and `prev_state.sensors_garden_moisture` are being used to either reward or penalize opening or closing the watering valve. Notice how `new_state.sensors_garden_moisture` being compared to `prev_state.sensors_garden_moisture` in the reward for `close_valve`. This allows Spice.ai to gain a sense of directionality from its data. - -### Observations - -Spice.ai learns about your application's environment in real time through Observations. Open the sample application in [main.py](main.py) to see how that is done (code has been trimmed slightly for clarity): - -```python -SPICE_AI_OBSERVATIONS_URL = "http://localhost:8000/api/v0.1/pods/gardener/observations" - -output = io.StringIO() -writer = csv.writer(output) -writer.writerow( - ["time", "sensors.garden.temperature", "sensors.garden.moisture"] -) - -garden.update() -writer.writerow( - [ - garden.get_time_unix_seconds(), - round(garden.get_temperature(), 3), - round(garden.get_moisture(), 3), - ] -) - -requests.post(SPICE_AI_OBSERVATIONS_URL, data=output.getvalue()) -``` - -Spice.ai's observations endpoint accepts CSV formatted data with the following structure: - -- A "time" column must be included with all observations. Spice.ai works on timeseries data, so it's important to include this context. -- Column headers must be structured as `(dataspace from).(dataspace name).(dataspace field)` - -As observations are passed to Spice.ai, it will automatically update the recommendations it gives your applications to take them into account. You can also retrain your application using the new observations at any time. Cool! - -You can learn more about observations in the [documentation](https://docs.spiceai.org/reference/api/#observations). - -### Recommendations - -Open the sample application in [main.py](main.py) and look at how it is getting recommendations from Spice.ai: - -```python -response = requests.get("http://localhost:8000/api/v0.1/pods/gardener/recommendation") -response_json = response.json() -recommended_action = response_json["action"] -``` - -Spice.ai provides an easy way to get recommendations at any point via a simple `GET` request. This request returns a response in this format: - -```json -{ - "response": { - "result": "ok" - }, - "start": 1616788800, - "end": 1616792400, - "action": "close_valve", - "confidence": 0.841, - "tag": "latest" -} -``` - -Here you can see the window of time the recommendation is based on (`start` to `end`), the action Spice.ai recommends ("close_valve"), and Spice.ai's confidence in that recommendation expressed as a percentage. You can learn more about recommendations through the Spice.ai API in the [documentation](https://docs.spiceai.org/reference/api/). - -## Next steps - -- Learn more about the [Spice.ai API](https://docs.spiceai.org/reference/api/) and how you can use it to integrate with your app. -- Review the [Concepts](https://docs.spiceai.org/concepts/) of Spice.ai and how they can help you better leverage its capabilities. -- Try out the other [samples](../README.md) in this repository. diff --git a/gardener/data/garden_data.csv b/gardener/data/garden_data.csv deleted file mode 100644 index e91e626..0000000 --- a/gardener/data/garden_data.csv +++ /dev/null @@ -1,6113 +0,0 @@ -time,temperature,moisture -1612557000,25,0.25 -1612557600,25.229,0.247 -1612558200,25.346,0.245 -1612558800,25.473,0.242 -1612559400,25.604,0.247 -1612560000,25.857,0.245 -1612560600,26.091,0.242 -1612561200,26.253,0.24 -1612561800,26.443,0.237 -1612562400,26.704,0.238 -1612563000,26.779,0.239 -1612563600,26.87,0.24 -1612564200,27.007,0.241 -1612564800,27.26,0.238 -1612565400,27.433,0.243 -1612566000,27.707,0.24 -1612566600,27.711,0.245 -1612567200,27.769,0.245 -1612567800,28.068,0.243 -1612568400,28.09,0.243 -1612569000,28.146,0.241 -1612569600,28.19,0.238 -1612570200,28.02,0.235 -1612570800,27.738,0.236 -1612571400,27.592,0.233 -1612572000,27.386,0.237 -1612572600,27.165,0.242 -1612573200,27.092,0.239 -1612573800,26.914,0.237 -1612574400,26.774,0.234 -1612575000,26.772,0.231 -1612575600,26.74,0.236 -1612576200,26.682,0.233 -1612576800,26.416,0.23 -1612577400,26.386,0.231 -1612578000,26.14,0.233 -1612578600,25.962,0.23 -1612579200,25.766,0.227 -1612579800,25.629,0.225 -1612580400,25.521,0.222 -1612581000,25.361,0.22 -1612581600,25.22,0.225 -1612582200,25.151,0.23 -1612582800,25.066,0.227 -1612583400,24.856,0.225 -1612584000,24.83,0.23 -1612584600,24.703,0.235 -1612585200,24.638,0.232 -1612585800,24.576,0.23 -1612586400,24.288,0.227 -1612587000,24.184,0.229 -1612587600,24.167,0.226 -1612588200,23.986,0.224 -1612588800,23.843,0.225 -1612589400,23.764,0.223 -1612590000,23.757,0.22 -1612590600,23.736,0.222 -1612591200,23.611,0.219 -1612591800,23.519,0.217 -1612592400,23.33,0.215 -1612593000,23.289,0.212 -1612593600,23.032,0.21 -1612594200,23.017,0.208 -1612594800,22.982,0.205 -1612595400,22.719,0.203 -1612596000,22.649,0.209 -1612596600,22.542,0.21 -1612597200,22.489,0.208 -1612597800,22.292,0.206 -1612598400,22.01,0.207 -1612599000,21.926,0.209 -1612599600,21.921,0.207 -1612600200,21.71,0.205 -1612600800,21.617,0.202 -1612601400,21.574,0.2 -1612602000,21.512,0.206 -1612602600,21.232,0.204 -1612603200,21.105,0.202 -1612603800,20.896,0.2 -1612604400,20.724,0.205 -1612605000,20.567,0.211 -1612605600,20.392,0.213 -1612606200,20.356,0.219 -1612606800,20.147,0.225 -1612607400,20.113,0.223 -1612608000,20.041,0.221 -1612608600,19.823,0.227 -1612609200,19.809,0.225 -1612609800,19.709,0.227 -1612610400,19.453,0.233 -1612611000,19.45,0.235 -1612611600,19.245,0.241 -1612612200,19.233,0.243 -1612612800,18.993,0.242 -1612613400,18.841,0.24 -1612614000,19.112,0.242 -1612614600,19.313,0.24 -1612615200,19.463,0.242 -1612615800,19.526,0.248 -1612616400,19.81,0.25 -1612617000,20.031,0.248 -1612617600,20.212,0.246 -1612618200,20.25,0.248 -1612618800,20.487,0.254 -1612619400,20.526,0.252 -1612620000,20.58,0.254 -1612620600,20.609,0.256 -1612621200,20.803,0.262 -1612621800,20.874,0.268 -1612622400,20.992,0.269 -1612623000,21.151,0.267 -1612623600,21.361,0.273 -1612624200,21.611,0.271 -1612624800,21.763,0.277 -1612625400,21.799,0.274 -1612626000,21.954,0.272 -1612626600,21.983,0.278 -1612627200,22.177,0.276 -1612627800,22.457,0.277 -1612628400,22.48,0.283 -1612629000,22.659,0.281 -1612629600,22.865,0.278 -1612630200,22.984,0.276 -1612630800,23.091,0.274 -1612631400,23.2,0.271 -1612632000,23.333,0.273 -1612632600,23.614,0.271 -1612633200,23.743,0.276 -1612633800,24.02,0.274 -1612634400,24.265,0.271 -1612635000,24.28,0.269 -1612635600,24.484,0.266 -1612636200,24.545,0.264 -1612636800,24.841,0.261 -1612637400,24.874,0.259 -1612638000,24.888,0.256 -1612638600,24.997,0.254 -1612639200,25.081,0.251 -1612639800,25.115,0.249 -1612640400,25.182,0.246 -1612641000,25.43,0.244 -1612641600,25.71,0.249 -1612642200,25.831,0.254 -1612642800,25.94,0.255 -1612643400,26.065,0.26 -1612644000,26.171,0.264 -1612644600,26.375,0.262 -1612645200,26.469,0.259 -1612645800,26.6,0.257 -1612646400,26.797,0.258 -1612647000,26.918,0.262 -1612647600,26.962,0.267 -1612648200,26.991,0.271 -1612648800,27.04,0.269 -1612649400,27.124,0.266 -1612650000,27.194,0.263 -1612650600,27.346,0.261 -1612651200,27.403,0.258 -1612651800,27.699,0.255 -1612652400,27.963,0.252 -1612653000,28.094,0.25 -1612653600,28.151,0.247 -1612654200,28.157,0.251 -1612654800,28.339,0.252 -1612655400,28.534,0.249 -1612656000,28.732,0.253 -1612656600,28.705,0.258 -1612657200,28.573,0.258 -1612657800,28.552,0.255 -1612658400,28.361,0.253 -1612659000,28.149,0.25 -1612659600,28.032,0.247 -1612660200,27.985,0.244 -1612660800,27.979,0.249 -1612661400,27.779,0.246 -1612662000,27.665,0.243 -1612662600,27.475,0.24 -1612663200,27.194,0.237 -1612663800,27.181,0.238 -1612664400,27.057,0.239 -1612665000,26.82,0.237 -1612665600,26.732,0.234 -1612666200,26.666,0.231 -1612666800,26.571,0.229 -1612667400,26.519,0.226 -1612668000,26.264,0.223 -1612668600,26.068,0.221 -1612669200,25.988,0.218 -1612669800,25.877,0.219 -1612670400,25.705,0.217 -1612671000,25.414,0.214 -1612671600,25.134,0.211 -1612672200,24.983,0.213 -1612672800,24.693,0.21 -1612673400,24.558,0.208 -1612674000,24.442,0.205 -1612674600,24.297,0.203 -1612675200,24.03,0.2 -1612675800,23.868,0.198 -1612676400,23.616,0.199 -1612677000,23.379,0.197 -1612677600,23.147,0.195 -1612678200,22.943,0.192 -1612678800,22.813,0.19 -1612679400,22.574,0.188 -1612680000,22.408,0.185 -1612680600,22.129,0.187 -1612681200,21.83,0.185 -1612681800,21.538,0.183 -1612682400,21.462,0.181 -1612683000,21.197,0.186 -1612683600,21.111,0.188 -1612684200,20.916,0.186 -1612684800,20.653,0.184 -1612685400,20.616,0.182 -1612686000,20.376,0.18 -1612686600,20.122,0.186 -1612687200,20.096,0.188 -1612687800,19.948,0.186 -1612688400,19.694,0.184 -1612689000,19.518,0.182 -1612689600,19.393,0.18 -1612690200,19.292,0.178 -1612690800,19.144,0.176 -1612691400,19.039,0.174 -1612692000,18.94,0.172 -1612692600,18.652,0.174 -1612693200,18.601,0.172 -1612693800,18.422,0.179 -1612694400,18.41,0.177 -1612695000,18.317,0.175 -1612695600,18.248,0.177 -1612696200,18.128,0.184 -1612696800,17.891,0.182 -1612697400,17.828,0.188 -1612698000,17.748,0.186 -1612698600,17.465,0.185 -1612699200,17.433,0.183 -1612699800,17.265,0.181 -1612700400,17.309,0.188 -1612701000,17.592,0.186 -1612701600,17.608,0.184 -1612702200,17.897,0.191 -1612702800,18.144,0.189 -1612703400,18.274,0.191 -1612704000,18.328,0.189 -1612704600,18.388,0.196 -1612705200,18.493,0.202 -1612705800,18.736,0.2 -1612706400,19.012,0.206 -1612707000,19.122,0.213 -1612707600,19.325,0.211 -1612708200,19.533,0.209 -1612708800,19.654,0.207 -1612709400,19.801,0.205 -1612710000,19.94,0.211 -1612710600,20.095,0.209 -1612711200,20.133,0.207 -1612711800,20.357,0.205 -1612712400,20.603,0.203 -1612713000,20.9,0.205 -1612713600,21.081,0.203 -1612714200,21.219,0.201 -1612714800,21.282,0.206 -1612715400,21.477,0.212 -1612716000,21.615,0.21 -1612716600,21.912,0.208 -1612717200,22.167,0.209 -1612717800,22.417,0.211 -1612718400,22.52,0.213 -1612719000,22.752,0.21 -1612719600,22.983,0.212 -1612720200,23.098,0.21 -1612720800,23.295,0.207 -1612721400,23.565,0.205 -1612722000,23.714,0.203 -1612722600,23.88,0.2 -1612723200,24.086,0.206 -1612723800,24.359,0.203 -1612724400,24.536,0.201 -1612725000,24.728,0.202 -1612725600,24.903,0.207 -1612726200,24.959,0.208 -1612726800,25.077,0.213 -1612727400,25.297,0.211 -1612728000,25.534,0.208 -1612728600,25.708,0.206 -1612729200,25.728,0.211 -1612729800,25.792,0.212 -1612730400,25.924,0.217 -1612731000,26.014,0.214 -1612731600,26.257,0.211 -1612732200,26.36,0.209 -1612732800,26.368,0.206 -1612733400,26.665,0.204 -1612734000,26.885,0.205 -1612734600,26.972,0.202 -1612735200,27.253,0.199 -1612735800,27.271,0.2 -1612736400,27.354,0.197 -1612737000,27.468,0.195 -1612737600,27.532,0.199 -1612738200,27.615,0.196 -1612738800,27.832,0.194 -1612739400,27.845,0.191 -1612740000,27.892,0.188 -1612740600,28.038,0.185 -1612741200,28.18,0.182 -1612741800,28.478,0.183 -1612742400,28.729,0.184 -1612743000,28.653,0.181 -1612743600,28.407,0.182 -1612744200,28.346,0.186 -1612744800,28.213,0.183 -1612745400,27.961,0.18 -1612746000,27.685,0.178 -1612746600,27.579,0.182 -1612747200,27.375,0.179 -1612747800,27.098,0.184 -1612748400,26.999,0.181 -1612749000,26.945,0.179 -1612749600,26.678,0.176 -1612750200,26.533,0.173 -1612750800,26.508,0.17 -1612751400,26.367,0.172 -1612752000,26.325,0.169 -1612752600,26.301,0.17 -1612753200,26.12,0.171 -1612753800,25.929,0.176 -1612754400,25.781,0.173 -1612755000,25.605,0.171 -1612755600,25.535,0.172 -1612756200,25.43,0.169 -1612756800,25.155,0.167 -1612757400,25.143,0.168 -1612758000,24.985,0.165 -1612758600,24.686,0.163 -1612759200,24.513,0.16 -1612759800,24.48,0.158 -1612760400,24.349,0.163 -1612761000,24.261,0.164 -1612761600,24.252,0.162 -1612762200,24.217,0.163 -1612762800,24.151,0.161 -1612763400,24.074,0.162 -1612764000,23.99,0.167 -1612764600,23.895,0.169 -1612765200,23.748,0.17 -1612765800,23.618,0.176 -1612766400,23.481,0.173 -1612767000,23.193,0.178 -1612767600,23.176,0.18 -1612768200,22.995,0.185 -1612768800,22.989,0.183 -1612769400,22.76,0.181 -1612770000,22.667,0.178 -1612770600,22.44,0.176 -1612771200,22.413,0.174 -1612771800,22.353,0.172 -1612772400,22.164,0.17 -1612773000,21.96,0.167 -1612773600,21.693,0.165 -1612774200,21.512,0.167 -1612774800,21.381,0.169 -1612775400,21.089,0.166 -1612776000,20.86,0.164 -1612776600,20.694,0.162 -1612777200,20.676,0.164 -1612777800,20.446,0.162 -1612778400,20.246,0.16 -1612779000,20.1,0.162 -1612779600,19.927,0.16 -1612780200,19.831,0.158 -1612780800,19.697,0.156 -1612781400,19.683,0.154 -1612782000,19.676,0.16 -1612782600,19.471,0.158 -1612783200,19.19,0.164 -1612783800,19.092,0.162 -1612784400,18.902,0.164 -1612785000,18.797,0.167 -1612785600,18.56,0.169 -1612786200,18.41,0.167 -1612786800,18.522,0.169 -1612787400,18.786,0.171 -1612788000,19.038,0.17 -1612788600,19.218,0.168 -1612789200,19.489,0.166 -1612789800,19.707,0.172 -1612790400,19.914,0.178 -1612791000,19.978,0.176 -1612791600,20.188,0.174 -1612792200,20.199,0.172 -1612792800,20.426,0.178 -1612793400,20.614,0.176 -1612794000,20.644,0.174 -1612794600,20.729,0.172 -1612795200,20.793,0.174 -1612795800,20.981,0.171 -1612796400,21.19,0.169 -1612797000,21.428,0.167 -1612797600,21.579,0.165 -1612798200,21.713,0.163 -1612798800,21.774,0.169 -1612799400,22.002,0.166 -1612800000,22.211,0.168 -1612800600,22.445,0.166 -1612801200,22.683,0.168 -1612801800,22.945,0.165 -1612802400,22.999,0.167 -1612803000,23.026,0.165 -1612803600,23.128,0.162 -1612804200,23.237,0.168 -1612804800,23.3,0.173 -1612805400,23.37,0.171 -1612806000,23.527,0.176 -1612806600,23.632,0.174 -1612807200,23.683,0.171 -1612807800,23.812,0.177 -1612808400,24.034,0.174 -1612809000,24.315,0.176 -1612809600,24.363,0.181 -1612810200,24.55,0.178 -1612810800,24.657,0.18 -1612811400,24.916,0.177 -1612812000,24.995,0.178 -1612812600,25.256,0.176 -1612813200,25.335,0.173 -1612813800,25.548,0.178 -1612814400,25.683,0.179 -1612815000,25.948,0.177 -1612815600,25.968,0.174 -1612816200,26.107,0.172 -1612816800,26.316,0.173 -1612817400,26.606,0.17 -1612818000,26.841,0.167 -1612818600,26.994,0.165 -1612819200,27.259,0.162 -1612819800,27.306,0.159 -1612820400,27.542,0.164 -1612821000,27.702,0.161 -1612821600,27.871,0.158 -1612822200,27.928,0.156 -1612822800,28.081,0.153 -1612823400,28.342,0.157 -1612824000,28.363,0.154 -1612824600,28.503,0.151 -1612825200,28.576,0.149 -1612825800,28.735,0.149 -1612826400,28.804,0.154 -1612827000,28.966,0.154 -1612827600,29.134,0.151 -1612828200,29.234,0.148 -1612828800,29.489,0.149 -1612829400,29.312,0.15 -1612830000,29.205,0.154 -1612830600,28.987,0.158 -1612831200,28.885,0.155 -1612831800,28.76,0.152 -1612832400,28.74,0.153 -1612833000,28.673,0.15 -1612833600,28.474,0.154 -1612834200,28.296,0.159 -1612834800,28.148,0.156 -1612835400,28.069,0.16 -1612836000,28.046,0.157 -1612836600,27.884,0.158 -1612837200,27.609,0.159 -1612837800,27.563,0.156 -1612838400,27.476,0.153 -1612839000,27.394,0.151 -1612839600,27.343,0.152 -1612840200,27.294,0.152 -1612840800,27.174,0.153 -1612841400,27.131,0.151 -1612842000,26.86,0.148 -1612842600,26.726,0.153 -1612843200,26.637,0.15 -1612843800,26.338,0.151 -1612844400,26.324,0.156 -1612845000,26.301,0.153 -1612845600,26.179,0.15 -1612846200,26.037,0.151 -1612846800,26.033,0.149 -1612847400,26.027,0.154 -1612848000,25.931,0.151 -1612848600,25.688,0.152 -1612849200,25.419,0.153 -1612849800,25.287,0.154 -1612850400,25.072,0.152 -1612851000,24.775,0.157 -1612851600,24.67,0.154 -1612852200,24.388,0.152 -1612852800,24.315,0.153 -1612853400,24.266,0.155 -1612854000,23.995,0.156 -1612854600,23.779,0.157 -1612855200,23.674,0.159 -1612855800,23.483,0.156 -1612856400,23.348,0.154 -1612857000,23.251,0.152 -1612857600,23.063,0.149 -1612858200,23.053,0.155 -1612858800,22.98,0.153 -1612859400,22.735,0.158 -1612860000,22.635,0.156 -1612860600,22.367,0.153 -1612861200,22.311,0.155 -1612861800,22.221,0.153 -1612862400,22.048,0.151 -1612863000,21.752,0.152 -1612863600,21.65,0.154 -1612864200,21.437,0.152 -1612864800,21.185,0.15 -1612865400,21.006,0.155 -1612866000,20.808,0.161 -1612866600,20.573,0.163 -1612867200,20.461,0.165 -1612867800,20.449,0.163 -1612868400,20.249,0.165 -1612869000,20.219,0.163 -1612869600,20.058,0.169 -1612870200,19.811,0.167 -1612870800,19.777,0.165 -1612871400,19.761,0.163 -1612872000,19.694,0.161 -1612872600,19.545,0.159 -1612873200,19.577,0.157 -1612873800,19.771,0.159 -1612874400,19.863,0.157 -1612875000,20.138,0.155 -1612875600,20.272,0.161 -1612876200,20.273,0.159 -1612876800,20.409,0.157 -1612877400,20.6,0.159 -1612878000,20.805,0.157 -1612878600,20.813,0.155 -1612879200,20.992,0.157 -1612879800,21.055,0.163 -1612880400,21.26,0.168 -1612881000,21.556,0.17 -1612881600,21.798,0.168 -1612882200,21.934,0.174 -1612882800,22.135,0.171 -1612883400,22.14,0.177 -1612884000,22.163,0.175 -1612884600,22.321,0.173 -1612885200,22.413,0.178 -1612885800,22.474,0.176 -1612886400,22.764,0.174 -1612887000,22.863,0.175 -1612887600,23.083,0.177 -1612888200,23.277,0.182 -1612888800,23.538,0.18 -1612889400,23.667,0.185 -1612890000,23.723,0.183 -1612890600,23.77,0.18 -1612891200,24.013,0.182 -1612891800,24.108,0.183 -1612892400,24.302,0.188 -1612893000,24.472,0.186 -1612893600,24.642,0.191 -1612894200,24.866,0.189 -1612894800,24.914,0.194 -1612895400,25.032,0.199 -1612896000,25.067,0.196 -1612896600,25.071,0.201 -1612897200,25.288,0.199 -1612897800,25.437,0.204 -1612898400,25.639,0.201 -1612899000,25.784,0.198 -1612899600,25.862,0.2 -1612900200,25.915,0.197 -1612900800,26.108,0.198 -1612901400,26.38,0.199 -1612902000,26.511,0.197 -1612902600,26.761,0.194 -1612903200,26.896,0.191 -1612903800,27.004,0.189 -1612904400,27.075,0.186 -1612905000,27.194,0.183 -1612905600,27.42,0.184 -1612906200,27.513,0.181 -1612906800,27.764,0.179 -1612907400,27.791,0.176 -1612908000,27.887,0.173 -1612908600,28.167,0.17 -1612909200,28.181,0.167 -1612909800,28.32,0.172 -1612910400,28.364,0.176 -1612911000,28.4,0.173 -1612911600,28.692,0.17 -1612912200,28.774,0.168 -1612912800,28.785,0.165 -1612913400,28.97,0.162 -1612914000,29.206,0.159 -1612914600,29.243,0.156 -1612915200,29.457,0.157 -1612915800,29.307,0.154 -1612916400,29.262,0.158 -1612917000,28.964,0.155 -1612917600,28.777,0.152 -1612918200,28.744,0.156 -1612918800,28.601,0.153 -1612919400,28.463,0.15 -1612920000,28.167,0.148 -1612920600,27.985,0.152 -1612921200,27.706,0.149 -1612921800,27.696,0.154 -1612922400,27.654,0.151 -1612923000,27.562,0.152 -1612923600,27.554,0.149 -1612924200,27.502,0.153 -1612924800,27.445,0.154 -1612925400,27.25,0.152 -1612926000,26.983,0.156 -1612926600,26.702,0.161 -1612927200,26.518,0.158 -1612927800,26.384,0.155 -1612928400,26.103,0.156 -1612929000,25.992,0.154 -1612929600,25.738,0.155 -1612930200,25.636,0.16 -1612930800,25.337,0.157 -1612931400,25.278,0.155 -1612932000,25.256,0.152 -1612932600,25.074,0.15 -1612933200,24.804,0.155 -1612933800,24.559,0.156 -1612934400,24.439,0.161 -1612935000,24.422,0.159 -1612935600,24.193,0.164 -1612936200,24.159,0.161 -1612936800,24.021,0.166 -1612937400,23.901,0.172 -1612938000,23.677,0.169 -1612938600,23.564,0.171 -1612939200,23.533,0.176 -1612939800,23.508,0.174 -1612940400,23.306,0.171 -1612941000,23.175,0.173 -1612941600,23.002,0.17 -1612942200,22.832,0.168 -1612942800,22.725,0.17 -1612943400,22.539,0.167 -1612944000,22.25,0.173 -1612944600,21.983,0.171 -1612945200,21.939,0.172 -1612945800,21.687,0.17 -1612946400,21.632,0.168 -1612947000,21.59,0.174 -1612947600,21.47,0.172 -1612948200,21.467,0.177 -1612948800,21.458,0.175 -1612949400,21.186,0.173 -1612950000,21.169,0.171 -1612950600,21.032,0.169 -1612951200,20.885,0.167 -1612951800,20.715,0.165 -1612952400,20.516,0.166 -1612953000,20.51,0.164 -1612953600,20.322,0.162 -1612954200,20.209,0.16 -1612954800,20.05,0.158 -1612955400,19.891,0.156 -1612956000,19.668,0.154 -1612956600,19.465,0.152 -1612957200,19.321,0.15 -1612957800,19.062,0.157 -1612958400,19.021,0.163 -1612959000,18.977,0.161 -1612959600,19.274,0.159 -1612960200,19.288,0.161 -1612960800,19.507,0.159 -1612961400,19.546,0.157 -1612962000,19.723,0.159 -1612962600,19.89,0.157 -1612963200,19.975,0.155 -1612963800,20.187,0.153 -1612964400,20.303,0.155 -1612965000,20.361,0.153 -1612965600,20.561,0.151 -1612966200,20.784,0.149 -1612966800,21.077,0.155 -1612967400,21.285,0.153 -1612968000,21.405,0.151 -1612968600,21.472,0.149 -1612969200,21.481,0.154 -1612969800,21.69,0.152 -1612970400,21.745,0.15 -1612971000,21.954,0.156 -1612971600,22.056,0.153 -1612972200,22.143,0.159 -1612972800,22.243,0.161 -1612973400,22.426,0.166 -1612974000,22.46,0.164 -1612974600,22.544,0.162 -1612975200,22.58,0.16 -1612975800,22.857,0.165 -1612976400,22.861,0.163 -1612977000,22.957,0.16 -1612977600,23.0,0.162 -1612978200,23.062,0.16 -1612978800,23.245,0.157 -1612979400,23.353,0.155 -1612980000,23.401,0.157 -1612980600,23.429,0.158 -1612981200,23.617,0.156 -1612981800,23.733,0.153 -1612982400,23.78,0.151 -1612983000,23.962,0.149 -1612983600,24.198,0.154 -1612984200,24.209,0.151 -1612984800,24.302,0.153 -1612985400,24.434,0.15 -1612986000,24.58,0.148 -1612986600,24.805,0.153 -1612987200,25.021,0.15 -1612987800,25.201,0.148 -1612988400,25.344,0.153 -1612989000,25.512,0.15 -1612989600,25.745,0.152 -1612990200,25.775,0.153 -1612990800,25.798,0.15 -1612991400,25.849,0.151 -1612992000,26.01,0.149 -1612992600,26.147,0.153 -1612993200,26.354,0.151 -1612993800,26.402,0.152 -1612994400,26.501,0.157 -1612995000,26.78,0.158 -1612995600,27.07,0.155 -1612996200,27.291,0.152 -1612996800,27.538,0.15 -1612997400,27.572,0.154 -1612998000,27.795,0.151 -1612998600,27.967,0.148 -1612999200,28.146,0.153 -1612999800,28.386,0.157 -1613000400,28.64,0.154 -1613001000,28.901,0.159 -1613001600,29.184,0.159 -1613002200,28.99,0.156 -1613002800,28.716,0.157 -1613003400,28.489,0.161 -1613004000,28.469,0.162 -1613004600,28.264,0.163 -1613005200,28.245,0.164 -1613005800,28.022,0.161 -1613006400,27.916,0.165 -1613007000,27.814,0.162 -1613007600,27.81,0.16 -1613008200,27.708,0.157 -1613008800,27.441,0.161 -1613009400,27.23,0.158 -1613010000,26.995,0.163 -1613010600,26.819,0.16 -1613011200,26.789,0.158 -1613011800,26.737,0.155 -1613012400,26.505,0.152 -1613013000,26.449,0.153 -1613013600,26.292,0.151 -1613014200,26.062,0.152 -1613014800,26.027,0.153 -1613015400,25.749,0.15 -1613016000,25.474,0.148 -1613016600,25.28,0.149 -1613017200,25.063,0.15 -1613017800,25.059,0.155 -1613018400,25.025,0.153 -1613019000,24.765,0.15 -1613019600,24.688,0.155 -1613020200,24.598,0.156 -1613020800,24.405,0.161 -1613021400,24.341,0.159 -1613022000,24.102,0.157 -1613022600,24.019,0.154 -1613023200,23.752,0.152 -1613023800,23.711,0.149 -1613024400,23.658,0.155 -1613025000,23.392,0.152 -1613025600,23.282,0.15 -1613026200,23.258,0.155 -1613026800,23.151,0.153 -1613027400,22.901,0.151 -1613028000,22.65,0.148 -1613028600,22.593,0.154 -1613029200,22.406,0.159 -1613029800,22.265,0.161 -1613030400,22.025,0.163 -1613031000,21.968,0.168 -1613031600,21.754,0.166 -1613032200,21.5,0.164 -1613032800,21.293,0.162 -1613033400,21.157,0.16 -1613034000,21.14,0.157 -1613034600,21.021,0.155 -1613035200,20.722,0.153 -1613035800,20.509,0.151 -1613036400,20.4,0.149 -1613037000,20.105,0.155 -1613037600,19.957,0.153 -1613038200,19.732,0.155 -1613038800,19.646,0.153 -1613039400,19.634,0.155 -1613040000,19.533,0.153 -1613040600,19.421,0.151 -1613041200,19.139,0.149 -1613041800,18.93,0.151 -1613042400,18.898,0.149 -1613043000,18.856,0.156 -1613043600,18.855,0.154 -1613044200,18.631,0.156 -1613044800,18.55,0.158 -1613045400,18.326,0.156 -1613046000,18.439,0.159 -1613046600,18.464,0.157 -1613047200,18.685,0.163 -1613047800,18.984,0.165 -1613048400,19.08,0.171 -1613049000,19.343,0.17 -1613049600,19.508,0.168 -1613050200,19.532,0.166 -1613050800,19.6,0.164 -1613051400,19.62,0.162 -1613052000,19.822,0.16 -1613052600,20.01,0.158 -1613053200,20.076,0.156 -1613053800,20.333,0.154 -1613054400,20.515,0.152 -1613055000,20.532,0.15 -1613055600,20.641,0.156 -1613056200,20.865,0.154 -1613056800,20.913,0.151 -1613057400,21.06,0.153 -1613058000,21.096,0.151 -1613058600,21.28,0.149 -1613059200,21.293,0.155 -1613059800,21.509,0.161 -1613060400,21.77,0.166 -1613061000,22.02,0.168 -1613061600,22.203,0.166 -1613062200,22.293,0.167 -1613062800,22.56,0.173 -1613063400,22.689,0.171 -1613064000,22.857,0.172 -1613064600,23.111,0.17 -1613065200,23.177,0.168 -1613065800,23.446,0.165 -1613066400,23.634,0.171 -1613067000,23.815,0.168 -1613067600,23.97,0.166 -1613068200,24.145,0.164 -1613068800,24.312,0.165 -1613069400,24.446,0.163 -1613070000,24.588,0.16 -1613070600,24.838,0.158 -1613071200,24.932,0.159 -1613071800,25.021,0.164 -1613072400,25.022,0.161 -1613073000,25.045,0.163 -1613073600,25.315,0.16 -1613074200,25.339,0.161 -1613074800,25.379,0.159 -1613075400,25.554,0.164 -1613076000,25.645,0.161 -1613076600,25.791,0.159 -1613077200,25.993,0.16 -1613077800,26.27,0.157 -1613078400,26.499,0.158 -1613079000,26.793,0.156 -1613079600,27.01,0.153 -1613080200,27.225,0.154 -1613080800,27.481,0.158 -1613081400,27.503,0.163 -1613082000,27.72,0.16 -1613082600,27.979,0.165 -1613083200,28.277,0.162 -1613083800,28.546,0.159 -1613084400,28.576,0.163 -1613085000,28.654,0.168 -1613085600,28.925,0.168 -1613086200,29.167,0.172 -1613086800,29.352,0.17 -1613087400,29.51,0.167 -1613088000,29.619,0.164 -1613088600,29.408,0.161 -1613089200,29.275,0.161 -1613089800,28.994,0.158 -1613090400,28.852,0.155 -1613091000,28.638,0.153 -1613091600,28.441,0.15 -1613092200,28.232,0.154 -1613092800,28.116,0.151 -1613093400,28.101,0.152 -1613094000,27.925,0.149 -1613094600,27.741,0.15 -1613095200,27.653,0.154 -1613095800,27.439,0.152 -1613096400,27.191,0.153 -1613097000,26.933,0.154 -1613097600,26.853,0.151 -1613098200,26.788,0.155 -1613098800,26.64,0.153 -1613099400,26.39,0.154 -1613100000,26.156,0.151 -1613100600,26.034,0.149 -1613101200,25.916,0.153 -1613101800,25.766,0.151 -1613102400,25.639,0.148 -1613103000,25.351,0.153 -1613103600,25.311,0.154 -1613104200,25.21,0.152 -1613104800,24.944,0.153 -1613105400,24.779,0.154 -1613106000,24.733,0.152 -1613106600,24.697,0.149 -1613107200,24.432,0.151 -1613107800,24.413,0.148 -1613108400,24.196,0.153 -1613109000,24.176,0.151 -1613109600,24.074,0.152 -1613110200,23.809,0.15 -1613110800,23.572,0.155 -1613111400,23.459,0.16 -1613112000,23.275,0.166 -1613112600,23.089,0.163 -1613113200,22.958,0.169 -1613113800,22.706,0.166 -1613114400,22.429,0.172 -1613115000,22.186,0.17 -1613115600,22.049,0.175 -1613116200,21.86,0.177 -1613116800,21.607,0.179 -1613117400,21.506,0.176 -1613118000,21.355,0.174 -1613118600,21.073,0.18 -1613119200,21.06,0.178 -1613119800,21.051,0.18 -1613120400,20.909,0.178 -1613121000,20.819,0.183 -1613121600,20.744,0.181 -1613122200,20.522,0.179 -1613122800,20.367,0.181 -1613123400,20.362,0.183 -1613124000,20.241,0.181 -1613124600,19.984,0.183 -1613125200,19.789,0.181 -1613125800,19.702,0.183 -1613126400,19.572,0.181 -1613127000,19.474,0.179 -1613127600,19.191,0.185 -1613128200,18.892,0.191 -1613128800,18.746,0.189 -1613129400,18.622,0.188 -1613130000,18.585,0.186 -1613130600,18.501,0.188 -1613131200,18.332,0.186 -1613131800,18.279,0.184 -1613132400,18.512,0.191 -1613133000,18.583,0.197 -1613133600,18.7,0.195 -1613134200,18.795,0.193 -1613134800,18.796,0.191 -1613135400,18.922,0.189 -1613136000,19.13,0.196 -1613136600,19.427,0.194 -1613137200,19.657,0.196 -1613137800,19.792,0.194 -1613138400,19.967,0.192 -1613139000,19.998,0.19 -1613139600,20.102,0.188 -1613140200,20.215,0.194 -1613140800,20.223,0.192 -1613141400,20.309,0.19 -1613142000,20.387,0.188 -1613142600,20.652,0.19 -1613143200,20.748,0.188 -1613143800,20.888,0.186 -1613144400,21.045,0.184 -1613145000,21.306,0.181 -1613145600,21.558,0.179 -1613146200,21.666,0.177 -1613146800,21.928,0.175 -1613147400,21.971,0.181 -1613148000,22.045,0.178 -1613148600,22.262,0.184 -1613149200,22.487,0.182 -1613149800,22.605,0.179 -1613150400,22.728,0.181 -1613151000,22.922,0.183 -1613151600,23.023,0.188 -1613152200,23.25,0.186 -1613152800,23.272,0.187 -1613153400,23.466,0.193 -1613154000,23.548,0.19 -1613154600,23.814,0.188 -1613155200,23.904,0.186 -1613155800,24.11,0.191 -1613156400,24.2,0.188 -1613157000,24.225,0.186 -1613157600,24.5,0.184 -1613158200,24.606,0.185 -1613158800,24.798,0.182 -1613159400,24.942,0.187 -1613160000,25.079,0.189 -1613160600,25.304,0.186 -1613161200,25.512,0.187 -1613161800,25.536,0.185 -1613162400,25.776,0.182 -1613163000,26.043,0.183 -1613163600,26.161,0.181 -1613164200,26.242,0.178 -1613164800,26.448,0.176 -1613165400,26.556,0.177 -1613166000,26.623,0.174 -1613166600,26.898,0.171 -1613167200,26.955,0.169 -1613167800,27.204,0.166 -1613168400,27.313,0.17 -1613169000,27.493,0.175 -1613169600,27.635,0.176 -1613170200,27.663,0.177 -1613170800,27.826,0.181 -1613171400,27.907,0.178 -1613172000,28.18,0.176 -1613172600,28.281,0.176 -1613173200,28.47,0.174 -1613173800,28.538,0.171 -1613174400,28.689,0.168 -1613175000,28.516,0.169 -1613175600,28.412,0.166 -1613176200,28.206,0.17 -1613176800,27.913,0.174 -1613177400,27.629,0.179 -1613178000,27.617,0.183 -1613178600,27.499,0.181 -1613179200,27.299,0.181 -1613179800,27.019,0.179 -1613180400,26.894,0.176 -1613181000,26.687,0.173 -1613181600,26.417,0.171 -1613182200,26.398,0.175 -1613182800,26.357,0.173 -1613183400,26.101,0.177 -1613184000,25.922,0.175 -1613184600,25.862,0.172 -1613185200,25.592,0.173 -1613185800,25.462,0.171 -1613186400,25.238,0.168 -1613187000,25.039,0.166 -1613187600,24.901,0.163 -1613188200,24.814,0.161 -1613188800,24.593,0.158 -1613189400,24.505,0.156 -1613190000,24.446,0.153 -1613190600,24.382,0.151 -1613191200,24.167,0.156 -1613191800,24.01,0.161 -1613192400,23.832,0.159 -1613193000,23.608,0.156 -1613193600,23.313,0.154 -1613194200,23.256,0.152 -1613194800,23.159,0.149 -1613195400,22.886,0.155 -1613196000,22.809,0.16 -1613196600,22.617,0.162 -1613197200,22.347,0.159 -1613197800,22.155,0.157 -1613198400,22.014,0.163 -1613199000,21.72,0.161 -1613199600,21.487,0.166 -1613200200,21.257,0.168 -1613200800,21.003,0.166 -1613201400,20.989,0.164 -1613202000,20.826,0.162 -1613202600,20.749,0.16 -1613203200,20.719,0.158 -1613203800,20.516,0.163 -1613204400,20.482,0.161 -1613205000,20.443,0.159 -1613205600,20.31,0.157 -1613206200,20.061,0.155 -1613206800,19.91,0.153 -1613207400,19.903,0.151 -1613208000,19.642,0.149 -1613208600,19.631,0.155 -1613209200,19.575,0.153 -1613209800,19.334,0.151 -1613210400,19.218,0.153 -1613211000,19.166,0.16 -1613211600,19.111,0.158 -1613212200,18.968,0.16 -1613212800,18.919,0.166 -1613213400,18.847,0.164 -1613214000,18.656,0.162 -1613214600,18.41,0.165 -1613215200,18.409,0.163 -1613215800,18.407,0.165 -1613216400,18.146,0.163 -1613217000,18.036,0.161 -1613217600,17.871,0.168 -1613218200,17.856,0.166 -1613218800,17.923,0.164 -1613219400,18.187,0.162 -1613220000,18.447,0.16 -1613220600,18.662,0.159 -1613221200,18.708,0.157 -1613221800,18.789,0.155 -1613222400,18.93,0.153 -1613223000,18.981,0.151 -1613223600,18.984,0.149 -1613224200,19.152,0.155 -1613224800,19.217,0.162 -1613225400,19.219,0.16 -1613226000,19.477,0.158 -1613226600,19.481,0.156 -1613227200,19.563,0.162 -1613227800,19.7,0.16 -1613228400,19.728,0.166 -1613229000,19.912,0.164 -1613229600,20.195,0.166 -1613230200,20.317,0.164 -1613230800,20.378,0.162 -1613231400,20.541,0.16 -1613232000,20.678,0.158 -1613232600,20.681,0.164 -1613233200,20.687,0.166 -1613233800,20.689,0.164 -1613234400,20.967,0.162 -1613235000,21.16,0.159 -1613235600,21.258,0.161 -1613236200,21.345,0.163 -1613236800,21.432,0.165 -1613237400,21.712,0.171 -1613238000,21.944,0.168 -1613238600,22.15,0.166 -1613239200,22.396,0.172 -1613239800,22.587,0.17 -1613240400,22.682,0.167 -1613241000,22.793,0.165 -1613241600,22.99,0.163 -1613242200,23.285,0.164 -1613242800,23.461,0.162 -1613243400,23.673,0.167 -1613244000,23.915,0.165 -1613244600,23.943,0.162 -1613245200,24.17,0.16 -1613245800,24.295,0.161 -1613246400,24.447,0.159 -1613247000,24.484,0.157 -1613247600,24.599,0.154 -1613248200,24.79,0.152 -1613248800,25.053,0.149 -1613249400,25.339,0.154 -1613250000,25.634,0.155 -1613250600,25.849,0.153 -1613251200,25.971,0.158 -1613251800,26.219,0.162 -1613252400,26.348,0.164 -1613253000,26.628,0.168 -1613253600,26.794,0.173 -1613254200,26.922,0.178 -1613254800,27.099,0.179 -1613255400,27.338,0.183 -1613256000,27.592,0.184 -1613256600,27.596,0.181 -1613257200,27.824,0.179 -1613257800,28.12,0.176 -1613258400,28.318,0.18 -1613259000,28.435,0.177 -1613259600,28.634,0.174 -1613260200,28.641,0.172 -1613260800,28.651,0.169 -1613261400,28.534,0.166 -1613262000,28.521,0.167 -1613262600,28.352,0.164 -1613263200,28.151,0.168 -1613263800,27.905,0.165 -1613264400,27.87,0.166 -1613265000,27.754,0.163 -1613265600,27.605,0.16 -1613266200,27.306,0.161 -1613266800,27.105,0.162 -1613267400,26.845,0.16 -1613268000,26.598,0.164 -1613268600,26.515,0.161 -1613269200,26.36,0.159 -1613269800,26.233,0.164 -1613270400,26.226,0.161 -1613271000,25.995,0.158 -1613271600,25.907,0.156 -1613272200,25.697,0.153 -1613272800,25.472,0.154 -1613273400,25.239,0.152 -1613274000,24.983,0.153 -1613274600,24.916,0.154 -1613275200,24.644,0.155 -1613275800,24.403,0.157 -1613276400,24.215,0.154 -1613277000,24.049,0.152 -1613277600,23.805,0.15 -1613278200,23.664,0.155 -1613278800,23.485,0.156 -1613279400,23.256,0.158 -1613280000,22.967,0.163 -1613280600,22.739,0.161 -1613281200,22.613,0.162 -1613281800,22.56,0.16 -1613282400,22.32,0.158 -1613283000,22.266,0.156 -1613283600,21.994,0.153 -1613284200,21.783,0.159 -1613284800,21.76,0.157 -1613285400,21.682,0.155 -1613286000,21.491,0.152 -1613286600,21.45,0.15 -1613287200,21.357,0.148 -1613287800,21.162,0.154 -1613288400,20.893,0.152 -1613289000,20.713,0.15 -1613289600,20.453,0.155 -1613290200,20.378,0.153 -1613290800,20.275,0.155 -1613291400,20.236,0.157 -1613292000,20.142,0.163 -1613292600,19.861,0.165 -1613293200,19.757,0.171 -1613293800,19.521,0.177 -1613294400,19.435,0.175 -1613295000,19.301,0.173 -1613295600,19.258,0.172 -1613296200,18.975,0.178 -1613296800,18.842,0.176 -1613297400,18.817,0.178 -1613298000,18.74,0.176 -1613298600,18.5,0.174 -1613299200,18.489,0.181 -1613299800,18.419,0.179 -1613300400,18.406,0.177 -1613301000,18.183,0.183 -1613301600,18.141,0.189 -1613302200,17.876,0.188 -1613302800,17.722,0.186 -1613303400,17.479,0.184 -1613304000,17.268,0.182 -1613304600,16.995,0.189 -1613305200,17.233,0.187 -1613305800,17.417,0.185 -1613306400,17.68,0.188 -1613307000,17.864,0.19 -1613307600,17.988,0.188 -1613308200,18.054,0.187 -1613308800,18.171,0.185 -1613309400,18.443,0.183 -1613310000,18.521,0.181 -1613310600,18.692,0.187 -1613311200,18.701,0.194 -1613311800,18.715,0.192 -1613312400,18.778,0.19 -1613313000,18.791,0.188 -1613313600,18.806,0.19 -1613314200,19.103,0.188 -1613314800,19.317,0.187 -1613315400,19.508,0.189 -1613316000,19.547,0.191 -1613316600,19.791,0.197 -1613317200,19.883,0.195 -1613317800,20.053,0.193 -1613318400,20.293,0.195 -1613319000,20.403,0.197 -1613319600,20.554,0.199 -1613320200,20.613,0.197 -1613320800,20.63,0.199 -1613321400,20.755,0.2 -1613322000,21.004,0.202 -1613322600,21.1,0.2 -1613323200,21.141,0.206 -1613323800,21.188,0.212 -1613324400,21.217,0.21 -1613325000,21.379,0.211 -1613325600,21.626,0.209 -1613326200,21.675,0.207 -1613326800,21.961,0.205 -1613327400,22.072,0.203 -1613328000,22.169,0.208 -1613328600,22.187,0.214 -1613329200,22.415,0.212 -1613329800,22.504,0.213 -1613330400,22.509,0.219 -1613331000,22.652,0.217 -1613331600,22.926,0.214 -1613332200,23.132,0.216 -1613332800,23.247,0.221 -1613333400,23.541,0.219 -1613334000,23.621,0.217 -1613334600,23.712,0.214 -1613335200,24.011,0.216 -1613335800,24.182,0.221 -1613336400,24.218,0.219 -1613337000,24.488,0.216 -1613337600,24.737,0.214 -1613338200,24.916,0.211 -1613338800,24.968,0.216 -1613339400,25.17,0.214 -1613340000,25.361,0.215 -1613340600,25.645,0.212 -1613341200,25.717,0.217 -1613341800,26.016,0.218 -1613342400,26.122,0.219 -1613343000,26.127,0.217 -1613343600,26.402,0.214 -1613344200,26.438,0.215 -1613344800,26.525,0.213 -1613345400,26.783,0.21 -1613346000,26.933,0.207 -1613346600,26.979,0.208 -1613347200,27.106,0.209 -1613347800,26.935,0.207 -1613348400,26.678,0.211 -1613349000,26.468,0.208 -1613349600,26.241,0.206 -1613350200,26.029,0.203 -1613350800,26.006,0.208 -1613351400,25.847,0.213 -1613352000,25.754,0.214 -1613352600,25.704,0.211 -1613353200,25.555,0.209 -1613353800,25.545,0.206 -1613354400,25.308,0.204 -1613355000,25.149,0.201 -1613355600,24.952,0.199 -1613356200,24.831,0.2 -1613356800,24.792,0.201 -1613357400,24.727,0.199 -1613358000,24.614,0.2 -1613358600,24.522,0.197 -1613359200,24.489,0.203 -1613359800,24.34,0.2 -1613360400,24.156,0.198 -1613361000,23.976,0.195 -1613361600,23.898,0.193 -1613362200,23.757,0.194 -1613362800,23.673,0.196 -1613363400,23.512,0.201 -1613364000,23.446,0.199 -1613364600,23.343,0.2 -1613365200,23.17,0.198 -1613365800,23.083,0.195 -1613366400,22.945,0.193 -1613367000,22.674,0.195 -1613367600,22.557,0.192 -1613368200,22.495,0.19 -1613368800,22.459,0.196 -1613369400,22.305,0.201 -1613370000,22.104,0.207 -1613370600,21.975,0.212 -1613371200,21.952,0.21 -1613371800,21.891,0.208 -1613372400,21.763,0.206 -1613373000,21.6,0.211 -1613373600,21.363,0.213 -1613374200,21.311,0.211 -1613374800,21.285,0.209 -1613375400,21.033,0.207 -1613376000,21.032,0.205 -1613376600,20.939,0.203 -1613377200,20.674,0.2 -1613377800,20.515,0.198 -1613378400,20.5,0.204 -1613379000,20.303,0.21 -1613379600,20.193,0.212 -1613380200,20.161,0.218 -1613380800,19.928,0.216 -1613381400,19.683,0.214 -1613382000,19.545,0.212 -1613382600,19.405,0.214 -1613383200,19.276,0.212 -1613383800,19.124,0.21 -1613384400,18.9,0.208 -1613385000,18.775,0.207 -1613385600,18.585,0.205 -1613386200,18.52,0.203 -1613386800,18.399,0.205 -1613387400,18.192,0.211 -1613388000,18.053,0.21 -1613388600,17.928,0.216 -1613389200,17.824,0.218 -1613389800,17.617,0.216 -1613390400,17.44,0.215 -1613391000,17.323,0.217 -1613391600,17.38,0.215 -1613392200,17.57,0.214 -1613392800,17.615,0.216 -1613393400,17.899,0.218 -1613394000,17.942,0.217 -1613394600,18.094,0.215 -1613395200,18.351,0.221 -1613395800,18.46,0.227 -1613396400,18.732,0.23 -1613397000,19.009,0.232 -1613397600,19.234,0.234 -1613398200,19.27,0.232 -1613398800,19.285,0.23 -1613399400,19.386,0.228 -1613400000,19.531,0.226 -1613400600,19.804,0.224 -1613401200,19.956,0.222 -1613401800,20.086,0.224 -1613402400,20.332,0.222 -1613403000,20.623,0.22 -1613403600,20.812,0.222 -1613404200,20.933,0.22 -1613404800,21.214,0.218 -1613405400,21.409,0.216 -1613406000,21.456,0.214 -1613406600,21.545,0.216 -1613407200,21.615,0.221 -1613407800,21.769,0.227 -1613408400,22.023,0.233 -1613409000,22.091,0.238 -1613409600,22.372,0.244 -1613410200,22.421,0.249 -1613410800,22.551,0.255 -1613411400,22.832,0.253 -1613412000,22.93,0.258 -1613412600,23.027,0.256 -1613413200,23.061,0.261 -1613413800,23.138,0.266 -1613414400,23.208,0.268 -1613415000,23.327,0.273 -1613415600,23.445,0.271 -1613416200,23.483,0.269 -1613416800,23.642,0.274 -1613417400,23.666,0.279 -1613418000,23.815,0.281 -1613418600,24.049,0.282 -1613419200,24.229,0.28 -1613419800,24.36,0.277 -1613420400,24.617,0.275 -1613421000,24.7,0.272 -1613421600,24.947,0.277 -1613422200,25.164,0.279 -1613422800,25.191,0.276 -1613423400,25.28,0.274 -1613424000,25.394,0.275 -1613424600,25.507,0.272 -1613425200,25.637,0.274 -1613425800,25.833,0.271 -1613426400,25.912,0.272 -1613427000,26.008,0.27 -1613427600,26.28,0.274 -1613428200,26.308,0.279 -1613428800,26.392,0.276 -1613429400,26.678,0.274 -1613430000,26.835,0.271 -1613430600,27.129,0.268 -1613431200,27.263,0.266 -1613431800,27.527,0.263 -1613432400,27.716,0.26 -1613433000,27.836,0.257 -1613433600,28.108,0.255 -1613434200,28.07,0.259 -1613434800,27.963,0.256 -1613435400,27.67,0.253 -1613436000,27.642,0.251 -1613436600,27.547,0.255 -1613437200,27.277,0.252 -1613437800,27.1,0.25 -1613438400,26.961,0.247 -1613439000,26.925,0.244 -1613439600,26.662,0.242 -1613440200,26.573,0.246 -1613440800,26.502,0.244 -1613441400,26.315,0.241 -1613442000,26.045,0.246 -1613442600,25.969,0.243 -1613443200,25.954,0.24 -1613443800,25.771,0.242 -1613444400,25.736,0.243 -1613445000,25.664,0.244 -1613445600,25.421,0.241 -1613446200,25.136,0.239 -1613446800,24.967,0.236 -1613447400,24.93,0.234 -1613448000,24.835,0.235 -1613448600,24.821,0.233 -1613449200,24.737,0.23 -1613449800,24.487,0.235 -1613450400,24.454,0.233 -1613451000,24.33,0.23 -1613451600,24.188,0.235 -1613452200,24.039,0.24 -1613452800,23.745,0.238 -1613453400,23.485,0.236 -1613454000,23.391,0.233 -1613454600,23.292,0.239 -1613455200,23.246,0.236 -1613455800,23.242,0.234 -1613456400,23.179,0.236 -1613457000,22.909,0.233 -1613457600,22.873,0.231 -1613458200,22.619,0.229 -1613458800,22.415,0.226 -1613459400,22.323,0.232 -1613460000,22.199,0.234 -1613460600,22.141,0.231 -1613461200,21.927,0.229 -1613461800,21.759,0.231 -1613462400,21.59,0.233 -1613463000,21.453,0.23 -1613463600,21.352,0.228 -1613464200,21.173,0.23 -1613464800,21.166,0.228 -1613465400,20.992,0.23 -1613466000,20.817,0.228 -1613466600,20.812,0.226 -1613467200,20.631,0.224 -1613467800,20.483,0.221 -1613468400,20.262,0.227 -1613469000,20.095,0.225 -1613469600,20.072,0.223 -1613470200,19.863,0.225 -1613470800,19.623,0.223 -1613471400,19.497,0.221 -1613472000,19.361,0.223 -1613472600,19.338,0.226 -1613473200,19.264,0.224 -1613473800,19.11,0.222 -1613474400,18.857,0.22 -1613475000,18.598,0.218 -1613475600,18.349,0.216 -1613476200,18.081,0.222 -1613476800,17.927,0.221 -1613477400,17.82,0.219 -1613478000,17.985,0.221 -1613478600,18.272,0.219 -1613479200,18.381,0.226 -1613479800,18.62,0.224 -1613480400,18.623,0.23 -1613481000,18.904,0.232 -1613481600,19.011,0.23 -1613482200,19.045,0.237 -1613482800,19.162,0.235 -1613483400,19.254,0.233 -1613484000,19.306,0.235 -1613484600,19.322,0.237 -1613485200,19.428,0.243 -1613485800,19.509,0.241 -1613486400,19.723,0.247 -1613487000,19.969,0.245 -1613487600,20.2,0.251 -1613488200,20.359,0.249 -1613488800,20.599,0.247 -1613489400,20.832,0.245 -1613490000,21.067,0.243 -1613490600,21.247,0.245 -1613491200,21.311,0.243 -1613491800,21.557,0.241 -1613492400,21.576,0.239 -1613493000,21.595,0.24 -1613493600,21.686,0.238 -1613494200,21.912,0.24 -1613494800,22.065,0.245 -1613495400,22.204,0.251 -1613496000,22.47,0.249 -1613496600,22.74,0.254 -1613497200,22.955,0.252 -1613497800,23.091,0.25 -1613498400,23.15,0.251 -1613499000,23.316,0.253 -1613499600,23.594,0.258 -1613500200,23.754,0.256 -1613500800,24.052,0.257 -1613501400,24.153,0.255 -1613502000,24.296,0.252 -1613502600,24.371,0.25 -1613503200,24.574,0.251 -1613503800,24.652,0.249 -1613504400,24.683,0.25 -1613505000,24.808,0.248 -1613505600,24.808,0.253 -1613506200,25.069,0.25 -1613506800,25.297,0.248 -1613507400,25.41,0.253 -1613508000,25.638,0.25 -1613508600,25.658,0.255 -1613509200,25.838,0.256 -1613509800,26.115,0.257 -1613510400,26.252,0.258 -1613511000,26.325,0.256 -1613511600,26.604,0.253 -1613512200,26.786,0.25 -1613512800,26.95,0.248 -1613513400,27.002,0.252 -1613514000,27.016,0.257 -1613514600,27.046,0.258 -1613515200,27.336,0.255 -1613515800,27.449,0.26 -1613516400,27.486,0.257 -1613517000,27.652,0.254 -1613517600,27.875,0.252 -1613518200,27.949,0.249 -1613518800,28.083,0.246 -1613519400,28.319,0.247 -1613520000,28.574,0.244 -1613520600,28.407,0.248 -1613521200,28.391,0.245 -1613521800,28.096,0.243 -1613522400,28.074,0.24 -1613523000,27.874,0.241 -1613523600,27.803,0.238 -1613524200,27.56,0.239 -1613524800,27.439,0.236 -1613525400,27.284,0.233 -1613526000,27.169,0.238 -1613526600,26.931,0.235 -1613527200,26.741,0.236 -1613527800,26.562,0.24 -1613528400,26.549,0.238 -1613529000,26.469,0.235 -1613529600,26.3,0.233 -1613530200,26.092,0.23 -1613530800,25.888,0.227 -1613531400,25.674,0.232 -1613532000,25.577,0.237 -1613532600,25.559,0.242 -1613533200,25.282,0.239 -1613533800,25.187,0.237 -1613534400,25.147,0.238 -1613535000,25.017,0.235 -1613535600,24.871,0.233 -1613536200,24.571,0.23 -1613536800,24.354,0.236 -1613537400,24.279,0.233 -1613538000,24.172,0.235 -1613538600,24.159,0.236 -1613539200,24.112,0.233 -1613539800,23.852,0.235 -1613540400,23.6,0.236 -1613541000,23.541,0.238 -1613541600,23.451,0.235 -1613542200,23.273,0.237 -1613542800,23.114,0.235 -1613543400,22.854,0.24 -1613544000,22.591,0.245 -1613544600,22.526,0.243 -1613545200,22.488,0.241 -1613545800,22.343,0.239 -1613546400,22.139,0.236 -1613547000,21.957,0.234 -1613547600,21.848,0.232 -1613548200,21.649,0.234 -1613548800,21.413,0.239 -1613549400,21.236,0.241 -1613550000,21.124,0.239 -1613550600,21.082,0.237 -1613551200,20.784,0.243 -1613551800,20.727,0.249 -1613552400,20.684,0.254 -1613553000,20.629,0.26 -1613553600,20.571,0.266 -1613554200,20.283,0.264 -1613554800,20.261,0.262 -1613555400,20.107,0.264 -1613556000,19.952,0.262 -1613556600,19.747,0.264 -1613557200,19.555,0.262 -1613557800,19.48,0.26 -1613558400,19.408,0.258 -1613559000,19.373,0.256 -1613559600,19.24,0.254 -1613560200,19.234,0.26 -1613560800,19.201,0.262 -1613561400,18.944,0.261 -1613562000,18.876,0.267 -1613562600,18.858,0.265 -1613563200,18.679,0.263 -1613563800,18.469,0.261 -1613564400,18.68,0.259 -1613565000,18.904,0.257 -1613565600,19.14,0.256 -1613566200,19.227,0.254 -1613566800,19.253,0.26 -1613567400,19.271,0.266 -1613568000,19.483,0.264 -1613568600,19.588,0.262 -1613569200,19.777,0.26 -1613569800,19.901,0.266 -1613570400,20.002,0.272 -1613571000,20.063,0.278 -1613571600,20.288,0.284 -1613572200,20.438,0.29 -1613572800,20.634,0.288 -1613573400,20.85,0.286 -1613574000,20.854,0.284 -1613574600,20.955,0.29 -1613575200,21.175,0.288 -1613575800,21.181,0.285 -1613576400,21.301,0.283 -1613577000,21.357,0.289 -1613577600,21.638,0.287 -1613578200,21.829,0.285 -1613578800,21.934,0.283 -1613579400,22.145,0.28 -1613580000,22.232,0.286 -1613580600,22.488,0.284 -1613581200,22.601,0.285 -1613581800,22.877,0.283 -1613582400,22.942,0.289 -1613583000,23.23,0.286 -1613583600,23.396,0.288 -1613584200,23.652,0.289 -1613584800,23.761,0.295 -1613585400,23.818,0.3 -1613586000,23.907,0.301 -1613586600,24.018,0.299 -1613587200,24.046,0.296 -1613587800,24.325,0.298 -1613588400,24.613,0.295 -1613589000,24.635,0.293 -1613589600,24.775,0.294 -1613590200,24.836,0.292 -1613590800,25.008,0.289 -1613591400,25.117,0.291 -1613592000,25.253,0.292 -1613592600,25.488,0.293 -1613593200,25.613,0.29 -1613593800,25.764,0.292 -1613594400,25.835,0.289 -1613595000,26.093,0.286 -1613595600,26.383,0.288 -1613596200,26.581,0.285 -1613596800,26.616,0.282 -1613597400,26.844,0.287 -1613598000,26.93,0.292 -1613598600,27.189,0.296 -1613599200,27.382,0.297 -1613599800,27.4,0.294 -1613600400,27.648,0.292 -1613601000,27.727,0.289 -1613601600,27.751,0.286 -1613602200,27.829,0.283 -1613602800,28.045,0.28 -1613603400,28.066,0.278 -1613604000,28.259,0.275 -1613604600,28.509,0.272 -1613605200,28.627,0.269 -1613605800,28.735,0.266 -1613606400,28.822,0.263 -1613607000,28.568,0.264 -1613607600,28.545,0.261 -1613608200,28.46,0.258 -1613608800,28.348,0.256 -1613609400,28.293,0.253 -1613610000,28.124,0.25 -1613610600,28.023,0.254 -1613611200,27.943,0.251 -1613611800,27.749,0.249 -1613612400,27.648,0.25 -1613613000,27.355,0.247 -1613613600,27.185,0.248 -1613614200,27.092,0.245 -1613614800,26.853,0.242 -1613615400,26.796,0.24 -1613616000,26.62,0.237 -1613616600,26.473,0.234 -1613617200,26.204,0.235 -1613617800,25.987,0.236 -1613618400,25.845,0.241 -1613619000,25.708,0.246 -1613619600,25.672,0.243 -1613620200,25.549,0.248 -1613620800,25.304,0.249 -1613621400,25.078,0.247 -1613622000,24.81,0.244 -1613622600,24.567,0.242 -1613623200,24.356,0.239 -1613623800,24.074,0.237 -1613624400,23.936,0.235 -1613625000,23.757,0.232 -1613625600,23.494,0.23 -1613626200,23.247,0.227 -1613626800,23.146,0.229 -1613627400,23.108,0.227 -1613628000,22.897,0.224 -1613628600,22.784,0.222 -1613629200,22.566,0.22 -1613629800,22.45,0.218 -1613630400,22.421,0.215 -1613631000,22.235,0.221 -1613631600,21.936,0.222 -1613632200,21.857,0.224 -1613632800,21.822,0.23 -1613633400,21.74,0.232 -1613634000,21.634,0.233 -1613634600,21.437,0.231 -1613635200,21.225,0.229 -1613635800,20.958,0.235 -1613636400,20.942,0.233 -1613637000,20.8,0.238 -1613637600,20.545,0.236 -1613638200,20.528,0.242 -1613638800,20.413,0.248 -1613639400,20.127,0.25 -1613640000,19.918,0.252 -1613640600,19.864,0.25 -1613641200,19.792,0.256 -1613641800,19.632,0.262 -1613642400,19.579,0.26 -1613643000,19.479,0.258 -1613643600,19.196,0.264 -1613644200,18.932,0.266 -1613644800,18.714,0.265 -1613645400,18.633,0.267 -1613646000,18.406,0.269 -1613646600,18.172,0.275 -1613647200,18.011,0.273 -1613647800,17.762,0.28 -1613648400,17.63,0.282 -1613649000,17.433,0.28 -1613649600,17.341,0.283 -1613650200,17.266,0.289 -1613650800,17.299,0.288 -1613651400,17.516,0.294 -1613652000,17.64,0.301 -1613652600,17.662,0.299 -1613653200,17.846,0.297 -1613653800,17.904,0.295 -1613654400,17.922,0.294 -1613655000,18.172,0.292 -1613655600,18.217,0.29 -1613656200,18.29,0.292 -1613656800,18.573,0.29 -1613657400,18.603,0.289 -1613658000,18.672,0.287 -1613658600,18.833,0.293 -1613659200,19.016,0.291 -1613659800,19.277,0.289 -1613660400,19.331,0.291 -1613661000,19.415,0.293 -1613661600,19.584,0.291 -1613662200,19.636,0.297 -1613662800,19.859,0.3 -1613663400,20.048,0.298 -1613664000,20.113,0.296 -1613664600,20.243,0.302 -1613665200,20.517,0.299 -1613665800,20.817,0.297 -1613666400,21.023,0.299 -1613667000,21.056,0.297 -1613667600,21.149,0.295 -1613668200,21.244,0.293 -1613668800,21.507,0.295 -1613669400,21.78,0.301 -1613670000,21.975,0.298 -1613670600,22.003,0.3 -1613671200,22.018,0.298 -1613671800,22.283,0.3 -1613672400,22.525,0.297 -1613673000,22.598,0.303 -1613673600,22.611,0.301 -1613674200,22.786,0.298 -1613674800,22.867,0.304 -1613675400,23.084,0.301 -1613676000,23.187,0.299 -1613676600,23.227,0.297 -1613677200,23.486,0.294 -1613677800,23.575,0.292 -1613678400,23.753,0.297 -1613679000,24.04,0.295 -1613679600,24.104,0.293 -1613680200,24.211,0.29 -1613680800,24.511,0.295 -1613681400,24.757,0.293 -1613682000,25.0,0.29 -1613682600,25.106,0.288 -1613683200,25.232,0.289 -1613683800,25.48,0.29 -1613684400,25.531,0.288 -1613685000,25.787,0.285 -1613685600,25.854,0.283 -1613686200,26.039,0.284 -1613686800,26.193,0.281 -1613687400,26.322,0.282 -1613688000,26.344,0.28 -1613688600,26.485,0.277 -1613689200,26.628,0.274 -1613689800,26.803,0.275 -1613690400,26.917,0.273 -1613691000,27.065,0.27 -1613691600,27.188,0.271 -1613692200,27.326,0.268 -1613692800,27.539,0.266 -1613693400,27.251,0.27 -1613694000,27.036,0.267 -1613694600,26.884,0.265 -1613695200,26.87,0.262 -1613695800,26.598,0.259 -1613696400,26.349,0.257 -1613697000,26.286,0.254 -1613697600,25.993,0.251 -1613698200,25.927,0.249 -1613698800,25.779,0.246 -1613699400,25.545,0.244 -1613700000,25.394,0.241 -1613700600,25.175,0.238 -1613701200,25.006,0.236 -1613701800,24.774,0.237 -1613702400,24.738,0.235 -1613703000,24.569,0.24 -1613703600,24.508,0.237 -1613704200,24.375,0.235 -1613704800,24.217,0.232 -1613705400,24.021,0.23 -1613706000,23.986,0.228 -1613706600,23.92,0.233 -1613707200,23.724,0.234 -1613707800,23.607,0.232 -1613708400,23.607,0.233 -1613709000,23.582,0.231 -1613709600,23.51,0.229 -1613710200,23.505,0.234 -1613710800,23.433,0.235 -1613711400,23.403,0.237 -1613712000,23.167,0.238 -1613712600,23.091,0.236 -1613713200,22.963,0.238 -1613713800,22.954,0.235 -1613714400,22.942,0.241 -1613715000,22.699,0.238 -1613715600,22.62,0.236 -1613716200,22.384,0.238 -1613716800,22.321,0.239 -1613717400,22.32,0.241 -1613718000,22.066,0.239 -1613718600,21.948,0.24 -1613719200,21.71,0.242 -1613719800,21.577,0.248 -1613720400,21.383,0.25 -1613721000,21.126,0.247 -1613721600,21.122,0.245 -1613722200,20.935,0.243 -1613722800,20.927,0.241 -1613723400,20.9,0.239 -1613724000,20.789,0.245 -1613724600,20.654,0.251 -1613725200,20.426,0.249 -1613725800,20.351,0.247 -1613726400,20.27,0.245 -1613727000,20.203,0.242 -1613727600,20.063,0.24 -1613728200,19.772,0.238 -1613728800,19.753,0.236 -1613729400,19.527,0.243 -1613730000,19.231,0.241 -1613730600,18.94,0.239 -1613731200,18.861,0.245 -1613731800,18.585,0.247 -1613732400,18.544,0.249 -1613733000,18.249,0.247 -1613733600,18.175,0.25 -1613734200,17.926,0.248 -1613734800,17.682,0.246 -1613735400,17.575,0.244 -1613736000,17.536,0.243 -1613736600,17.382,0.241 -1613737200,17.472,0.239 -1613737800,17.626,0.246 -1613738400,17.655,0.244 -1613739000,17.92,0.25 -1613739600,18.08,0.248 -1613740200,18.331,0.251 -1613740800,18.454,0.249 -1613741400,18.575,0.251 -1613742000,18.759,0.257 -1613742600,18.934,0.26 -1613743200,18.956,0.262 -1613743800,19.186,0.26 -1613744400,19.386,0.258 -1613745000,19.678,0.256 -1613745600,19.773,0.258 -1613746200,19.787,0.256 -1613746800,19.97,0.254 -1613747400,20.249,0.252 -1613748000,20.3,0.254 -1613748600,20.531,0.252 -1613749200,20.534,0.25 -1613749800,20.594,0.248 -1613750400,20.724,0.246 -1613751000,20.861,0.244 -1613751600,20.941,0.246 -1613752200,21.161,0.248 -1613752800,21.43,0.245 -1613753400,21.473,0.243 -1613754000,21.535,0.241 -1613754600,21.603,0.239 -1613755200,21.781,0.241 -1613755800,21.963,0.242 -1613756400,21.985,0.24 -1613757000,22.27,0.246 -1613757600,22.554,0.244 -1613758200,22.84,0.245 -1613758800,22.892,0.243 -1613759400,23.184,0.241 -1613760000,23.357,0.242 -1613760600,23.535,0.24 -1613761200,23.779,0.238 -1613761800,24.076,0.239 -1613762400,24.287,0.237 -1613763000,24.413,0.242 -1613763600,24.673,0.239 -1613764200,24.81,0.241 -1613764800,24.87,0.238 -1613765400,25.155,0.236 -1613766000,25.365,0.237 -1613766600,25.616,0.234 -1613767200,25.685,0.232 -1613767800,25.897,0.237 -1613768400,26.044,0.234 -1613769000,26.233,0.231 -1613769600,26.424,0.232 -1613770200,26.641,0.23 -1613770800,26.751,0.227 -1613771400,26.902,0.224 -1613772000,27.019,0.225 -1613772600,27.198,0.226 -1613773200,27.404,0.224 -1613773800,27.53,0.221 -1613774400,27.676,0.218 -1613775000,27.743,0.215 -1613775600,27.77,0.22 -1613776200,28.051,0.217 -1613776800,28.223,0.214 -1613777400,28.419,0.219 -1613778000,28.717,0.223 -1613778600,28.771,0.227 -1613779200,28.775,0.224 -1613779800,28.725,0.221 -1613780400,28.679,0.226 -1613781000,28.479,0.223 -1613781600,28.313,0.22 -1613782200,28.114,0.217 -1613782800,28.04,0.214 -1613783400,27.814,0.212 -1613784000,27.789,0.209 -1613784600,27.589,0.206 -1613785200,27.375,0.203 -1613785800,27.104,0.2 -1613786400,26.805,0.205 -1613787000,26.79,0.202 -1613787600,26.661,0.2 -1613788200,26.514,0.197 -1613788800,26.283,0.194 -1613789400,26.023,0.199 -1613790000,25.944,0.2 -1613790600,25.926,0.198 -1613791200,25.702,0.195 -1613791800,25.522,0.192 -1613792400,25.503,0.194 -1613793000,25.228,0.195 -1613793600,25.187,0.2 -1613794200,24.955,0.205 -1613794800,24.803,0.21 -1613795400,24.511,0.211 -1613796000,24.349,0.212 -1613796600,24.076,0.21 -1613797200,23.949,0.208 -1613797800,23.788,0.205 -1613798400,23.726,0.203 -1613799000,23.687,0.2 -1613799600,23.525,0.198 -1613800200,23.246,0.196 -1613800800,23.23,0.193 -1613801400,23.086,0.199 -1613802000,23.058,0.196 -1613802600,23.02,0.194 -1613803200,22.828,0.196 -1613803800,22.809,0.201 -1613804400,22.603,0.206 -1613805000,22.558,0.204 -1613805600,22.48,0.202 -1613806200,22.377,0.2 -1613806800,22.268,0.205 -1613807400,22.145,0.211 -1613808000,22.141,0.209 -1613808600,21.97,0.206 -1613809200,21.723,0.204 -1613809800,21.721,0.21 -1613810400,21.573,0.208 -1613811000,21.548,0.209 -1613811600,21.467,0.207 -1613812200,21.285,0.213 -1613812800,21.188,0.211 -1613813400,21.04,0.213 -1613814000,20.998,0.211 -1613814600,20.933,0.208 -1613815200,20.76,0.206 -1613815800,20.707,0.204 -1613816400,20.613,0.202 -1613817000,20.33,0.2 -1613817600,20.277,0.198 -1613818200,20.164,0.204 -1613818800,19.965,0.202 -1613819400,19.817,0.2 -1613820000,19.562,0.198 -1613820600,19.264,0.204 -1613821200,19.248,0.202 -1613821800,19.1,0.2 -1613822400,18.996,0.202 -1613823000,18.802,0.209 -1613823600,19.013,0.211 -1613824200,19.214,0.217 -1613824800,19.434,0.223 -1613825400,19.701,0.229 -1613826000,19.824,0.227 -1613826600,19.866,0.225 -1613827200,20.066,0.223 -1613827800,20.226,0.221 -1613828400,20.269,0.219 -1613829000,20.484,0.225 -1613829600,20.645,0.223 -1613830200,20.711,0.229 -1613830800,20.797,0.227 -1613831400,20.936,0.233 -1613832000,21.013,0.231 -1613832600,21.075,0.233 -1613833200,21.33,0.238 -1613833800,21.449,0.236 -1613834400,21.455,0.238 -1613835000,21.746,0.236 -1613835600,21.867,0.234 -1613836200,21.982,0.232 -1613836800,22.005,0.229 -1613837400,22.135,0.231 -1613838000,22.261,0.229 -1613838600,22.498,0.234 -1613839200,22.691,0.232 -1613839800,22.82,0.234 -1613840400,22.99,0.239 -1613841000,23.046,0.237 -1613841600,23.171,0.242 -1613842200,23.274,0.24 -1613842800,23.346,0.238 -1613843400,23.356,0.235 -1613844000,23.655,0.233 -1613844600,23.943,0.231 -1613845200,23.99,0.232 -1613845800,23.999,0.23 -1613846400,24.21,0.235 -1613847000,24.357,0.24 -1613847600,24.395,0.237 -1613848200,24.651,0.235 -1613848800,24.92,0.233 -1613849400,25.092,0.234 -1613850000,25.339,0.235 -1613850600,25.4,0.233 -1613851200,25.431,0.237 -1613851800,25.455,0.235 -1613852400,25.606,0.236 -1613853000,25.686,0.234 -1613853600,25.984,0.231 -1613854200,26.062,0.232 -1613854800,26.09,0.237 -1613855400,26.231,0.234 -1613856000,26.347,0.232 -1613856600,26.525,0.229 -1613857200,26.704,0.226 -1613857800,26.983,0.224 -1613858400,27.034,0.221 -1613859000,27.072,0.222 -1613859600,27.073,0.219 -1613860200,27.075,0.22 -1613860800,27.261,0.221 -1613861400,27.318,0.222 -1613862000,27.523,0.227 -1613862600,27.599,0.224 -1613863200,27.883,0.221 -1613863800,28.155,0.218 -1613864400,28.229,0.215 -1613865000,28.383,0.213 -1613865600,28.482,0.21 -1613866200,28.4,0.207 -1613866800,28.325,0.204 -1613867400,28.046,0.201 -1613868000,27.94,0.198 -1613868600,27.777,0.203 -1613869200,27.693,0.207 -1613869800,27.519,0.208 -1613870400,27.38,0.205 -1613871000,27.331,0.206 -1613871600,27.082,0.204 -1613872200,26.938,0.201 -1613872800,26.815,0.202 -1613873400,26.646,0.199 -1613874000,26.627,0.2 -1613874600,26.381,0.201 -1613875200,26.348,0.198 -1613875800,26.103,0.196 -1613876400,25.834,0.193 -1613877000,25.611,0.191 -1613877600,25.377,0.196 -1613878200,25.124,0.193 -1613878800,25.052,0.19 -1613879400,24.815,0.192 -1613880000,24.615,0.189 -1613880600,24.589,0.187 -1613881200,24.479,0.188 -1613881800,24.372,0.186 -1613882400,24.335,0.183 -1613883000,24.206,0.188 -1613883600,24.005,0.186 -1613884200,23.897,0.191 -1613884800,23.79,0.196 -1613885400,23.716,0.194 -1613886000,23.623,0.199 -1613886600,23.472,0.197 -1613887200,23.244,0.202 -1613887800,23.208,0.2 -1613888400,22.97,0.198 -1613889000,22.733,0.195 -1613889600,22.693,0.193 -1613890200,22.629,0.198 -1613890800,22.549,0.204 -1613891400,22.391,0.202 -1613892000,22.327,0.199 -1613892600,22.191,0.201 -1613893200,22.038,0.203 -1613893800,21.913,0.208 -1613894400,21.79,0.21 -1613895000,21.544,0.208 -1613895600,21.443,0.21 -1613896200,21.29,0.211 -1613896800,21.047,0.213 -1613897400,20.817,0.215 -1613898000,20.668,0.221 -1613898600,20.466,0.219 -1613899200,20.186,0.221 -1613899800,20.1,0.219 -1613900400,19.865,0.217 -1613901000,19.655,0.215 -1613901600,19.644,0.217 -1613902200,19.568,0.219 -1613902800,19.361,0.217 -1613903400,19.358,0.219 -1613904000,19.108,0.221 -1613904600,18.928,0.219 -1613905200,18.677,0.217 -1613905800,18.653,0.224 -1613906400,18.593,0.23 -1613907000,18.51,0.228 -1613907600,18.337,0.226 -1613908200,18.274,0.224 -1613908800,18.01,0.227 -1613909400,17.779,0.229 -1613910000,17.896,0.227 -1613910600,17.915,0.233 -1613911200,18.025,0.232 -1613911800,18.079,0.23 -1613912400,18.292,0.228 -1613913000,18.366,0.226 -1613913600,18.585,0.224 -1613914200,18.627,0.227 -1613914800,18.754,0.225 -1613915400,18.958,0.223 -1613916000,19.19,0.221 -1613916600,19.343,0.223 -1613917200,19.605,0.229 -1613917800,19.849,0.235 -1613918400,19.879,0.233 -1613919000,20.046,0.235 -1613919600,20.34,0.233 -1613920200,20.548,0.235 -1613920800,20.615,0.241 -1613921400,20.858,0.247 -1613922000,21.059,0.249 -1613922600,21.308,0.255 -1613923200,21.409,0.26 -1613923800,21.504,0.258 -1613924400,21.641,0.26 -1613925000,21.663,0.266 -1613925600,21.81,0.271 -1613926200,21.878,0.269 -1613926800,22.074,0.271 -1613927400,22.155,0.277 -1613928000,22.36,0.278 -1613928600,22.546,0.28 -1613929200,22.603,0.278 -1613929800,22.877,0.279 -1613930400,22.945,0.277 -1613931000,23.114,0.275 -1613931600,23.216,0.272 -1613932200,23.255,0.27 -1613932800,23.506,0.272 -1613933400,23.573,0.273 -1613934000,23.605,0.271 -1613934600,23.802,0.268 -1613935200,24.072,0.274 -1613935800,24.324,0.271 -1613936400,24.424,0.272 -1613937000,24.627,0.27 -1613937600,24.778,0.268 -1613938200,24.894,0.265 -1613938800,25.149,0.27 -1613939400,25.267,0.271 -1613940000,25.389,0.269 -1613940600,25.412,0.27 -1613941200,25.461,0.275 -1613941800,25.66,0.272 -1613942400,25.945,0.27 -1613943000,25.984,0.267 -1613943600,26.221,0.272 -1613944200,26.358,0.273 -1613944800,26.37,0.278 -1613945400,26.411,0.279 -1613946000,26.654,0.284 -1613946600,26.927,0.288 -1613947200,27.03,0.289 -1613947800,27.109,0.294 -1613948400,27.35,0.295 -1613949000,27.481,0.292 -1613949600,27.585,0.289 -1613950200,27.604,0.294 -1613950800,27.667,0.291 -1613951400,27.865,0.288 -1613952000,28.073,0.289 -1613952600,28.053,0.286 -1613953200,28.052,0.287 -1613953800,27.876,0.288 -1613954400,27.874,0.285 -1613955000,27.723,0.282 -1613955600,27.554,0.283 -1613956200,27.515,0.28 -1613956800,27.455,0.278 -1613957400,27.345,0.278 -1613958000,27.163,0.283 -1613958600,26.952,0.288 -1613959200,26.742,0.285 -1613959800,26.717,0.282 -1613960400,26.548,0.287 -1613961000,26.488,0.284 -1613961600,26.273,0.285 -1613962200,26.019,0.29 -1613962800,25.894,0.295 -1613963400,25.825,0.292 -1613964000,25.792,0.29 -1613964600,25.703,0.287 -1613965200,25.423,0.284 -1613965800,25.382,0.282 -1613966400,25.119,0.279 -1613967000,24.904,0.277 -1613967600,24.626,0.278 -1613968200,24.359,0.279 -1613968800,24.15,0.277 -1613969400,24.069,0.275 -1613970000,24.053,0.272 -1613970600,23.971,0.27 -1613971200,23.865,0.275 -1613971800,23.743,0.276 -1613972400,23.599,0.274 -1613973000,23.562,0.275 -1613973600,23.389,0.281 -1613974200,23.249,0.278 -1613974800,23.166,0.284 -1613975400,23.011,0.285 -1613976000,22.8,0.287 -1613976600,22.777,0.285 -1613977200,22.709,0.29 -1613977800,22.472,0.295 -1613978400,22.38,0.293 -1613979000,22.306,0.299 -1613979600,22.23,0.296 -1613980200,22.146,0.298 -1613980800,21.984,0.296 -1613981400,21.753,0.298 -1613982000,21.732,0.299 -1613982600,21.715,0.297 -1613983200,21.683,0.295 -1613983800,21.641,0.293 -1613984400,21.637,0.291 -1613985000,21.351,0.289 -1613985600,21.18,0.294 -1613986200,20.943,0.292 -1613986800,20.924,0.29 -1613987400,20.915,0.288 -1613988000,20.871,0.294 -1613988600,20.783,0.296 -1613989200,20.604,0.294 -1613989800,20.594,0.295 -1613990400,20.403,0.301 -1613991000,20.188,0.299 -1613991600,19.959,0.305 -1613992200,19.904,0.307 -1613992800,19.675,0.305 -1613993400,19.631,0.303 -1613994000,19.523,0.301 -1613994600,19.354,0.299 -1613995200,19.095,0.297 -1613995800,18.946,0.296 -1613996400,19.109,0.294 -1613997000,19.141,0.292 -1613997600,19.332,0.29 -1613998200,19.356,0.296 -1613998800,19.613,0.294 -1613999400,19.824,0.3 -1614000000,20.013,0.298 -1614000600,20.05,0.304 -1614001200,20.061,0.302 -1614001800,20.138,0.3 -1614002400,20.401,0.298 -1614003000,20.647,0.3 -1614003600,20.745,0.298 -1614004200,20.963,0.304 -1614004800,20.991,0.302 -1614005400,21.183,0.3 -1614006000,21.198,0.298 -1614006600,21.44,0.303 -1614007200,21.564,0.301 -1614007800,21.794,0.299 -1614008400,21.83,0.305 -1614009000,21.929,0.302 -1614009600,22.209,0.3 -1614010200,22.238,0.298 -1614010800,22.442,0.296 -1614011400,22.718,0.294 -1614012000,22.745,0.291 -1614012600,22.932,0.297 -1614013200,23.194,0.302 -1614013800,23.449,0.3 -1614014400,23.456,0.297 -1614015000,23.735,0.303 -1614015600,23.999,0.3 -1614016200,24.257,0.298 -1614016800,24.488,0.296 -1614017400,24.694,0.297 -1614018000,24.769,0.294 -1614018600,24.924,0.292 -1614019200,25.159,0.297 -1614019800,25.449,0.302 -1614020400,25.731,0.299 -1614021000,26.008,0.297 -1614021600,26.115,0.294 -1614022200,26.178,0.292 -1614022800,26.429,0.289 -1614023400,26.529,0.294 -1614024000,26.828,0.291 -1614024600,27.024,0.288 -1614025200,27.121,0.286 -1614025800,27.208,0.287 -1614026400,27.452,0.288 -1614027000,27.598,0.292 -1614027600,27.602,0.289 -1614028200,27.757,0.287 -1614028800,27.78,0.287 -1614029400,28.04,0.285 -1614030000,28.144,0.282 -1614030600,28.321,0.279 -1614031200,28.482,0.28 -1614031800,28.585,0.277 -1614032400,28.696,0.281 -1614033000,28.789,0.285 -1614033600,28.97,0.29 -1614034200,29.049,0.29 -1614034800,29.209,0.287 -1614035400,29.32,0.284 -1614036000,29.49,0.285 -1614036600,29.697,0.286 -1614037200,29.83,0.283 -1614037800,29.893,0.28 -1614038400,30.146,0.284 -1614039000,30.086,0.284 -1614039600,29.963,0.288 -1614040200,29.939,0.285 -1614040800,29.733,0.282 -1614041400,29.717,0.279 -1614042000,29.663,0.276 -1614042600,29.529,0.28 -1614043200,29.242,0.281 -1614043800,29.066,0.282 -1614044400,28.995,0.286 -1614045000,28.952,0.286 -1614045600,28.77,0.287 -1614046200,28.498,0.284 -1614046800,28.373,0.288 -1614047400,28.176,0.289 -1614048000,28.093,0.29 -1614048600,27.924,0.287 -1614049200,27.745,0.292 -1614049800,27.619,0.289 -1614050400,27.43,0.29 -1614051000,27.317,0.291 -1614051600,27.039,0.288 -1614052200,26.826,0.292 -1614052800,26.727,0.29 -1614053400,26.48,0.291 -1614054000,26.277,0.292 -1614054600,26.246,0.293 -1614055200,26.005,0.29 -1614055800,25.9,0.288 -1614056400,25.885,0.285 -1614057000,25.678,0.29 -1614057600,25.622,0.295 -1614058200,25.546,0.296 -1614058800,25.523,0.293 -1614059400,25.242,0.294 -1614060000,25.079,0.292 -1614060600,24.927,0.289 -1614061200,24.733,0.291 -1614061800,24.505,0.288 -1614062400,24.329,0.293 -1614063000,24.317,0.291 -1614063600,24.24,0.292 -1614064200,24.02,0.29 -1614064800,23.772,0.287 -1614065400,23.759,0.293 -1614066000,23.545,0.29 -1614066600,23.29,0.288 -1614067200,22.997,0.286 -1614067800,22.886,0.291 -1614068400,22.884,0.296 -1614069000,22.739,0.294 -1614069600,22.739,0.3 -1614070200,22.653,0.297 -1614070800,22.357,0.303 -1614071400,22.354,0.3 -1614072000,22.189,0.298 -1614072600,21.991,0.296 -1614073200,21.751,0.302 -1614073800,21.741,0.303 -1614074400,21.639,0.305 -1614075000,21.485,0.307 -1614075600,21.336,0.305 -1614076200,21.141,0.307 -1614076800,20.887,0.304 -1614077400,20.741,0.302 -1614078000,20.697,0.3 -1614078600,20.646,0.302 -1614079200,20.496,0.3 -1614079800,20.348,0.298 -1614080400,20.229,0.296 -1614081000,20.009,0.298 -1614081600,19.846,0.296 -1614082200,19.78,0.302 -1614082800,19.954,0.3 -1614083400,20.114,0.298 -1614084000,20.283,0.3 -1614084600,20.286,0.302 -1614085200,20.375,0.3 -1614085800,20.458,0.298 -1614086400,20.633,0.304 -1614087000,20.699,0.302 -1614087600,20.831,0.3 -1614088200,21.068,0.298 -1614088800,21.174,0.295 -1614089400,21.312,0.293 -1614090000,21.325,0.291 -1614090600,21.608,0.289 -1614091200,21.694,0.291 -1614091800,21.737,0.289 -1614092400,21.742,0.287 -1614093000,21.861,0.284 -1614093600,22.03,0.286 -1614094200,22.167,0.284 -1614094800,22.214,0.289 -1614095400,22.313,0.295 -1614096000,22.487,0.293 -1614096600,22.716,0.29 -1614097200,22.931,0.288 -1614097800,23.136,0.286 -1614098400,23.268,0.287 -1614099000,23.331,0.293 -1614099600,23.612,0.298 -1614100200,23.87,0.3 -1614100800,23.916,0.301 -1614101400,24.186,0.299 -1614102000,24.304,0.296 -1614102600,24.371,0.294 -1614103200,24.455,0.291 -1614103800,24.529,0.289 -1614104400,24.717,0.29 -1614105000,24.946,0.288 -1614105600,25.007,0.285 -1614106200,25.178,0.283 -1614106800,25.434,0.28 -1614107400,25.664,0.281 -1614108000,25.787,0.279 -1614108600,25.815,0.276 -1614109200,25.85,0.274 -1614109800,25.996,0.279 -1614110400,26.242,0.276 -1614111000,26.432,0.273 -1614111600,26.621,0.271 -1614112200,26.822,0.268 -1614112800,27.046,0.273 -1614113400,27.157,0.274 -1614114000,27.212,0.271 -1614114600,27.418,0.268 -1614115200,27.611,0.273 -1614115800,27.897,0.27 -1614116400,27.954,0.267 -1614117000,28.019,0.268 -1614117600,28.122,0.269 -1614118200,28.414,0.266 -1614118800,28.497,0.263 -1614119400,28.735,0.264 -1614120000,28.988,0.261 -1614120600,29.212,0.258 -1614121200,29.451,0.259 -1614121800,29.676,0.256 -1614122400,29.782,0.26 -1614123000,29.822,0.264 -1614123600,30.08,0.261 -1614124200,30.155,0.265 -1614124800,30.408,0.265 -1614125400,30.319,0.262 -1614126000,30.185,0.263 -1614126600,29.998,0.263 -1614127200,29.802,0.26 -1614127800,29.576,0.257 -1614128400,29.496,0.258 -1614129000,29.377,0.255 -1614129600,29.086,0.252 -1614130200,28.821,0.249 -1614130800,28.606,0.246 -1614131400,28.513,0.243 -1614132000,28.367,0.247 -1614132600,28.11,0.245 -1614133200,27.992,0.249 -1614133800,27.815,0.246 -1614134400,27.517,0.251 -1614135000,27.224,0.252 -1614135600,26.927,0.249 -1614136200,26.798,0.253 -1614136800,26.562,0.258 -1614137400,26.347,0.263 -1614138000,26.304,0.26 -1614138600,26.193,0.261 -1614139200,26.027,0.266 -1614139800,25.747,0.263 -1614140400,25.616,0.261 -1614141000,25.551,0.258 -1614141600,25.293,0.263 -1614142200,25.159,0.261 -1614142800,25.03,0.258 -1614143400,24.766,0.256 -1614144000,24.537,0.253 -1614144600,24.282,0.254 -1614145200,24.125,0.252 -1614145800,23.851,0.25 -1614146400,23.842,0.247 -1614147000,23.628,0.249 -1614147600,23.533,0.246 -1614148200,23.396,0.244 -1614148800,23.241,0.242 -1614149400,22.974,0.239 -1614150000,22.76,0.241 -1614150600,22.71,0.246 -1614151200,22.623,0.252 -1614151800,22.345,0.249 -1614152400,22.3,0.255 -1614153000,22.287,0.257 -1614153600,22.133,0.254 -1614154200,22.116,0.256 -1614154800,21.851,0.254 -1614155400,21.772,0.252 -1614156000,21.515,0.249 -1614156600,21.379,0.255 -1614157200,21.157,0.253 -1614157800,21.044,0.251 -1614158400,20.944,0.249 -1614159000,20.931,0.247 -1614159600,20.838,0.245 -1614160200,20.829,0.246 -1614160800,20.658,0.244 -1614161400,20.485,0.246 -1614162000,20.339,0.244 -1614162600,20.145,0.242 -1614163200,19.926,0.24 -1614163800,19.666,0.242 -1614164400,19.527,0.24 -1614165000,19.285,0.238 -1614165600,19.016,0.24 -1614166200,18.991,0.239 -1614166800,18.828,0.237 -1614167400,18.707,0.235 -1614168000,18.561,0.237 -1614168600,18.369,0.239 -1614169200,18.478,0.245 -1614169800,18.744,0.252 -1614170400,18.887,0.254 -1614171000,18.904,0.252 -1614171600,18.967,0.254 -1614172200,19.224,0.252 -1614172800,19.514,0.258 -1614173400,19.715,0.257 -1614174000,19.919,0.259 -1614174600,19.986,0.265 -1614175200,20.111,0.263 -1614175800,20.367,0.261 -1614176400,20.372,0.259 -1614177000,20.394,0.264 -1614177600,20.497,0.262 -1614178200,20.513,0.26 -1614178800,20.796,0.258 -1614179400,21.064,0.256 -1614180000,21.14,0.254 -1614180600,21.393,0.252 -1614181200,21.446,0.25 -1614181800,21.615,0.248 -1614182400,21.731,0.246 -1614183000,21.825,0.243 -1614183600,21.884,0.241 -1614184200,22.014,0.243 -1614184800,22.056,0.241 -1614185400,22.253,0.239 -1614186000,22.49,0.24 -1614186600,22.493,0.238 -1614187200,22.734,0.243 -1614187800,22.914,0.241 -1614188400,23.144,0.243 -1614189000,23.186,0.24 -1614189600,23.249,0.238 -1614190200,23.481,0.24 -1614190800,23.537,0.237 -1614191400,23.571,0.235 -1614192000,23.755,0.236 -1614192600,23.806,0.234 -1614193200,23.912,0.232 -1614193800,24.195,0.233 -1614194400,24.38,0.231 -1614195000,24.425,0.228 -1614195600,24.667,0.23 -1614196200,24.792,0.227 -1614196800,24.847,0.225 -1614197400,25.052,0.222 -1614198000,25.327,0.22 -1614198600,25.596,0.217 -1614199200,25.659,0.222 -1614199800,25.907,0.219 -1614200400,26.076,0.217 -1614201000,26.283,0.214 -1614201600,26.382,0.212 -1614202200,26.484,0.209 -1614202800,26.674,0.206 -1614203400,26.972,0.204 -1614204000,26.972,0.201 -1614204600,27.023,0.198 -1614205200,27.132,0.196 -1614205800,27.43,0.193 -1614206400,27.654,0.19 -1614207000,27.851,0.187 -1614207600,27.898,0.188 -1614208200,28.19,0.193 -1614208800,28.298,0.19 -1614209400,28.576,0.187 -1614210000,28.764,0.191 -1614210600,28.974,0.192 -1614211200,29.057,0.189 -1614211800,28.885,0.186 -1614212400,28.624,0.187 -1614213000,28.491,0.184 -1614213600,28.312,0.188 -1614214200,28.183,0.185 -1614214800,27.924,0.19 -1614215400,27.744,0.187 -1614216000,27.576,0.188 -1614216600,27.537,0.185 -1614217200,27.532,0.182 -1614217800,27.385,0.179 -1614218400,27.23,0.177 -1614219000,27.045,0.174 -1614219600,26.776,0.171 -1614220200,26.655,0.169 -1614220800,26.482,0.17 -1614221400,26.423,0.171 -1614222000,26.237,0.168 -1614222600,26.014,0.165 -1614223200,25.899,0.166 -1614223800,25.604,0.164 -1614224400,25.402,0.161 -1614225000,25.17,0.159 -1614225600,24.891,0.164 -1614226200,24.636,0.161 -1614226800,24.524,0.159 -1614227400,24.286,0.156 -1614228000,24.171,0.154 -1614228600,24.032,0.152 -1614229200,23.882,0.149 -1614229800,23.634,0.154 -1614230400,23.34,0.152 -1614231000,23.204,0.153 -1614231600,22.922,0.151 -1614232200,22.637,0.149 -1614232800,22.544,0.154 -1614233400,22.528,0.16 -1614234000,22.324,0.158 -1614234600,22.27,0.155 -1614235200,22.043,0.153 -1614235800,21.802,0.151 -1614236400,21.738,0.153 -1614237000,21.567,0.15 -1614237600,21.383,0.148 -1614238200,21.088,0.154 -1614238800,20.897,0.152 -1614239400,20.7,0.154 -1614240000,20.663,0.16 -1614240600,20.414,0.158 -1614241200,20.292,0.16 -1614241800,20.235,0.165 -1614242400,20.224,0.163 -1614243000,20.124,0.165 -1614243600,20.023,0.163 -1614244200,19.903,0.161 -1614244800,19.762,0.159 -1614245400,19.732,0.157 -1614246000,19.576,0.155 -1614246600,19.413,0.157 -1614247200,19.244,0.156 -1614247800,19.166,0.158 -1614248400,18.893,0.164 -1614249000,18.757,0.162 -1614249600,18.604,0.16 -1614250200,18.328,0.158 -1614250800,18.197,0.165 -1614251400,18.118,0.167 -1614252000,17.875,0.169 -1614252600,17.62,0.167 -1614253200,17.439,0.174 -1614253800,17.287,0.176 -1614254400,17.044,0.174 -1614255000,16.856,0.173 -1614255600,16.941,0.175 -1614256200,17.13,0.174 -1614256800,17.31,0.172 -1614257400,17.369,0.17 -1614258000,17.474,0.168 -1614258600,17.514,0.167 -1614259200,17.695,0.165 -1614259800,17.877,0.163 -1614260400,17.993,0.161 -1614261000,18.121,0.159 -1614261600,18.254,0.162 -1614262200,18.411,0.16 -1614262800,18.591,0.162 -1614263400,18.656,0.164 -1614264000,18.95,0.163 -1614264600,19.032,0.161 -1614265200,19.098,0.159 -1614265800,19.278,0.165 -1614266400,19.487,0.163 -1614267000,19.553,0.161 -1614267600,19.816,0.163 -1614268200,19.976,0.161 -1614268800,20.103,0.167 -1614269400,20.113,0.169 -1614270000,20.257,0.167 -1614270600,20.432,0.165 -1614271200,20.485,0.167 -1614271800,20.518,0.173 -1614272400,20.663,0.175 -1614273000,20.753,0.173 -1614273600,20.977,0.179 -1614274200,21.218,0.18 -1614274800,21.363,0.178 -1614275400,21.661,0.176 -1614276000,21.857,0.174 -1614276600,22.044,0.18 -1614277200,22.128,0.177 -1614277800,22.251,0.183 -1614278400,22.329,0.181 -1614279000,22.597,0.179 -1614279600,22.786,0.18 -1614280200,22.949,0.178 -1614280800,23.145,0.179 -1614281400,23.189,0.177 -1614282000,23.19,0.179 -1614282600,23.468,0.176 -1614283200,23.708,0.174 -1614283800,24.007,0.179 -1614284400,24.146,0.181 -1614285000,24.313,0.178 -1614285600,24.322,0.176 -1614286200,24.511,0.173 -1614286800,24.744,0.171 -1614287400,24.762,0.168 -1614288000,24.884,0.17 -1614288600,25.121,0.171 -1614289200,25.383,0.169 -1614289800,25.472,0.166 -1614290400,25.522,0.171 -1614291000,25.54,0.172 -1614291600,25.741,0.177 -1614292200,26.021,0.174 -1614292800,26.318,0.172 -1614293400,26.532,0.169 -1614294000,26.597,0.166 -1614294600,26.603,0.164 -1614295200,26.89,0.165 -1614295800,26.987,0.166 -1614296400,27.111,0.167 -1614297000,27.34,0.164 -1614297600,27.47,0.165 -1614298200,27.402,0.162 -1614298800,27.257,0.159 -1614299400,27.185,0.16 -1614300000,27.155,0.161 -1614300600,27.068,0.162 -1614301200,26.85,0.167 -1614301800,26.771,0.171 -1614302400,26.688,0.169 -1614303000,26.524,0.166 -1614303600,26.479,0.163 -1614304200,26.264,0.168 -1614304800,26.074,0.169 -1614305400,26.013,0.167 -1614306000,25.925,0.164 -1614306600,25.817,0.161 -1614307200,25.66,0.159 -1614307800,25.612,0.156 -1614308400,25.479,0.154 -1614309000,25.194,0.155 -1614309600,25.139,0.152 -1614310200,24.861,0.154 -1614310800,24.786,0.155 -1614311400,24.546,0.152 -1614312000,24.455,0.157 -1614312600,24.299,0.155 -1614313200,24.18,0.16 -1614313800,24.071,0.158 -1614314400,24.019,0.155 -1614315000,23.941,0.153 -1614315600,23.842,0.151 -1614316200,23.804,0.148 -1614316800,23.527,0.153 -1614317400,23.519,0.159 -1614318000,23.469,0.156 -1614318600,23.434,0.154 -1614319200,23.161,0.152 -1614319800,22.881,0.149 -1614320400,22.606,0.155 -1614321000,22.465,0.152 -1614321600,22.426,0.154 -1614322200,22.194,0.16 -1614322800,22.16,0.157 -1614323400,22.019,0.155 -1614324000,22.015,0.153 -1614324600,21.903,0.159 -1614325200,21.627,0.164 -1614325800,21.357,0.166 -1614326400,21.16,0.168 -1614327000,20.998,0.174 -1614327600,20.985,0.179 -1614328200,20.76,0.177 -1614328800,20.496,0.175 -1614329400,20.253,0.173 -1614330000,20.012,0.175 -1614330600,19.735,0.173 -1614331200,19.62,0.179 -1614331800,19.33,0.177 -1614332400,19.267,0.183 -1614333000,19.039,0.181 -1614333600,18.834,0.183 -1614334200,18.692,0.186 -1614334800,18.607,0.184 -1614335400,18.431,0.186 -1614336000,18.407,0.188 -1614336600,18.209,0.186 -1614337200,18.18,0.185 -1614337800,18.039,0.183 -1614338400,18.021,0.181 -1614339000,17.907,0.179 -1614339600,17.726,0.186 -1614340200,17.685,0.192 -1614340800,17.598,0.19 -1614341400,17.532,0.197 -1614342000,17.689,0.195 -1614342600,17.725,0.193 -1614343200,17.852,0.2 -1614343800,17.879,0.202 -1614344400,18.008,0.204 -1614345000,18.116,0.211 -1614345600,18.327,0.213 -1614346200,18.338,0.211 -1614346800,18.4,0.209 -1614347400,18.465,0.207 -1614348000,18.688,0.206 -1614348600,18.732,0.208 -1614349200,18.943,0.206 -1614349800,19.205,0.212 -1614350400,19.402,0.218 -1614351000,19.484,0.216 -1614351600,19.508,0.214 -1614352200,19.654,0.217 -1614352800,19.95,0.223 -1614353400,20.118,0.229 -1614354000,20.313,0.227 -1614354600,20.327,0.225 -1614355200,20.529,0.223 -1614355800,20.576,0.224 -1614356400,20.734,0.222 -1614357000,20.821,0.228 -1614357600,21.07,0.226 -1614358200,21.288,0.224 -1614358800,21.294,0.226 -1614359400,21.422,0.224 -1614360000,21.475,0.229 -1614360600,21.564,0.227 -1614361200,21.812,0.225 -1614361800,21.955,0.231 -1614362400,22.172,0.229 -1614363000,22.346,0.23 -1614363600,22.608,0.232 -1614364200,22.615,0.237 -1614364800,22.813,0.243 -1614365400,22.905,0.241 -1614366000,23.165,0.238 -1614366600,23.271,0.244 -1614367200,23.32,0.241 -1614367800,23.574,0.247 -1614368400,23.602,0.244 -1614369000,23.759,0.242 -1614369600,23.948,0.243 -1614370200,24.076,0.241 -1614370800,24.121,0.239 -1614371400,24.317,0.236 -1614372000,24.52,0.234 -1614372600,24.626,0.231 -1614373200,24.812,0.229 -1614373800,25.087,0.23 -1614374400,25.34,0.228 -1614375000,25.584,0.229 -1614375600,25.738,0.226 -1614376200,26.003,0.224 -1614376800,26.039,0.225 -1614377400,26.156,0.23 -1614378000,26.35,0.227 -1614378600,26.527,0.224 -1614379200,26.672,0.222 -1614379800,26.929,0.226 -1614380400,27.013,0.227 -1614381000,27.086,0.232 -1614381600,27.145,0.233 -1614382200,27.387,0.23 -1614382800,27.552,0.235 -1614383400,27.762,0.232 -1614384000,27.836,0.236 -1614384600,27.558,0.234 -1614385200,27.512,0.231 -1614385800,27.411,0.232 -1614386400,27.295,0.236 -1614387000,27.164,0.233 -1614387600,27.052,0.231 -1614388200,26.925,0.232 -1614388800,26.815,0.229 -1614389400,26.668,0.226 -1614390000,26.448,0.224 -1614390600,26.159,0.221 -1614391200,25.943,0.218 -1614391800,25.881,0.223 -1614392400,25.856,0.224 -1614393000,25.84,0.225 -1614393600,25.833,0.223 -1614394200,25.543,0.22 -1614394800,25.284,0.218 -1614395400,25.102,0.215 -1614396000,24.953,0.216 -1614396600,24.79,0.221 -1614397200,24.605,0.223 -1614397800,24.378,0.228 -1614398400,24.297,0.233 -1614399000,24.266,0.23 -1614399600,24.154,0.228 -1614400200,24.056,0.226 -1614400800,23.889,0.231 -1614401400,23.67,0.228 -1614402000,23.44,0.234 -1614402600,23.325,0.239 -1614403200,23.145,0.237 -1614403800,23.026,0.238 -1614404400,22.789,0.244 -1614405000,22.607,0.241 -1614405600,22.541,0.239 -1614406200,22.403,0.237 -1614406800,22.141,0.242 -1614407400,21.923,0.24 -1614408000,21.892,0.238 -1614408600,21.68,0.236 -1614409200,21.435,0.241 -1614409800,21.193,0.243 -1614410400,21.11,0.241 -1614411000,20.867,0.239 -1614411600,20.741,0.237 -1614412200,20.51,0.235 -1614412800,20.357,0.233 -1614413400,20.235,0.235 -1614414000,20.188,0.233 -1614414600,19.91,0.231 -1614415200,19.715,0.237 -1614415800,19.503,0.243 -1614416400,19.32,0.249 -1614417000,19.113,0.247 -1614417600,19.005,0.245 -1614418200,18.846,0.243 -1614418800,18.704,0.249 -1614419400,18.686,0.256 -1614420000,18.571,0.262 -1614420600,18.436,0.264 -1614421200,18.148,0.27 -1614421800,17.918,0.269 -1614422400,17.909,0.267 -1614423000,17.871,0.265 -1614423600,17.733,0.267 -1614424200,17.596,0.265 -1614424800,17.399,0.272 -1614425400,17.155,0.274 -1614426000,17.085,0.273 -1614426600,16.884,0.271 -1614427200,16.865,0.269 -1614427800,16.609,0.272 -1614428400,16.679,0.278 -1614429000,16.749,0.285 -1614429600,16.952,0.283 -1614430200,17.155,0.282 -1614430800,17.322,0.28 -1614431400,17.352,0.278 -1614432000,17.592,0.277 -1614432600,17.723,0.275 -1614433200,17.913,0.273 -1614433800,17.916,0.271 -1614434400,18.12,0.269 -1614435000,18.384,0.268 -1614435600,18.557,0.274 -1614436200,18.773,0.272 -1614436800,18.83,0.278 -1614437400,19.006,0.276 -1614438000,19.1,0.283 -1614438600,19.25,0.289 -1614439200,19.494,0.295 -1614439800,19.683,0.293 -1614440400,19.752,0.291 -1614441000,19.782,0.293 -1614441600,19.832,0.291 -1614442200,19.895,0.289 -1614442800,20.055,0.287 -1614443400,20.261,0.285 -1614444000,20.329,0.287 -1614444600,20.488,0.285 -1614445200,20.585,0.283 -1614445800,20.818,0.281 -1614446400,21.028,0.287 -1614447000,21.103,0.289 -1614447600,21.393,0.294 -1614448200,21.663,0.292 -1614448800,21.939,0.294 -1614449400,22.033,0.3 -1614450000,22.036,0.301 -1614450600,22.099,0.299 -1614451200,22.365,0.297 -1614451800,22.6,0.295 -1614452400,22.741,0.292 -1614453000,22.883,0.29 -1614453600,22.905,0.292 -1614454200,23.057,0.293 -1614454800,23.232,0.291 -1614455400,23.386,0.289 -1614456000,23.686,0.286 -1614456600,23.831,0.284 -1614457200,23.878,0.282 -1614457800,23.946,0.283 -1614458400,23.996,0.281 -1614459000,24.219,0.278 -1614459600,24.283,0.283 -1614460200,24.512,0.281 -1614460800,24.769,0.286 -1614461400,24.796,0.284 -1614462000,24.87,0.281 -1614462600,25.103,0.279 -1614463200,25.306,0.276 -1614463800,25.344,0.273 -1614464400,25.52,0.271 -1614465000,25.793,0.268 -1614465600,26.037,0.273 -1614466200,26.328,0.271 -1614466800,26.438,0.268 -1614467400,26.537,0.265 -1614468000,26.78,0.263 -1614468600,26.998,0.26 -1614469200,27.075,0.257 -1614469800,27.235,0.255 -1614470400,27.463,0.252 -1614471000,27.4,0.249 -1614471600,27.208,0.246 -1614472200,27.133,0.247 -1614472800,26.861,0.252 -1614473400,26.68,0.257 -1614474000,26.453,0.254 -1614474600,26.443,0.251 -1614475200,26.221,0.249 -1614475800,26.05,0.253 -1614476400,26.002,0.251 -1614477000,25.963,0.248 -1614477600,25.83,0.253 -1614478200,25.709,0.25 -1614478800,25.475,0.248 -1614479400,25.466,0.245 -1614480000,25.425,0.243 -1614480600,25.421,0.24 -1614481200,25.231,0.245 -1614481800,25.045,0.243 -1614482400,24.773,0.24 -1614483000,24.616,0.238 -1614483600,24.379,0.239 -1614484200,24.327,0.236 -1614484800,24.081,0.238 -1614485400,23.931,0.235 -1614486000,23.872,0.237 -1614486600,23.688,0.242 -1614487200,23.595,0.24 -1614487800,23.338,0.245 -1614488400,23.155,0.246 -1614489000,22.902,0.252 -1614489600,22.767,0.25 -1614490200,22.547,0.251 -1614490800,22.53,0.253 -1614491400,22.257,0.25 -1614492000,22.029,0.248 -1614492600,21.832,0.25 -1614493200,21.722,0.248 -1614493800,21.591,0.246 -1614494400,21.544,0.243 -1614495000,21.538,0.241 -1614495600,21.498,0.239 -1614496200,21.258,0.237 -1614496800,21.048,0.235 -1614497400,20.839,0.233 -1614498000,20.768,0.239 -1614498600,20.756,0.24 -1614499200,20.577,0.242 -1614499800,20.55,0.24 -1614500400,20.508,0.242 -1614501000,20.506,0.244 -1614501600,20.412,0.242 -1614502200,20.225,0.244 -1614502800,20.145,0.242 -1614503400,19.896,0.24 -1614504000,19.754,0.238 -1614504600,19.575,0.236 -1614505200,19.505,0.234 -1614505800,19.251,0.232 -1614506400,18.993,0.238 -1614507000,18.707,0.24 -1614507600,18.451,0.239 -1614508200,18.398,0.237 -1614508800,18.275,0.235 -1614509400,18.193,0.233 -1614510000,18.04,0.231 -1614510600,17.788,0.229 -1614511200,17.765,0.232 -1614511800,17.741,0.23 -1614512400,17.674,0.228 -1614513000,17.439,0.226 -1614513600,17.387,0.225 -1614514200,17.149,0.223 -1614514800,17.402,0.229 -1614515400,17.69,0.228 -1614516000,17.713,0.226 -1614516600,17.89,0.228 -1614517200,17.895,0.227 -1614517800,17.971,0.225 -1614518400,18.255,0.223 -1614519000,18.542,0.225 -1614519600,18.708,0.223 -1614520200,18.972,0.221 -1614520800,19.234,0.224 -1614521400,19.426,0.23 -1614522000,19.704,0.236 -1614522600,19.86,0.234 -1614523200,19.983,0.236 -1614523800,20.173,0.238 -1614524400,20.365,0.236 -1614525000,20.621,0.234 -1614525600,20.669,0.232 -1614526200,20.961,0.238 -1614526800,21.085,0.236 -1614527400,21.251,0.237 -1614528000,21.532,0.235 -1614528600,21.794,0.233 -1614529200,21.796,0.231 -1614529800,21.904,0.229 -1614530400,21.972,0.227 -1614531000,22.17,0.228 -1614531600,22.423,0.226 -1614532200,22.464,0.224 -1614532800,22.751,0.222 -1614533400,22.849,0.219 -1614534000,22.927,0.221 -1614534600,23.075,0.219 -1614535200,23.256,0.216 -1614535800,23.264,0.214 -1614536400,23.445,0.212 -1614537000,23.56,0.217 -1614537600,23.58,0.215 -1614538200,23.682,0.22 -1614538800,23.711,0.221 -1614539400,23.844,0.219 -1614540000,24.017,0.22 -1614540600,24.128,0.218 -1614541200,24.25,0.216 -1614541800,24.326,0.217 -1614542400,24.452,0.222 -1614543000,24.491,0.227 -1614543600,24.633,0.229 -1614544200,24.762,0.234 -1614544800,24.866,0.239 -1614545400,24.886,0.236 -1614546000,25.009,0.237 -1614546600,25.085,0.235 -1614547200,25.193,0.24 -1614547800,25.236,0.237 -1614548400,25.512,0.239 -1614549000,25.782,0.236 -1614549600,26.036,0.241 -1614550200,26.213,0.242 -1614550800,26.287,0.243 -1614551400,26.343,0.24 -1614552000,26.453,0.238 -1614552600,26.616,0.235 -1614553200,26.641,0.232 -1614553800,26.716,0.23 -1614554400,26.93,0.227 -1614555000,27.065,0.224 -1614555600,27.113,0.225 -1614556200,27.235,0.226 -1614556800,27.417,0.231 -1614557400,27.131,0.235 -1614558000,27.01,0.233 -1614558600,26.911,0.23 -1614559200,26.782,0.227 -1614559800,26.637,0.232 -1614560400,26.557,0.229 -1614561000,26.402,0.23 -1614561600,26.372,0.228 -1614562200,26.139,0.225 -1614562800,26.014,0.222 -1614563400,25.88,0.223 -1614564000,25.639,0.221 -1614564600,25.45,0.226 -1614565200,25.179,0.223 -1614565800,24.969,0.221 -1614566400,24.925,0.222 -1614567000,24.743,0.219 -1614567600,24.446,0.217 -1614568200,24.333,0.215 -1614568800,24.121,0.212 -1614569400,23.956,0.21 -1614570000,23.702,0.207 -1614570600,23.698,0.205 -1614571200,23.616,0.203 -1614571800,23.563,0.2 -1614572400,23.403,0.198 -1614573000,23.21,0.203 -1614573600,23.017,0.209 -1614574200,22.724,0.214 -1614574800,22.447,0.212 -1614575400,22.249,0.209 -1614576000,22.146,0.207 -1614576600,22.009,0.205 -1614577200,21.777,0.207 -1614577800,21.6,0.204 -1614578400,21.538,0.21 -1614579000,21.474,0.216 -1614579600,21.336,0.218 -1614580200,21.262,0.216 -1614580800,20.975,0.221 -1614581400,20.968,0.219 -1614582000,20.897,0.221 -1614582600,20.775,0.227 -1614583200,20.501,0.233 -1614583800,20.355,0.231 -1614584400,20.123,0.237 -1614585000,19.826,0.243 -1614585600,19.737,0.241 -1614586200,19.656,0.239 -1614586800,19.654,0.237 -1614587400,19.485,0.243 -1614588000,19.186,0.241 -1614588600,19.058,0.239 -1614589200,18.906,0.237 -1614589800,18.855,0.235 -1614590400,18.819,0.233 -1614591000,18.673,0.239 -1614591600,18.394,0.242 -1614592200,18.098,0.24 -1614592800,17.811,0.242 -1614593400,17.753,0.24 -1614594000,17.717,0.238 -1614594600,17.508,0.237 -1614595200,17.411,0.235 -1614595800,17.401,0.233 -1614596400,17.113,0.231 -1614597000,16.951,0.238 -1614597600,16.673,0.24 -1614598200,16.484,0.247 -1614598800,16.223,0.246 -1614599400,15.991,0.244 -1614600000,15.852,0.242 -1614600600,15.678,0.241 -1614601200,15.682,0.239 -1614601800,15.688,0.246 -1614602400,15.772,0.244 -1614603000,16.065,0.243 -1614603600,16.28,0.245 -1614604200,16.484,0.252 -1614604800,16.738,0.259 -1614605400,16.883,0.257 -1614606000,17.168,0.256 -1614606600,17.33,0.262 -1614607200,17.614,0.26 -1614607800,17.752,0.259 -1614608400,17.956,0.265 -1614609000,18.222,0.263 -1614609600,18.306,0.27 -1614610200,18.523,0.272 -1614610800,18.581,0.27 -1614611400,18.73,0.276 -1614612000,18.942,0.274 -1614612600,18.962,0.281 -1614613200,19.023,0.279 -1614613800,19.198,0.281 -1614614400,19.322,0.283 -1614615000,19.324,0.281 -1614615600,19.623,0.287 -1614616200,19.7,0.285 -1614616800,19.944,0.283 -1614617400,20.026,0.281 -1614618000,20.042,0.279 -1614618600,20.256,0.277 -1614619200,20.521,0.275 -1614619800,20.536,0.281 -1614620400,20.556,0.283 -1614621000,20.853,0.281 -1614621600,21.1,0.287 -1614622200,21.113,0.293 -1614622800,21.336,0.298 -1614623400,21.467,0.3 -1614624000,21.678,0.298 -1614624600,21.833,0.296 -1614625200,22.037,0.294 -1614625800,22.236,0.299 -1614626400,22.298,0.297 -1614627000,22.423,0.299 -1614627600,22.496,0.296 -1614628200,22.591,0.294 -1614628800,22.879,0.296 -1614629400,23.027,0.297 -1614630000,23.129,0.295 -1614630600,23.166,0.293 -1614631200,23.405,0.29 -1614631800,23.405,0.288 -1614632400,23.572,0.286 -1614633000,23.594,0.283 -1614633600,23.603,0.285 -1614634200,23.671,0.283 -1614634800,23.956,0.284 -1614635400,24.146,0.289 -1614636000,24.261,0.287 -1614636600,24.417,0.288 -1614637200,24.43,0.286 -1614637800,24.621,0.287 -1614638400,24.747,0.285 -1614639000,24.922,0.29 -1614639600,25.146,0.291 -1614640200,25.444,0.288 -1614640800,25.51,0.286 -1614641400,25.606,0.291 -1614642000,25.746,0.288 -1614642600,25.902,0.289 -1614643200,25.911,0.287 -1614643800,25.671,0.284 -1614644400,25.385,0.285 -1614645000,25.104,0.29 -1614645600,24.935,0.288 -1614646200,24.892,0.285 -1614646800,24.789,0.286 -1614647400,24.527,0.284 -1614648000,24.362,0.289 -1614648600,24.346,0.294 -1614649200,24.125,0.292 -1614649800,23.925,0.289 -1614650400,23.716,0.287 -1614651000,23.484,0.288 -1614651600,23.391,0.286 -1614652200,23.187,0.284 -1614652800,23.023,0.281 -1614653400,22.9,0.279 -1614654000,22.713,0.277 -1614654600,22.67,0.282 -1614655200,22.486,0.28 -1614655800,22.275,0.278 -1614656400,22.16,0.276 -1614657000,21.988,0.277 -1614657600,21.806,0.275 -1614658200,21.768,0.273 -1614658800,21.58,0.278 -1614659400,21.515,0.28 -1614660000,21.361,0.278 -1614660600,21.087,0.284 -1614661200,20.973,0.29 -1614661800,20.699,0.287 -1614662400,20.592,0.285 -1614663000,20.524,0.291 -1614663600,20.467,0.289 -1614664200,20.258,0.291 -1614664800,20.126,0.289 -1614665400,19.84,0.287 -1614666000,19.616,0.285 -1614666600,19.47,0.283 -1614667200,19.318,0.281 -1614667800,19.299,0.279 -1614668400,19.068,0.285 -1614669000,18.866,0.284 -1614669600,18.761,0.282 -1614670200,18.539,0.28 -1614670800,18.414,0.278 -1614671400,18.37,0.276 -1614672000,18.271,0.274 -1614672600,18.003,0.272 -1614673200,17.826,0.271 -1614673800,17.562,0.269 -1614674400,17.493,0.267 -1614675000,17.36,0.269 -1614675600,17.108,0.268 -1614676200,16.862,0.266 -1614676800,16.776,0.273 -1614677400,16.53,0.271 -1614678000,16.503,0.269 -1614678600,16.351,0.268 -1614679200,16.203,0.274 -1614679800,16.112,0.273 -1614680400,16.077,0.271 -1614681000,15.823,0.27 -1614681600,15.592,0.272 -1614682200,15.458,0.271 -1614682800,15.361,0.269 -1614683400,15.277,0.272 -1614684000,15.181,0.27 -1614684600,15.019,0.277 -1614685200,15.0,0.276 -1614685800,14.996,0.274 -1614686400,14.965,0.273 -1614687000,14.956,0.275 -1614687600,15.14,0.274 -1614688200,15.343,0.277 -1614688800,15.422,0.275 -1614689400,15.548,0.282 -1614690000,15.602,0.285 -1614690600,15.694,0.292 -1614691200,15.863,0.298 -1614691800,15.965,0.301 -1614692400,16.06,0.3 -1614693000,16.134,0.302 -1614693600,16.239,0.3 -1614694200,16.462,0.303 -1614694800,16.464,0.301 -1614695400,16.683,0.3 -1614696000,16.742,0.306 -1614696600,16.8,0.309 -1614697200,16.916,0.307 -1614697800,17.048,0.306 -1614698400,17.216,0.304 -1614699000,17.397,0.302 -1614699600,17.591,0.3 -1614700200,17.771,0.299 -1614700800,17.777,0.297 -1614701400,17.962,0.295 -1614702000,18.258,0.293 -1614702600,18.554,0.291 -1614703200,18.778,0.29 -1614703800,19.037,0.288 -1614704400,19.05,0.286 -1614705000,19.333,0.284 -1614705600,19.449,0.282 -1614706200,19.722,0.28 -1614706800,19.917,0.282 -1614707400,20.128,0.28 -1614708000,20.393,0.278 -1614708600,20.481,0.276 -1614709200,20.746,0.282 -1614709800,20.989,0.28 -1614710400,21.286,0.278 -1614711000,21.44,0.276 -1614711600,21.703,0.273 -1614712200,21.705,0.275 -1614712800,21.87,0.273 -1614713400,22.025,0.279 -1614714000,22.307,0.284 -1614714600,22.55,0.282 -1614715200,22.626,0.28 -1614715800,22.92,0.281 -1614716400,22.968,0.279 -1614717000,23.227,0.277 -1614717600,23.493,0.274 -1614718200,23.567,0.28 -1614718800,23.713,0.277 -1614719400,23.834,0.275 -1614720000,23.954,0.273 -1614720600,24.056,0.278 -1614721200,24.17,0.275 -1614721800,24.379,0.273 -1614722400,24.638,0.271 -1614723000,24.871,0.268 -1614723600,24.871,0.266 -1614724200,25.07,0.263 -1614724800,25.176,0.268 -1614725400,25.348,0.266 -1614726000,25.419,0.263 -1614726600,25.579,0.261 -1614727200,25.844,0.262 -1614727800,25.989,0.263 -1614728400,26.064,0.264 -1614729000,26.29,0.261 -1614729600,26.308,0.259 -1614730200,26.223,0.263 -1614730800,25.93,0.261 -1614731400,25.913,0.258 -1614732000,25.727,0.256 -1614732600,25.587,0.253 -1614733200,25.326,0.258 -1614733800,25.122,0.255 -1614734400,25.084,0.26 -1614735000,24.995,0.262 -1614735600,24.786,0.259 -1614736200,24.697,0.26 -1614736800,24.565,0.258 -1614737400,24.505,0.255 -1614738000,24.319,0.257 -1614738600,24.059,0.254 -1614739200,23.901,0.252 -1614739800,23.855,0.25 -1614740400,23.716,0.247 -1614741000,23.526,0.252 -1614741600,23.516,0.25 -1614742200,23.504,0.255 -1614742800,23.27,0.253 -1614743400,23.266,0.251 -1614744000,23.232,0.252 -1614744600,23.173,0.25 -1614745200,23.027,0.248 -1614745800,22.863,0.245 -1614746400,22.805,0.243 -1614747000,22.516,0.241 -1614747600,22.245,0.238 -1614748200,22.015,0.236 -1614748800,21.718,0.234 -1614749400,21.433,0.232 -1614750000,21.202,0.23 -1614750600,20.962,0.228 -1614751200,20.885,0.226 -1614751800,20.635,0.223 -1614752400,20.34,0.221 -1614753000,20.293,0.219 -1614753600,20.272,0.221 -1614754200,20.236,0.227 -1614754800,20.047,0.229 -1614755400,19.781,0.227 -1614756000,19.558,0.225 -1614756600,19.307,0.227 -1614757200,19.185,0.225 -1614757800,18.918,0.223 -1614758400,18.844,0.222 -1614759000,18.603,0.22 -1614759600,18.428,0.222 -1614760200,18.135,0.22 -1614760800,18.106,0.226 -1614761400,17.941,0.225 -1614762000,17.788,0.223 -1614762600,17.511,0.221 -1614763200,17.399,0.219 -1614763800,17.168,0.226 -1614764400,16.997,0.228 -1614765000,16.846,0.227 -1614765600,16.807,0.229 -1614766200,16.556,0.231 -1614766800,16.366,0.234 -1614767400,16.325,0.232 -1614768000,16.245,0.239 -1614768600,16.103,0.237 -1614769200,15.917,0.236 -1614769800,15.825,0.234 -1614770400,15.611,0.233 -1614771000,15.351,0.24 -1614771600,15.302,0.246 -1614772200,15.072,0.245 -1614772800,14.898,0.243 -1614773400,14.886,0.242 -1614774000,15.033,0.245 -1614774600,15.258,0.243 -1614775200,15.43,0.25 -1614775800,15.646,0.249 -1614776400,15.769,0.247 -1614777000,16.026,0.245 -1614777600,16.062,0.244 -1614778200,16.13,0.242 -1614778800,16.416,0.241 -1614779400,16.501,0.239 -1614780000,16.707,0.237 -1614780600,16.92,0.236 -1614781200,17.031,0.238 -1614781800,17.305,0.241 -1614782400,17.547,0.243 -1614783000,17.617,0.241 -1614783600,17.884,0.239 -1614784200,18.01,0.238 -1614784800,18.154,0.244 -1614785400,18.219,0.25 -1614786000,18.265,0.257 -1614786600,18.543,0.255 -1614787200,18.625,0.253 -1614787800,18.684,0.259 -1614788400,18.71,0.266 -1614789000,19.001,0.264 -1614789600,19.064,0.262 -1614790200,19.132,0.268 -1614790800,19.347,0.27 -1614791400,19.393,0.268 -1614792000,19.626,0.266 -1614792600,19.831,0.264 -1614793200,20.119,0.262 -1614793800,20.25,0.264 -1614794400,20.371,0.27 -1614795000,20.622,0.268 -1614795600,20.775,0.27 -1614796200,20.932,0.268 -1614796800,21.076,0.274 -1614797400,21.282,0.272 -1614798000,21.346,0.278 -1614798600,21.446,0.275 -1614799200,21.706,0.281 -1614799800,21.992,0.279 -1614800400,22.241,0.277 -1614801000,22.496,0.275 -1614801600,22.573,0.28 -1614802200,22.847,0.286 -1614802800,22.916,0.283 -1614803400,22.983,0.285 -1614804000,23.254,0.283 -1614804600,23.262,0.284 -1614805200,23.414,0.282 -1614805800,23.546,0.287 -1614806400,23.757,0.285 -1614807000,23.886,0.282 -1614807600,23.975,0.288 -1614808200,24.091,0.285 -1614808800,24.267,0.287 -1614809400,24.379,0.284 -1614810000,24.659,0.282 -1614810600,24.688,0.279 -1614811200,24.881,0.284 -1614811800,25.12,0.282 -1614812400,25.301,0.283 -1614813000,25.488,0.284 -1614813600,25.531,0.282 -1614814200,25.799,0.287 -1614814800,25.82,0.288 -1614815400,26.11,0.285 -1614816000,26.253,0.282 -1614816600,26.046,0.28 -1614817200,26.03,0.285 -1614817800,25.766,0.289 -1614818400,25.656,0.287 -1614819000,25.466,0.288 -1614819600,25.397,0.285 -1614820200,25.373,0.283 -1614820800,25.123,0.28 -1614821400,25.017,0.278 -1614822000,24.827,0.275 -1614822600,24.774,0.28 -1614823200,24.619,0.278 -1614823800,24.448,0.275 -1614824400,24.166,0.273 -1614825000,24.094,0.271 -1614825600,24.092,0.268 -1614826200,23.818,0.27 -1614826800,23.621,0.271 -1614827400,23.366,0.269 -1614828000,23.222,0.266 -1614828600,23.01,0.264 -1614829200,22.78,0.266 -1614829800,22.574,0.271 -1614830400,22.353,0.276 -1614831000,22.208,0.274 -1614831600,22.177,0.28 -1614832200,22.115,0.285 -1614832800,21.876,0.287 -1614833400,21.667,0.289 -1614834000,21.557,0.291 -1614834600,21.44,0.288 -1614835200,21.249,0.286 -1614835800,21.026,0.284 -1614836400,20.775,0.29 -1614837000,20.533,0.288 -1614837600,20.391,0.286 -1614838200,20.155,0.288 -1614838800,20.094,0.29 -1614839400,19.796,0.288 -1614840000,19.677,0.29 -1614840600,19.673,0.296 -1614841200,19.562,0.302 -1614841800,19.5,0.3 -1614842400,19.323,0.302 -1614843000,19.305,0.304 -1614843600,19.037,0.302 -1614844200,18.821,0.3 -1614844800,18.679,0.298 -1614845400,18.577,0.305 -1614846000,18.282,0.303 -1614846600,18.027,0.301 -1614847200,18.025,0.299 -1614847800,17.91,0.305 -1614848400,17.64,0.304 -1614849000,17.457,0.302 -1614849600,17.423,0.3 -1614850200,17.134,0.298 -1614850800,17.063,0.297 -1614851400,16.833,0.299 -1614852000,16.725,0.302 -1614852600,16.696,0.3 -1614853200,16.444,0.298 -1614853800,16.303,0.297 -1614854400,16.213,0.299 -1614855000,16.212,0.298 -1614855600,15.966,0.296 -1614856200,15.826,0.294 -1614856800,15.68,0.297 -1614857400,15.612,0.295 -1614858000,15.551,0.298 -1614858600,15.551,0.305 -1614859200,15.491,0.308 -1614859800,15.37,0.306 -1614860400,15.461,0.305 -1614861000,15.747,0.303 -1614861600,15.907,0.301 -1614862200,15.924,0.304 -1614862800,16.011,0.302 -1614863400,16.061,0.301 -1614864000,16.214,0.299 -1614864600,16.349,0.298 -1614865200,16.634,0.296 -1614865800,16.788,0.294 -1614866400,17.072,0.293 -1614867000,17.28,0.291 -1614867600,17.487,0.289 -1614868200,17.64,0.296 -1614868800,17.776,0.294 -1614869400,17.86,0.292 -1614870000,18.158,0.29 -1614870600,18.238,0.293 -1614871200,18.262,0.291 -1614871800,18.342,0.289 -1614872400,18.438,0.287 -1614873000,18.573,0.285 -1614873600,18.697,0.283 -1614874200,18.863,0.282 -1614874800,18.924,0.28 -1614875400,19.102,0.278 -1614876000,19.188,0.284 -1614876600,19.432,0.282 -1614877200,19.47,0.28 -1614877800,19.498,0.278 -1614878400,19.691,0.28 -1614879000,19.715,0.278 -1614879600,19.813,0.284 -1614880200,20.013,0.282 -1614880800,20.041,0.288 -1614881400,20.061,0.286 -1614882000,20.217,0.284 -1614882600,20.339,0.29 -1614883200,20.56,0.288 -1614883800,20.731,0.286 -1614884400,21.007,0.292 -1614885000,21.238,0.298 -1614885600,21.473,0.296 -1614886200,21.626,0.294 -1614886800,21.651,0.291 -1614887400,21.907,0.289 -1614888000,21.996,0.287 -1614888600,22.246,0.293 -1614889200,22.328,0.29 -1614889800,22.591,0.292 -1614890400,22.692,0.298 -1614891000,22.716,0.295 -1614891600,22.786,0.293 -1614892200,23.049,0.299 -1614892800,23.244,0.296 -1614893400,23.3,0.294 -1614894000,23.36,0.292 -1614894600,23.405,0.297 -1614895200,23.486,0.295 -1614895800,23.776,0.3 -1614896400,23.967,0.301 -1614897000,24.259,0.299 -1614897600,24.527,0.296 -1614898200,24.768,0.294 -1614898800,24.883,0.295 -1614899400,24.946,0.293 -1614900000,25.04,0.29 -1614900600,25.328,0.288 -1614901200,25.468,0.285 -1614901800,25.566,0.286 -1614902400,25.672,0.284 -1614903000,25.6,0.281 -1614903600,25.514,0.279 -1614904200,25.427,0.28 -1614904800,25.366,0.277 -1614905400,25.253,0.275 -1614906000,25.085,0.272 -1614906600,24.92,0.277 -1614907200,24.724,0.282 -1614907800,24.584,0.28 -1614908400,24.382,0.277 -1614909000,24.343,0.279 -1614909600,24.183,0.28 -1614910200,24.171,0.278 -1614910800,24.115,0.275 -1614911400,23.861,0.273 -1614912000,23.812,0.27 -1614912600,23.746,0.268 -1614913200,23.671,0.273 -1614913800,23.449,0.279 -1614914400,23.197,0.284 -1614915000,22.899,0.282 -1614915600,22.77,0.279 -1614916200,22.649,0.281 -1614916800,22.35,0.286 -1614917400,22.21,0.288 -1614918000,21.979,0.286 -1614918600,21.917,0.287 -1614919200,21.761,0.285 -1614919800,21.662,0.291 -1614920400,21.598,0.297 -1614921000,21.495,0.302 -1614921600,21.385,0.3 -1614922200,21.215,0.298 -1614922800,21.002,0.296 -1614923400,20.777,0.294 -1614924000,20.565,0.3 -1614924600,20.463,0.298 -1614925200,20.176,0.303 -1614925800,20.01,0.301 -1614926400,19.741,0.299 -1614927000,19.515,0.297 -1614927600,19.514,0.296 -1614928200,19.246,0.298 -1614928800,19.232,0.296 -1614929400,19.112,0.298 -1614930000,18.853,0.296 -1614930600,18.696,0.294 -1614931200,18.538,0.292 -1614931800,18.414,0.298 -1614932400,18.198,0.297 -1614933000,17.999,0.295 -1614933600,17.912,0.293 -1614934200,17.664,0.291 -1614934800,17.598,0.298 -1614935400,17.448,0.296 -1614936000,17.168,0.294 -1614936600,17.159,0.301 -1614937200,17.079,0.299 -1614937800,16.961,0.297 -1614938400,16.942,0.304 -1614939000,16.654,0.302 -1614939600,16.415,0.305 -1614940200,16.358,0.303 -1614940800,16.226,0.301 -1614941400,16.075,0.304 -1614942000,15.867,0.302 -1614942600,15.695,0.301 -1614943200,15.506,0.303 -1614943800,15.34,0.302 -1614944400,15.049,0.305 -1614945000,14.903,0.307 -1614945600,14.743,0.306 -1614946200,14.574,0.304 -1614946800,14.743,0.303 -1614947400,14.918,0.301 -1614948000,15.002,0.304 -1614948600,15.165,0.303 -1614949200,15.18,0.301 -1614949800,15.432,0.304 -1614950400,15.502,0.302 -1614951000,15.735,0.301 -1614951600,16.017,0.299 -1614952200,16.188,0.302 -1614952800,16.363,0.3 -1614953400,16.407,0.299 -1614954000,16.657,0.297 -1614954600,16.939,0.295 -1614955200,17.158,0.294 -1614955800,17.312,0.292 -1614956400,17.415,0.294 -1614957000,17.537,0.297 -1614957600,17.597,0.295 -1614958200,17.722,0.293 -1614958800,17.866,0.291 -1614959400,17.881,0.294 -1614960000,18.163,0.292 -1614960600,18.38,0.29 -1614961200,18.602,0.288 -1614961800,18.834,0.295 -1614962400,18.848,0.297 -1614963000,18.996,0.295 -1614963600,19.249,0.301 -1614964200,19.456,0.299 -1614964800,19.472,0.297 -1614965400,19.745,0.295 -1614966000,19.861,0.301 -1614966600,20.038,0.299 -1614967200,20.039,0.305 -1614967800,20.083,0.303 -1614968400,20.249,0.305 -1614969000,20.436,0.307 -1614969600,20.526,0.305 -1614970200,20.632,0.307 -1614970800,20.82,0.305 -1614971400,21.09,0.303 -1614972000,21.341,0.301 -1614972600,21.597,0.299 -1614973200,21.753,0.297 -1614973800,21.792,0.294 -1614974400,22.056,0.292 -1614975000,22.159,0.29 -1614975600,22.43,0.288 -1614976200,22.56,0.293 -1614976800,22.735,0.295 -1614977400,22.771,0.296 -1614978000,22.921,0.294 -1614978600,22.971,0.292 -1614979200,22.972,0.293 -1614979800,23.148,0.291 -1614980400,23.268,0.289 -1614981000,23.443,0.287 -1614981600,23.666,0.284 -1614982200,23.696,0.282 -1614982800,23.784,0.283 -1614983400,23.816,0.285 -1614984000,24.014,0.282 -1614984600,24.026,0.28 -1614985200,24.173,0.281 -1614985800,24.282,0.279 -1614986400,24.38,0.284 -1614987000,24.652,0.289 -1614987600,24.778,0.29 -1614988200,24.92,0.288 -1614988800,24.954,0.285 -1614989400,24.688,0.283 -1614990000,24.571,0.281 -1614990600,24.324,0.278 -1614991200,24.036,0.276 -1614991800,23.746,0.281 -1614992400,23.59,0.278 -1614993000,23.299,0.276 -1614993600,23.098,0.274 -1614994200,22.819,0.275 -1614994800,22.644,0.281 -1614995400,22.535,0.282 -1614996000,22.285,0.284 -1614996600,22.024,0.282 -1614997200,21.761,0.287 -1614997800,21.608,0.285 -1614998400,21.575,0.287 -1614999000,21.298,0.285 -1614999600,21.1,0.29 -1615000200,20.814,0.288 -1615000800,20.635,0.29 -1615001400,20.387,0.292 -1615002000,20.101,0.29 -1615002600,19.934,0.296 -1615003200,19.77,0.294 -1615003800,19.677,0.296 -1615004400,19.448,0.294 -1615005000,19.325,0.292 -1615005600,19.117,0.294 -1615006200,19.064,0.292 -1615006800,19.044,0.291 -1615007400,18.821,0.293 -1615008000,18.527,0.295 -1615008600,18.378,0.297 -1615009200,18.227,0.295 -1615009800,18.056,0.302 -1615010400,17.911,0.3 -1615011000,17.625,0.302 -1615011600,17.378,0.3 -1615012200,17.192,0.303 -1615012800,16.978,0.301 -1615013400,16.777,0.299 -1615014000,16.761,0.298 -1615014600,16.681,0.296 -1615015200,16.499,0.294 -1615015800,16.46,0.301 -1615016400,16.19,0.299 -1615017000,15.922,0.298 -1615017600,15.889,0.305 -1615018200,15.642,0.307 -1615018800,15.454,0.306 -1615019400,15.2,0.304 -1615020000,15.174,0.303 -1615020600,14.956,0.301 -1615021200,14.823,0.299 -1615021800,14.529,0.302 -1615022400,14.461,0.301 -1615023000,14.228,0.299 -1615023600,14.165,0.307 -1615024200,14.011,0.305 -1615024800,13.763,0.304 -1615025400,13.533,0.302 -1615026000,13.334,0.301 -1615026600,13.183,0.3 -1615027200,13.05,0.307 -1615027800,13.001,0.306 -1615028400,12.774,0.304 -1615029000,12.49,0.303 -1615029600,12.365,0.302 -1615030200,12.204,0.301 -1615030800,12.053,0.299 -1615031400,11.923,0.303 -1615032000,11.636,0.301 -1615032600,11.455,0.3 -1615033200,11.705,0.299 -1615033800,11.997,0.307 -1615034400,12.051,0.306 -1615035000,12.246,0.304 -1615035600,12.42,0.303 -1615036200,12.697,0.306 -1615036800,12.873,0.305 -1615037400,12.894,0.308 -1615038000,13.103,0.311 -1615038600,13.166,0.31 -1615039200,13.442,0.309 -1615039800,13.55,0.307 -1615040400,13.69,0.31 -1615041000,13.751,0.309 -1615041600,13.868,0.307 -1615042200,14.01,0.306 -1615042800,14.274,0.309 -1615043400,14.415,0.307 -1615044000,14.59,0.306 -1615044600,14.64,0.305 -1615045200,14.812,0.303 -1615045800,14.864,0.302 -1615046400,15.121,0.3 -1615047000,15.2,0.303 -1615047600,15.401,0.301 -1615048200,15.472,0.304 -1615048800,15.69,0.302 -1615049400,15.765,0.301 -1615050000,16.054,0.299 -1615050600,16.326,0.298 -1615051200,16.602,0.296 -1615051800,16.615,0.294 -1615052400,16.704,0.301 -1615053000,16.795,0.304 -1615053600,16.851,0.302 -1615054200,16.949,0.3 -1615054800,17.113,0.299 -1615055400,17.365,0.297 -1615056000,17.384,0.303 -1615056600,17.534,0.302 -1615057200,17.563,0.3 -1615057800,17.825,0.306 -1615058400,17.967,0.309 -1615059000,18.059,0.307 -1615059600,18.303,0.305 -1615060200,18.509,0.303 -1615060800,18.534,0.305 -1615061400,18.707,0.308 -1615062000,18.936,0.306 -1615062600,19.22,0.304 -1615063200,19.276,0.302 -1615063800,19.42,0.3 -1615064400,19.653,0.298 -1615065000,19.862,0.296 -1615065600,19.904,0.294 -1615066200,19.976,0.3 -1615066800,20.106,0.298 -1615067400,20.169,0.296 -1615068000,20.228,0.298 -1615068600,20.229,0.3 -1615069200,20.481,0.298 -1615069800,20.547,0.296 -1615070400,20.801,0.298 -1615071000,20.827,0.296 -1615071600,20.995,0.294 -1615072200,21.058,0.296 -1615072800,21.356,0.294 -1615073400,21.438,0.291 -1615074000,21.458,0.289 -1615074600,21.675,0.287 -1615075200,21.774,0.289 -1615075800,21.669,0.291 -1615076400,21.413,0.288 -1615077000,21.159,0.286 -1615077600,21.112,0.284 -1615078200,20.858,0.29 -1615078800,20.685,0.288 -1615079400,20.471,0.286 -1615080000,20.301,0.284 -1615080600,20.158,0.282 -1615081200,20.114,0.28 -1615081800,19.82,0.278 -1615082400,19.741,0.284 -1615083000,19.579,0.282 -1615083600,19.553,0.28 -1615084200,19.309,0.278 -1615084800,19.026,0.284 -1615085400,18.923,0.282 -1615086000,18.74,0.28 -1615086600,18.521,0.278 -1615087200,18.311,0.277 -1615087800,18.214,0.275 -1615088400,17.924,0.273 -1615089000,17.675,0.271 -1615089600,17.384,0.269 -1615090200,17.129,0.272 -1615090800,17.089,0.27 -1615091400,16.956,0.268 -1615092000,16.86,0.267 -1615092600,16.76,0.265 -1615093200,16.555,0.263 -1615093800,16.294,0.262 -1615094400,16.173,0.268 -1615095000,16.097,0.267 -1615095600,15.924,0.269 -1615096200,15.722,0.268 -1615096800,15.595,0.275 -1615097400,15.516,0.277 -1615098000,15.488,0.276 -1615098600,15.481,0.274 -1615099200,15.391,0.273 -1615099800,15.343,0.271 -1615100400,15.203,0.278 -1615101000,14.927,0.276 -1615101600,14.901,0.275 -1615102200,14.768,0.278 -1615102800,14.735,0.276 -1615103400,14.625,0.279 -1615104000,14.604,0.278 -1615104600,14.474,0.285 -1615105200,14.262,0.283 -1615105800,14.155,0.29 -1615106400,13.94,0.289 -1615107000,13.666,0.287 -1615107600,13.664,0.286 -1615108200,13.44,0.285 -1615108800,13.164,0.283 -1615109400,13.016,0.286 -1615110000,12.9,0.285 -1615110600,12.748,0.284 -1615111200,12.569,0.283 -1615111800,12.496,0.281 -1615112400,12.408,0.28 -1615113000,12.342,0.279 -1615113600,12.198,0.286 -1615114200,12.109,0.285 -1615114800,11.847,0.284 -1615115400,11.576,0.292 -1615116000,11.411,0.29 -1615116600,11.353,0.289 -1615117200,11.134,0.288 -1615117800,10.85,0.296 -1615118400,10.681,0.295 -1615119000,10.671,0.303 -1615119600,10.776,0.306 -1615120200,11.074,0.305 -1615120800,11.153,0.304 -1615121400,11.361,0.307 -1615122000,11.633,0.306 -1615122600,11.729,0.309 -1615123200,11.735,0.308 -1615123800,11.763,0.307 -1615124400,11.863,0.306 -1615125000,11.945,0.305 -1615125600,12.215,0.303 -1615126200,12.421,0.302 -1615126800,12.637,0.301 -1615127400,12.768,0.3 -1615128000,12.928,0.298 -1615128600,13.137,0.297 -1615129200,13.334,0.296 -1615129800,13.567,0.299 -1615130400,13.729,0.297 -1615131000,13.968,0.296 -1615131600,14.121,0.303 -1615132200,14.276,0.306 -1615132800,14.282,0.305 -1615133400,14.283,0.308 -1615134000,14.378,0.306 -1615134600,14.52,0.305 -1615135200,14.749,0.303 -1615135800,15.018,0.302 -1615136400,15.163,0.3 -1615137000,15.294,0.299 -1615137600,15.409,0.306 -1615138200,15.48,0.304 -1615138800,15.607,0.303 -1615139400,15.859,0.301 -1615140000,15.934,0.304 -1615140600,16.214,0.302 -1615141200,16.391,0.301 -1615141800,16.689,0.303 -1615142400,16.855,0.301 -1615143000,17.084,0.3 -1615143600,17.09,0.298 -1615144200,17.257,0.296 -1615144800,17.261,0.299 -1615145400,17.463,0.297 -1615146000,17.706,0.295 -1615146600,17.858,0.302 -1615147200,17.943,0.3 -1615147800,18.017,0.298 -1615148400,18.14,0.296 -1615149000,18.409,0.294 -1615149600,18.556,0.293 -1615150200,18.674,0.299 -1615150800,18.798,0.297 -1615151400,19.002,0.295 -1615152000,19.066,0.301 -1615152600,19.069,0.299 -1615153200,19.076,0.298 -1615153800,19.195,0.296 -1615154400,19.32,0.294 -1615155000,19.607,0.296 -1615155600,19.662,0.302 -1615156200,19.96,0.3 -1615156800,20.025,0.298 -1615157400,20.298,0.296 -1615158000,20.372,0.294 -1615158600,20.439,0.292 -1615159200,20.56,0.294 -1615159800,20.716,0.292 -1615160400,20.967,0.29 -1615161000,21.103,0.288 -1615161600,21.36,0.285 -1615162200,21.115,0.283 -1615162800,20.952,0.285 -1615163400,20.89,0.283 -1615164000,20.807,0.285 -1615164600,20.648,0.283 -1615165200,20.622,0.281 -1615165800,20.338,0.283 -1615166400,20.097,0.281 -1615167000,20.033,0.279 -1615167600,19.904,0.277 -1615168200,19.808,0.275 -1615168800,19.537,0.273 -1615169400,19.48,0.271 -1615170000,19.454,0.269 -1615170600,19.397,0.275 -1615171200,19.328,0.273 -1615171800,19.216,0.279 -1615172400,19.163,0.277 -1615173000,19.035,0.275 -1615173600,18.971,0.273 -1615174200,18.846,0.271 -1615174800,18.657,0.27 -1615175400,18.383,0.272 -1615176000,18.112,0.27 -1615176600,18.101,0.268 -1615177200,18.009,0.27 -1615177800,17.927,0.273 -1615178400,17.762,0.271 -1615179000,17.627,0.273 -1615179600,17.504,0.276 -1615180200,17.401,0.278 -1615180800,17.106,0.276 -1615181400,17.066,0.279 -1615182000,17.031,0.281 -1615182600,16.837,0.288 -1615183200,16.745,0.286 -1615183800,16.484,0.289 -1615184400,16.47,0.287 -1615185000,16.355,0.289 -1615185600,16.34,0.288 -1615186200,16.255,0.286 -1615186800,16.18,0.285 -1615187400,16.057,0.283 -1615188000,15.811,0.281 -1615188600,15.652,0.28 -1615189200,15.595,0.282 -1615189800,15.567,0.281 -1615190400,15.341,0.288 -1615191000,15.168,0.29 -1615191600,15.045,0.297 -1615192200,15.007,0.296 -1615192800,14.954,0.303 -1615193400,14.668,0.306 -1615194000,14.587,0.308 -1615194600,14.346,0.307 -1615195200,14.267,0.305 -1615195800,14.218,0.304 -1615196400,14.163,0.303 -1615197000,13.968,0.301 -1615197600,13.784,0.3 -1615198200,13.768,0.298 -1615198800,13.478,0.297 -1615199400,13.417,0.3 -1615200000,13.28,0.303 -1615200600,13.151,0.302 -1615201200,12.889,0.3 -1615201800,12.806,0.299 -1615202400,12.713,0.307 -1615203000,12.713,0.305 -1615203600,12.58,0.304 -1615204200,12.461,0.303 -1615204800,12.277,0.302 -1615205400,12.06,0.3 -1615206000,12.094,0.299 -1615206600,12.305,0.307 -1615207200,12.465,0.305 -1615207800,12.748,0.304 -1615208400,12.921,0.303 -1615209000,13.015,0.306 -1615209600,13.09,0.305 -1615210200,13.235,0.303 -1615210800,13.44,0.302 -1615211400,13.49,0.301 -1615212000,13.726,0.299 -1615212600,14.017,0.307 -1615213200,14.243,0.305 -1615213800,14.534,0.304 -1615214400,14.554,0.302 -1615215000,14.588,0.301 -1615215600,14.647,0.299 -1615216200,14.896,0.306 -1615216800,15.133,0.305 -1615217400,15.352,0.303 -1615218000,15.467,0.302 -1615218600,15.668,0.3 -1615219200,15.802,0.299 -1615219800,16.095,0.297 -1615220400,16.281,0.296 -1615221000,16.512,0.294 -1615221600,16.568,0.297 -1615222200,16.854,0.303 -1615222800,16.956,0.306 -1615223400,17.217,0.308 -1615224000,17.341,0.306 -1615224600,17.578,0.305 -1615225200,17.722,0.307 -1615225800,17.924,0.305 -1615226400,18.161,0.308 -1615227000,18.347,0.31 -1615227600,18.431,0.308 -1615228200,18.662,0.306 -1615228800,18.866,0.304 -1615229400,19.096,0.302 -1615230000,19.308,0.301 -1615230600,19.5,0.299 -1615231200,19.599,0.297 -1615231800,19.757,0.299 -1615232400,19.862,0.297 -1615233000,20.106,0.295 -1615233600,20.133,0.293 -1615234200,20.215,0.291 -1615234800,20.471,0.297 -1615235400,20.744,0.295 -1615236000,20.833,0.297 -1615236600,20.973,0.294 -1615237200,21.03,0.296 -1615237800,21.128,0.302 -1615238400,21.209,0.304 -1615239000,21.433,0.302 -1615239600,21.727,0.3 -1615240200,21.929,0.297 -1615240800,22.069,0.295 -1615241400,22.096,0.293 -1615242000,22.12,0.291 -1615242600,22.161,0.289 -1615243200,22.419,0.286 -1615243800,22.621,0.284 -1615244400,22.912,0.282 -1615245000,23.059,0.28 -1615245600,23.096,0.281 -1615246200,23.121,0.279 -1615246800,23.408,0.277 -1615247400,23.511,0.282 -1615248000,23.543,0.283 -1615248600,23.355,0.281 -1615249200,23.188,0.286 -1615249800,23.056,0.292 -1615250400,22.854,0.289 -1615251000,22.627,0.287 -1615251600,22.328,0.289 -1615252200,22.182,0.29 -1615252800,22.081,0.288 -1615253400,21.935,0.29 -1615254000,21.661,0.288 -1615254600,21.419,0.285 -1615255200,21.134,0.283 -1615255800,20.925,0.285 -1615256400,20.727,0.287 -1615257000,20.483,0.285 -1615257600,20.464,0.287 -1615258200,20.267,0.285 -1615258800,20.056,0.283 -1615259400,20.046,0.289 -1615260000,19.981,0.287 -1615260600,19.82,0.285 -1615261200,19.793,0.283 -1615261800,19.504,0.281 -1615262400,19.398,0.283 -1615263000,19.101,0.281 -1615263600,18.923,0.283 -1615264200,18.844,0.281 -1615264800,18.746,0.279 -1615265400,18.552,0.277 -1615266000,18.458,0.276 -1615266600,18.327,0.274 -1615267200,18.239,0.272 -1615267800,18.139,0.27 -1615268400,17.883,0.268 -1615269000,17.719,0.275 -1615269600,17.57,0.277 -1615270200,17.561,0.279 -1615270800,17.284,0.282 -1615271400,17.243,0.28 -1615272000,17.117,0.278 -1615272600,17.002,0.277 -1615273200,16.94,0.279 -1615273800,16.911,0.286 -1615274400,16.727,0.284 -1615275000,16.436,0.282 -1615275600,16.291,0.281 -1615276200,16.145,0.279 -1615276800,16.075,0.277 -1615277400,15.96,0.28 -1615278000,15.751,0.287 -1615278600,15.527,0.285 -1615279200,15.4,0.288 -1615279800,15.105,0.286 -1615280400,14.849,0.285 -1615281000,14.691,0.283 -1615281600,14.609,0.282 -1615282200,14.443,0.289 -1615282800,14.21,0.292 -1615283400,14.147,0.29 -1615284000,14.123,0.289 -1615284600,13.915,0.296 -1615285200,13.842,0.303 -1615285800,13.633,0.302 -1615286400,13.482,0.301 -1615287000,13.397,0.304 -1615287600,13.375,0.302 -1615288200,13.221,0.301 -1615288800,13.188,0.3 -1615289400,13.045,0.298 -1615290000,12.863,0.306 -1615290600,12.626,0.304 -1615291200,12.384,0.307 -1615291800,12.106,0.306 -1615292400,12.348,0.305 -1615293000,12.524,0.304 -1615293600,12.751,0.303 -1615294200,12.976,0.301 -1615294800,12.999,0.304 -1615295400,13.041,0.303 -1615296000,13.15,0.306 -1615296600,13.417,0.309 -1615297200,13.624,0.308 -1615297800,13.651,0.306 -1615298400,13.822,0.305 -1615299000,14.066,0.304 -1615299600,14.219,0.302 -1615300200,14.398,0.301 -1615300800,14.467,0.299 -1615301400,14.612,0.298 -1615302000,14.906,0.305 -1615302600,15.058,0.304 -1615303200,15.142,0.302 -1615303800,15.143,0.301 -1615304400,15.411,0.299 -1615305000,15.584,0.302 -1615305600,15.881,0.3 -1615306200,16.113,0.299 -1615306800,16.139,0.301 -1615307400,16.156,0.299 -1615308000,16.393,0.298 -1615308600,16.636,0.305 -1615309200,16.799,0.303 -1615309800,16.86,0.305 -1615310400,17.08,0.308 -1615311000,17.172,0.306 -1615311600,17.222,0.304 -1615312200,17.446,0.303 -1615312800,17.569,0.301 -1615313400,17.812,0.299 -1615314000,17.98,0.297 -1615314600,18.246,0.304 -1615315200,18.279,0.302 -1615315800,18.46,0.3 -1615316400,18.705,0.298 -1615317000,18.792,0.296 -1615317600,18.911,0.295 -1615318200,19.03,0.301 -1615318800,19.199,0.303 -1615319400,19.349,0.301 -1615320000,19.537,0.299 -1615320600,19.687,0.305 -1615321200,19.982,0.303 -1615321800,20.009,0.301 -1615322400,20.242,0.299 -1615323000,20.343,0.297 -1615323600,20.402,0.295 -1615324200,20.519,0.297 -1615324800,20.664,0.295 -1615325400,20.754,0.301 -1615326000,20.792,0.299 -1615326600,21.008,0.297 -1615327200,21.086,0.299 -1615327800,21.089,0.304 -1615328400,21.346,0.306 -1615329000,21.642,0.304 -1615329600,21.722,0.302 -1615330200,21.909,0.3 -1615330800,21.942,0.298 -1615331400,22.036,0.295 -1615332000,22.045,0.293 -1615332600,22.297,0.291 -1615333200,22.53,0.289 -1615333800,22.828,0.29 -1615334400,22.833,0.292 -1615335000,22.64,0.29 -1615335600,22.398,0.291 -1615336200,22.33,0.289 -1615336800,22.159,0.287 -1615337400,21.883,0.285 -1615338000,21.658,0.282 -1615338600,21.396,0.284 -1615339200,21.179,0.282 -1615339800,21.118,0.28 -1615340400,20.821,0.278 -1615341000,20.735,0.276 -1615341600,20.708,0.274 -1615342200,20.644,0.279 -1615342800,20.561,0.281 -1615343400,20.406,0.279 -1615344000,20.373,0.285 -1615344600,20.241,0.283 -1615345200,19.982,0.281 -1615345800,19.9,0.279 -1615346400,19.612,0.285 -1615347000,19.572,0.283 -1615347600,19.434,0.281 -1615348200,19.425,0.283 -1615348800,19.269,0.285 -1615349400,19.144,0.292 -1615350000,19.107,0.29 -1615350600,18.933,0.292 -1615351200,18.893,0.29 -1615351800,18.821,0.296 -1615352400,18.674,0.298 -1615353000,18.413,0.296 -1615353600,18.407,0.295 -1615354200,18.284,0.301 -1615354800,18.075,0.299 -1615355400,17.821,0.297 -1615356000,17.644,0.296 -1615356600,17.461,0.298 -1615357200,17.21,0.296 -1615357800,17.186,0.294 -1615358400,17.141,0.293 -1615359000,16.862,0.291 -1615359600,16.616,0.289 -1615360200,16.552,0.292 -1615360800,16.484,0.29 -1615361400,16.271,0.297 -1615362000,16.098,0.299 -1615362600,15.909,0.298 -1615363200,15.769,0.3 -1615363800,15.729,0.303 -1615364400,15.463,0.306 -1615365000,15.163,0.304 -1615365600,15.065,0.303 -1615366200,14.838,0.301 -1615366800,14.794,0.3 -1615367400,14.633,0.302 -1615368000,14.389,0.301 -1615368600,14.359,0.3 -1615369200,14.172,0.307 -1615369800,14.01,0.31 -1615370400,13.727,0.308 -1615371000,13.565,0.307 -1615371600,13.282,0.305 -1615372200,13.131,0.308 -1615372800,12.959,0.307 -1615373400,12.748,0.306 -1615374000,12.547,0.305 -1615374600,12.396,0.303 -1615375200,12.184,0.302 -1615375800,12.016,0.301 -1615376400,11.876,0.304 -1615377000,11.618,0.303 -1615377600,11.531,0.302 -1615378200,11.414,0.305 -1615378800,11.558,0.304 -1615379400,11.775,0.303 -1615380000,12.011,0.301 -1615380600,12.05,0.3 -1615381200,12.266,0.299 -1615381800,12.389,0.298 -1615382400,12.584,0.297 -1615383000,12.774,0.295 -1615383600,13.063,0.294 -1615384200,13.335,0.301 -1615384800,13.599,0.3 -1615385400,13.863,0.299 -1615386000,14.053,0.297 -1615386600,14.153,0.296 -1615387200,14.409,0.295 -1615387800,14.538,0.293 -1615388400,14.684,0.296 -1615389000,14.929,0.299 -1615389600,15.039,0.297 -1615390200,15.274,0.296 -1615390800,15.503,0.303 -1615391400,15.694,0.301 -1615392000,15.847,0.3 -1615392600,16.137,0.302 -1615393200,16.289,0.301 -1615393800,16.442,0.299 -1615394400,16.574,0.306 -1615395000,16.689,0.304 -1615395600,16.891,0.302 -1615396200,17.154,0.301 -1615396800,17.21,0.299 -1615397400,17.4,0.297 -1615398000,17.431,0.295 -1615398600,17.571,0.298 -1615399200,17.67,0.296 -1615399800,17.719,0.303 -1615400400,17.724,0.301 -1615401000,17.894,0.299 -1615401600,18.04,0.297 -1615402200,18.308,0.295 -1615402800,18.414,0.294 -1615403400,18.537,0.292 -1615404000,18.561,0.29 -1615404600,18.661,0.288 -1615405200,18.84,0.29 -1615405800,18.884,0.288 -1615406400,19.108,0.286 -1615407000,19.261,0.285 -1615407600,19.485,0.291 -1615408200,19.584,0.289 -1615408800,19.831,0.287 -1615409400,19.833,0.285 -1615410000,19.947,0.283 -1615410600,20.045,0.281 -1615411200,20.305,0.287 -1615411800,20.503,0.285 -1615412400,20.508,0.283 -1615413000,20.548,0.289 -1615413600,20.6,0.291 -1615414200,20.634,0.288 -1615414800,20.922,0.286 -1615415400,21.01,0.284 -1615416000,21.064,0.282 -1615416600,21.118,0.28 -1615417200,21.363,0.286 -1615417800,21.414,0.288 -1615418400,21.641,0.286 -1615419000,21.659,0.283 -1615419600,21.695,0.285 -1615420200,21.864,0.283 -1615420800,22.091,0.281 -1615421400,21.984,0.279 -1615422000,21.923,0.284 -1615422600,21.641,0.282 -1615423200,21.433,0.28 -1615423800,21.411,0.278 -1615424400,21.385,0.283 -1615425000,21.179,0.289 -1615425600,20.879,0.287 -1615426200,20.856,0.285 -1615426800,20.611,0.283 -1615427400,20.326,0.281 -1615428000,20.039,0.279 -1615428600,20.017,0.277 -1615429200,19.946,0.275 -1615429800,19.813,0.277 -1615430400,19.722,0.283 -1615431000,19.586,0.281 -1615431600,19.423,0.279 -1615432200,19.303,0.277 -1615432800,19.182,0.283 -1615433400,18.95,0.281 -1615434000,18.718,0.279 -1615434600,18.591,0.277 -1615435200,18.437,0.275 -1615435800,18.262,0.278 -1615436400,18.036,0.276 -1615437000,17.771,0.274 -1615437600,17.664,0.276 -1615438200,17.578,0.275 -1615438800,17.371,0.277 -1615439400,17.133,0.275 -1615440000,16.893,0.274 -1615440600,16.722,0.272 -1615441200,16.609,0.27 -1615441800,16.558,0.269 -1615442400,16.427,0.275 -1615443000,16.402,0.278 -1615443600,16.258,0.284 -1615444200,16.166,0.287 -1615444800,16.164,0.285 -1615445400,16.046,0.284 -1615446000,15.991,0.286 -1615446600,15.788,0.293 -1615447200,15.737,0.3 -1615447800,15.706,0.298 -1615448400,15.679,0.301 -1615449000,15.48,0.304 -1615449600,15.303,0.302 -1615450200,15.286,0.301 -1615450800,15.093,0.299 -1615451400,14.982,0.302 -1615452000,14.728,0.3 -1615452600,14.57,0.299 -1615453200,14.432,0.297 -1615453800,14.169,0.3 -1615454400,14.159,0.299 -1615455000,14.155,0.306 -1615455600,13.899,0.305 -1615456200,13.642,0.303 -1615456800,13.489,0.302 -1615457400,13.318,0.301 -1615458000,13.238,0.299 -1615458600,13.233,0.298 -1615459200,13.181,0.305 -1615459800,13.05,0.304 -1615460400,12.936,0.303 -1615461000,12.845,0.301 -1615461600,12.653,0.3 -1615462200,12.361,0.299 -1615462800,12.336,0.302 -1615463400,12.079,0.301 -1615464000,12.036,0.299 -1615464600,11.98,0.298 -1615465200,12.169,0.297 -1615465800,12.393,0.296 -1615466400,12.669,0.295 -1615467000,12.904,0.293 -1615467600,13.165,0.292 -1615468200,13.415,0.299 -1615468800,13.608,0.298 -1615469400,13.891,0.305 -1615470000,13.915,0.304 -1615470600,14.075,0.303 -1615471200,14.349,0.301 -1615471800,14.488,0.3 -1615472400,14.578,0.298 -1615473000,14.722,0.297 -1615473600,14.845,0.3 -1615474200,15.11,0.302 -1615474800,15.306,0.305 -1615475400,15.428,0.308 -1615476000,15.488,0.311 -1615476600,15.578,0.309 -1615477200,15.584,0.312 -1615477800,15.745,0.31 -1615478400,15.845,0.309 -1615479000,15.866,0.307 -1615479600,15.94,0.305 -1615480200,16.064,0.308 -1615480800,16.274,0.306 -1615481400,16.484,0.305 -1615482000,16.64,0.303 -1615482600,16.675,0.301 -1615483200,16.778,0.3 -1615483800,17.009,0.302 -1615484400,17.272,0.305 -1615485000,17.519,0.303 -1615485600,17.763,0.301 -1615486200,17.837,0.299 -1615486800,18.107,0.298 -1615487400,18.125,0.296 -1615488000,18.251,0.298 -1615488600,18.48,0.3 -1615489200,18.528,0.299 -1615489800,18.688,0.301 -1615490400,18.774,0.299 -1615491000,19.072,0.297 -1615491600,19.129,0.295 -1615492200,19.383,0.293 -1615492800,19.488,0.291 -1615493400,19.587,0.293 -1615494000,19.796,0.291 -1615494600,19.817,0.289 -1615495200,19.861,0.291 -1615495800,20.068,0.293 -1615496400,20.212,0.295 -1615497000,20.245,0.301 -1615497600,20.53,0.299 -1615498200,20.794,0.305 -1615498800,20.831,0.303 -1615499400,21.055,0.301 -1615500000,21.159,0.303 -1615500600,21.264,0.301 -1615501200,21.486,0.299 -1615501800,21.573,0.304 -1615502400,21.872,0.302 -1615503000,22.043,0.3 -1615503600,22.083,0.298 -1615504200,22.165,0.296 -1615504800,22.343,0.297 -1615505400,22.559,0.295 -1615506000,22.638,0.293 -1615506600,22.639,0.298 -1615507200,22.717,0.296 -1615507800,22.583,0.294 -1615508400,22.525,0.291 -1615509000,22.349,0.289 -1615509600,22.097,0.287 -1615510200,22.047,0.293 -1615510800,21.997,0.294 -1615511400,21.913,0.292 -1615512000,21.862,0.29 -1615512600,21.63,0.288 -1615513200,21.356,0.286 -1615513800,21.243,0.287 -1615514400,20.997,0.285 -1615515000,20.767,0.283 -1615515600,20.563,0.289 -1615516200,20.523,0.287 -1615516800,20.507,0.285 -1615517400,20.454,0.283 -1615518000,20.427,0.281 -1615518600,20.379,0.279 -1615519200,20.312,0.277 -1615519800,20.102,0.283 -1615520400,19.847,0.281 -1615521000,19.58,0.283 -1615521600,19.453,0.281 -1615522200,19.266,0.279 -1615522800,18.974,0.285 -1615523400,18.93,0.291 -1615524000,18.876,0.289 -1615524600,18.749,0.287 -1615525200,18.597,0.285 -1615525800,18.345,0.284 -1615526400,18.141,0.282 -1615527000,18.061,0.28 -1615527600,17.978,0.286 -1615528200,17.772,0.284 -1615528800,17.699,0.283 -1615529400,17.4,0.281 -1615530000,17.193,0.279 -1615530600,16.913,0.277 -1615531200,16.798,0.276 -1615531800,16.766,0.274 -1615532400,16.749,0.277 -1615533000,16.49,0.275 -1615533600,16.236,0.282 -1615534200,16.094,0.28 -1615534800,16.074,0.287 -1615535400,15.992,0.285 -1615536000,15.85,0.288 -1615536600,15.567,0.29 -1615537200,15.511,0.289 -1615537800,15.213,0.287 -1615538400,15.184,0.286 -1615539000,15.002,0.288 -1615539600,14.845,0.291 -1615540200,14.695,0.294 -1615540800,14.424,0.293 -1615541400,14.422,0.291 -1615542000,14.19,0.29 -1615542600,13.926,0.288 -1615543200,13.825,0.287 -1615543800,13.697,0.285 -1615544400,13.614,0.284 -1615545000,13.359,0.283 -1615545600,13.252,0.281 -1615546200,13.222,0.28 -1615546800,13.115,0.279 -1615547400,12.826,0.286 -1615548000,12.766,0.285 -1615548600,12.638,0.292 -1615549200,12.421,0.3 -1615549800,12.17,0.299 -1615550400,12.018,0.297 -1615551000,12.006,0.3 -1615551600,12.244,0.299 -1615552200,12.539,0.302 -1615552800,12.586,0.301 -1615553400,12.879,0.3 -1615554000,13.109,0.303 -1615554600,13.248,0.302 -1615555200,13.293,0.305 -1615555800,13.577,0.303 -1615556400,13.742,0.302 -1615557000,13.799,0.305 -1615557600,13.973,0.308 -1615558200,14.16,0.306 -1615558800,14.261,0.305 -1615559400,14.352,0.304 -1615560000,14.373,0.302 -1615560600,14.536,0.305 -1615561200,14.669,0.308 -1615561800,14.875,0.306 -1615562400,15.093,0.305 -1615563000,15.339,0.303 -1615563600,15.392,0.302 -1615564200,15.593,0.3 -1615564800,15.646,0.299 -1615565400,15.892,0.306 -1615566000,15.982,0.304 -1615566600,16.014,0.302 -1615567200,16.134,0.301 -1615567800,16.368,0.299 -1615568400,16.433,0.306 -1615569000,16.732,0.304 -1615569600,16.86,0.303 -1615570200,16.971,0.301 -1615570800,17.225,0.299 -1615571400,17.251,0.298 -1615572000,17.418,0.3 -1615572600,17.642,0.298 -1615573200,17.811,0.296 -1615573800,17.838,0.295 -1615574400,17.927,0.301 -1615575000,18.132,0.303 -1615575600,18.134,0.302 -1615576200,18.192,0.3 -1615576800,18.285,0.298 -1615577400,18.48,0.296 -1615578000,18.576,0.298 -1615578600,18.631,0.297 -1615579200,18.713,0.295 -1615579800,18.824,0.297 -1615580400,19.087,0.295 -1615581000,19.191,0.297 -1615581600,19.263,0.295 -1615582200,19.304,0.297 -1615582800,19.361,0.295 -1615583400,19.598,0.301 -1615584000,19.636,0.304 -1615584600,19.656,0.302 -1615585200,19.879,0.304 -1615585800,19.905,0.302 -1615586400,20.132,0.304 -1615587000,20.16,0.306 -1615587600,20.412,0.304 -1615588200,20.47,0.302 -1615588800,20.604,0.3 -1615589400,20.856,0.297 -1615590000,21.123,0.295 -1615590600,21.281,0.293 -1615591200,21.456,0.291 -1615591800,21.516,0.289 -1615592400,21.611,0.287 -1615593000,21.734,0.285 -1615593600,21.764,0.283 -1615594200,21.67,0.28 -1615594800,21.484,0.278 -1615595400,21.347,0.276 -1615596000,21.132,0.282 -1615596600,20.834,0.28 -1615597200,20.603,0.282 -1615597800,20.326,0.279 -1615598400,20.294,0.277 -1615599000,20.018,0.275 -1615599600,19.77,0.277 -1615600200,19.57,0.283 -1615600800,19.491,0.281 -1615601400,19.431,0.28 -1615602000,19.245,0.282 -1615602600,19.229,0.288 -1615603200,19.004,0.286 -1615603800,18.769,0.284 -1615604400,18.656,0.282 -1615605000,18.426,0.28 -1615605600,18.241,0.278 -1615606200,18.105,0.285 -1615606800,17.882,0.283 -1615607400,17.812,0.289 -1615608000,17.659,0.288 -1615608600,17.489,0.286 -1615609200,17.194,0.284 -1615609800,17.186,0.286 -1615610400,17.013,0.289 -1615611000,16.792,0.295 -1615611600,16.656,0.294 -1615612200,16.427,0.292 -1615612800,16.372,0.29 -1615613400,16.255,0.297 -1615614000,15.994,0.296 -1615614600,15.815,0.294 -1615615200,15.562,0.297 -1615615800,15.285,0.304 -1615616400,15.247,0.302 -1615617000,15.103,0.3 -1615617600,14.868,0.299 -1615618200,14.586,0.297 -1615618800,14.465,0.305 -1615619400,14.3,0.303 -1615620000,14.17,0.302 -1615620600,13.946,0.305 -1615621200,13.857,0.307 -1615621800,13.726,0.306 -1615622400,13.704,0.305 -1615623000,13.597,0.303 -1615623600,13.374,0.302 -1615624200,13.177,0.301 -1615624800,13.077,0.299 -1615625400,12.792,0.298 -1615626000,12.503,0.297 -1615626600,12.382,0.304 -1615627200,12.235,0.303 -1615627800,12.129,0.302 -1615628400,11.872,0.305 -1615629000,11.781,0.304 -1615629600,11.728,0.303 -1615630200,11.581,0.301 -1615630800,11.379,0.3 -1615631400,11.146,0.299 -1615632000,10.864,0.298 -1615632600,10.589,0.297 -1615633200,10.344,0.296 -1615633800,10.162,0.295 -1615634400,10.004,0.294 -1615635000,9.707,0.293 -1615635600,9.539,0.301 -1615636200,9.458,0.3 -1615636800,9.383,0.303 -1615637400,9.31,0.303 -1615638000,9.326,0.302 -1615638600,9.393,0.301 -1615639200,9.68,0.3 -1615639800,9.93,0.299 -1615640400,9.937,0.298 -1615641000,10.113,0.301 -1615641600,10.327,0.3 -1615642200,10.442,0.299 -1615642800,10.569,0.298 -1615643400,10.812,0.297 -1615644000,10.958,0.296 -1615644600,11.161,0.299 -1615645200,11.336,0.298 -1615645800,11.389,0.297 -1615646400,11.52,0.305 -1615647000,11.596,0.304 -1615647600,11.778,0.303 -1615648200,11.812,0.306 -1615648800,11.947,0.305 -1615649400,12.167,0.308 -1615650000,12.352,0.311 -1615650600,12.39,0.314 -1615651200,12.645,0.313 -1615651800,12.763,0.312 -1615652400,12.916,0.31 -1615653000,13.063,0.313 -1615653600,13.084,0.316 -1615654200,13.196,0.315 -1615654800,13.238,0.314 -1615655400,13.265,0.313 -1615656000,13.521,0.316 -1615656600,13.751,0.314 -1615657200,14.0,0.313 -1615657800,14.25,0.316 -1615658400,14.268,0.314 -1615659000,14.294,0.313 -1615659600,14.512,0.311 -1615660200,14.786,0.31 -1615660800,14.846,0.309 -1615661400,14.934,0.307 -1615662000,14.966,0.306 -1615662600,15.102,0.304 -1615663200,15.321,0.303 -1615663800,15.406,0.305 -1615664400,15.594,0.304 -1615665000,15.609,0.302 -1615665600,15.89,0.301 -1615666200,15.903,0.299 -1615666800,16.07,0.297 -1615667400,16.301,0.296 -1615668000,16.333,0.294 -1615668600,16.431,0.293 -1615669200,16.617,0.291 -1615669800,16.797,0.298 -1615670400,17.066,0.296 -1615671000,17.104,0.294 -1615671600,17.317,0.292 -1615672200,17.585,0.291 -1615672800,17.846,0.297 -1615673400,18.128,0.295 -1615674000,18.405,0.294 -1615674600,18.51,0.292 -1615675200,18.617,0.29 -1615675800,18.877,0.288 -1615676400,19.076,0.286 -1615677000,19.176,0.284 -1615677600,19.44,0.282 -1615678200,19.695,0.28 -1615678800,19.792,0.286 -1615679400,19.883,0.284 -1615680000,20.108,0.29 -1615680600,19.953,0.292 -1615681200,19.772,0.29 -1615681800,19.561,0.297 -1615682400,19.342,0.295 -1615683000,19.2,0.293 -1615683600,19.157,0.291 -1615684200,18.971,0.293 -1615684800,18.794,0.291 -1615685400,18.731,0.289 -1615686000,18.622,0.287 -1615686600,18.43,0.289 -1615687200,18.319,0.288 -1615687800,18.087,0.286 -1615688400,17.978,0.284 -1615689000,17.774,0.286 -1615689600,17.742,0.284 -1615690200,17.55,0.283 -1615690800,17.329,0.285 -1615691400,17.24,0.283 -1615692000,17.027,0.282 -1615692600,16.73,0.28 -1615693200,16.462,0.278 -1615693800,16.243,0.277 -1615694400,15.993,0.283 -1615695000,15.85,0.282 -1615695600,15.808,0.289 -1615696200,15.587,0.287 -1615696800,15.416,0.285 -1615697400,15.29,0.288 -1615698000,15.229,0.287 -1615698600,15.143,0.294 -1615699200,15.034,0.3 -1615699800,14.785,0.299 -1615700400,14.659,0.298 -1615701000,14.59,0.296 -1615701600,14.469,0.299 -1615702200,14.425,0.306 -1615702800,14.192,0.305 -1615703400,13.943,0.303 -1615704000,13.778,0.306 -1615704600,13.608,0.305 -1615705200,13.576,0.303 -1615705800,13.31,0.306 -1615706400,13.163,0.305 -1615707000,13.119,0.308 -1615707600,12.88,0.307 -1615708200,12.843,0.305 -1615708800,12.638,0.304 -1615709400,12.414,0.303 -1615710000,12.388,0.302 -1615710600,12.16,0.3 -1615711200,11.877,0.299 -1615711800,11.62,0.307 -1615712400,11.399,0.306 -1615713000,11.219,0.304 -1615713600,11.171,0.303 -1615714200,11.122,0.302 -1615714800,10.871,0.301 -1615715400,10.639,0.3 -1615716000,10.55,0.303 -1615716600,10.368,0.302 -1615717200,10.328,0.301 -1615717800,10.194,0.3 -1615718400,10.057,0.299 -1615719000,9.93,0.303 -1615719600,9.793,0.302 -1615720200,9.684,0.301 -1615720800,9.426,0.3 -1615721400,9.142,0.299 -1615722000,9.025,0.298 -1615722600,8.981,0.297 -1615723200,8.979,0.301 -1615723800,8.834,0.3 -1615724400,8.875,0.299 -1615725000,9.096,0.298 -1615725600,9.288,0.306 -1615726200,9.373,0.305 -1615726800,9.424,0.304 -1615727400,9.674,0.303 -1615728000,9.915,0.307 -1615728600,10.021,0.306 -1615729200,10.189,0.305 -1615729800,10.465,0.304 -1615730400,10.699,0.303 -1615731000,10.862,0.302 -1615731600,11.053,0.301 -1615732200,11.212,0.3 -1615732800,11.365,0.307 -1615733400,11.523,0.306 -1615734000,11.623,0.309 -1615734600,11.811,0.308 -1615735200,12.105,0.307 -1615735800,12.375,0.31 -1615736400,12.608,0.309 -1615737000,12.632,0.308 -1615737600,12.662,0.307 -1615738200,12.872,0.31 -1615738800,12.953,0.308 -1615739400,12.957,0.307 -1615740000,13.244,0.31 -1615740600,13.382,0.309 -1615741200,13.65,0.307 -1615741800,13.747,0.306 -1615742400,13.989,0.305 -1615743000,14.133,0.303 -1615743600,14.215,0.302 -1615744200,14.408,0.301 -1615744800,14.591,0.299 -1615745400,14.601,0.298 -1615746000,14.727,0.296 -1615746600,14.755,0.299 -1615747200,14.791,0.297 -1615747800,14.921,0.3 -1615748400,15.168,0.299 -1615749000,15.338,0.306 -1615749600,15.574,0.308 -1615750200,15.64,0.307 -1615750800,15.908,0.305 -1615751400,16.079,0.304 -1615752000,16.332,0.306 -1615752600,16.625,0.305 -1615753200,16.883,0.303 -1615753800,17.126,0.301 -1615754400,17.309,0.3 -1615755000,17.494,0.298 -1615755600,17.616,0.296 -1615756200,17.691,0.294 -1615756800,17.706,0.297 -1615757400,17.779,0.295 -1615758000,17.789,0.293 -1615758600,18.066,0.291 -1615759200,18.189,0.29 -1615759800,18.48,0.296 -1615760400,18.746,0.298 -1615761000,19.011,0.304 -1615761600,19.056,0.303 -1615762200,19.161,0.301 -1615762800,19.456,0.299 -1615763400,19.721,0.297 -1615764000,19.775,0.295 -1615764600,19.89,0.297 -1615765200,19.911,0.295 -1615765800,20.184,0.293 -1615766400,20.35,0.291 -1615767000,20.072,0.293 -1615767600,19.795,0.291 -1615768200,19.767,0.297 -1615768800,19.504,0.303 -1615769400,19.212,0.305 -1615770000,19.135,0.303 -1615770600,18.916,0.301 -1615771200,18.796,0.303 -1615771800,18.583,0.305 -1615772400,18.315,0.308 -1615773000,18.232,0.306 -1615773600,18.003,0.304 -1615774200,17.737,0.306 -1615774800,17.447,0.305 -1615775400,17.442,0.303 -1615776000,17.151,0.301 -1615776600,17.137,0.299 -1615777200,16.843,0.298 -1615777800,16.581,0.304 -1615778400,16.449,0.303 -1615779000,16.168,0.305 -1615779600,15.908,0.303 -1615780200,15.665,0.302 -1615780800,15.664,0.305 -1615781400,15.653,0.307 -1615782000,15.537,0.306 -1615782600,15.363,0.304 -1615783200,15.282,0.303 -1615783800,15.031,0.305 -1615784400,14.785,0.304 -1615785000,14.509,0.307 -1615785600,14.504,0.305 -1615786200,14.205,0.304 -1615786800,14.157,0.302 -1615787400,14.021,0.305 -1615788000,13.775,0.304 -1615788600,13.476,0.302 -1615789200,13.2,0.301 -1615789800,12.989,0.3 -1615790400,12.821,0.303 -1615791000,12.785,0.301 -1615791600,12.546,0.3 -1615792200,12.34,0.299 -1615792800,12.08,0.298 -1615793400,11.933,0.301 -1615794000,11.889,0.3 -1615794600,11.782,0.303 -1615795200,11.594,0.302 -1615795800,11.499,0.305 -1615796400,11.29,0.308 -1615797000,11.003,0.307 -1615797600,10.778,0.306 -1615798200,10.6,0.305 -1615798800,10.468,0.304 -1615799400,10.352,0.303 -1615800000,10.083,0.306 -1615800600,10.043,0.305 -1615801200,9.759,0.304 -1615801800,9.599,0.303 -1615802400,9.557,0.302 -1615803000,9.443,0.301 -1615803600,9.397,0.3 -1615804200,9.316,0.299 -1615804800,9.227,0.299 -1615805400,8.991,0.298 -1615806000,8.947,0.297 -1615806600,8.728,0.305 -1615807200,8.518,0.304 -1615807800,8.35,0.303 -1615808400,8.313,0.302 -1615809000,8.123,0.302 -1615809600,8.083,0.305 -1615810200,7.946,0.309 -1615810800,8.0,0.308 -1615811400,8.168,0.307 -1615812000,8.198,0.307 -1615812600,8.213,0.31 -1615813200,8.507,0.314 -1615813800,8.771,0.313 -1615814400,8.87,0.317 -1615815000,9.072,0.316 -1615815600,9.152,0.315 -1615816200,9.379,0.314 -1615816800,9.507,0.318 -1615817400,9.73,0.317 -1615818000,10.003,0.316 -1615818600,10.228,0.315 -1615819200,10.257,0.314 -1615819800,10.378,0.313 -1615820400,10.438,0.312 -1615821000,10.576,0.311 -1615821600,10.587,0.314 -1615822200,10.853,0.313 -1615822800,10.955,0.312 -1615823400,11.04,0.311 -1615824000,11.078,0.31 -1615824600,11.149,0.309 -1615825200,11.425,0.312 -1615825800,11.636,0.311 -1615826400,11.85,0.31 -1615827000,12.064,0.309 -1615827600,12.12,0.312 -1615828200,12.29,0.311 -1615828800,12.535,0.309 -1615829400,12.804,0.308 -1615830000,12.994,0.307 -1615830600,13.088,0.306 -1615831200,13.375,0.304 -1615831800,13.456,0.303 -1615832400,13.66,0.302 -1615833000,13.675,0.3 -1615833600,13.956,0.299 -1615834200,14.03,0.297 -1615834800,14.288,0.296 -1615835400,14.471,0.303 -1615836000,14.744,0.302 -1615836600,14.957,0.3 -1615837200,14.959,0.299 -1615837800,15.089,0.297 -1615838400,15.106,0.296 -1615839000,15.124,0.294 -1615839600,15.278,0.301 -1615840200,15.342,0.3 -1615840800,15.359,0.298 -1615841400,15.64,0.305 -1615842000,15.838,0.304 -1615842600,15.944,0.306 -1615843200,16.199,0.305 -1615843800,16.216,0.303 -1615844400,16.344,0.301 -1615845000,16.45,0.3 -1615845600,16.556,0.298 -1615846200,16.83,0.305 -1615846800,16.964,0.303 -1615847400,17.11,0.301 -1615848000,17.159,0.304 -1615848600,17.399,0.302 -1615849200,17.412,0.3 -1615849800,17.49,0.299 -1615850400,17.779,0.305 -1615851000,17.851,0.303 -1615851600,18.024,0.302 -1615852200,18.203,0.3 -1615852800,18.382,0.302 -1615853400,18.321,0.304 -1615854000,18.312,0.302 -1615854600,18.292,0.301 -1615855200,18.251,0.299 -1615855800,18.01,0.297 -1615856400,17.749,0.295 -1615857000,17.577,0.293 -1615857600,17.56,0.292 -1615858200,17.537,0.29 -1615858800,17.366,0.288 -1615859400,17.237,0.29 -1615860000,17.198,0.289 -1615860600,17.083,0.287 -1615861200,16.799,0.294 -1615861800,16.772,0.292 -1615862400,16.703,0.29 -1615863000,16.513,0.289 -1615863600,16.464,0.291 -1615864200,16.265,0.289 -1615864800,16.098,0.292 -1615865400,16.005,0.29 -1615866000,15.721,0.289 -1615866600,15.492,0.291 -1615867200,15.441,0.29 -1615867800,15.23,0.297 -1615868400,15.033,0.295 -1615869000,14.892,0.294 -1615869600,14.615,0.292 -1615870200,14.373,0.291 -1615870800,14.356,0.289 -1615871400,14.292,0.288 -1615872000,13.994,0.295 -1615872600,13.799,0.302 -1615873200,13.552,0.301 -1615873800,13.314,0.3 -1615874400,13.293,0.298 -1615875000,13.22,0.297 -1615875600,13.197,0.296 -1615876200,13.056,0.294 -1615876800,12.927,0.293 -1615877400,12.921,0.292 -1615878000,12.677,0.299 -1615878600,12.523,0.298 -1615879200,12.39,0.297 -1615879800,12.333,0.304 -1615880400,12.31,0.303 -1615881000,12.14,0.302 -1615881600,12.071,0.3 -1615882200,11.948,0.299 -1615882800,11.92,0.298 -1615883400,11.652,0.306 -1615884000,11.374,0.309 -1615884600,11.128,0.308 -1615885200,10.859,0.307 -1615885800,10.813,0.306 -1615886400,10.619,0.304 -1615887000,10.575,0.303 -1615887600,10.474,0.302 -1615888200,10.205,0.301 -1615888800,10.102,0.305 -1615889400,10.091,0.304 -1615890000,9.863,0.307 -1615890600,9.792,0.306 -1615891200,9.753,0.305 -1615891800,9.563,0.304 -1615892400,9.543,0.303 -1615893000,9.357,0.302 -1615893600,9.118,0.301 -1615894200,8.837,0.305 -1615894800,8.698,0.304 -1615895400,8.628,0.303 -1615896000,8.62,0.302 -1615896600,8.54,0.302 -1615897200,8.729,0.301 -1615897800,8.839,0.3 -1615898400,9.074,0.304 -1615899000,9.134,0.303 -1615899600,9.167,0.302 -1615900200,9.405,0.301 -1615900800,9.435,0.3 -1615901400,9.514,0.299 -1615902000,9.807,0.307 -1615902600,9.926,0.311 -1615903200,9.933,0.31 -1615903800,10.11,0.309 -1615904400,10.155,0.308 -1615905000,10.199,0.307 -1615905600,10.206,0.306 -1615906200,10.395,0.305 -1615906800,10.514,0.303 -1615907400,10.801,0.302 -1615908000,10.881,0.301 -1615908600,11.091,0.3 -1615909200,11.114,0.299 -1615909800,11.139,0.298 -1615910400,11.338,0.306 -1615911000,11.601,0.305 -1615911600,11.607,0.308 -1615912200,11.785,0.307 -1615912800,12.077,0.306 -1615913400,12.103,0.309 -1615914000,12.379,0.308 -1615914600,12.653,0.311 -1615915200,12.786,0.309 -1615915800,12.916,0.308 -1615916400,12.974,0.307 -1615917000,13.258,0.306 -1615917600,13.452,0.304 -1615918200,13.733,0.307 -1615918800,13.841,0.306 -1615919400,13.976,0.304 -1615920000,14.243,0.307 -1615920600,14.302,0.306 -1615921200,14.411,0.305 -1615921800,14.539,0.303 -1615922400,14.679,0.302 -1615923000,14.821,0.3 -1615923600,14.902,0.299 -1615924200,14.947,0.297 -1615924800,15.19,0.296 -1615925400,15.254,0.294 -1615926000,15.407,0.293 -1615926600,15.651,0.291 -1615927200,15.722,0.298 -1615927800,15.725,0.296 -1615928400,16.01,0.303 -1615929000,16.163,0.302 -1615929600,16.33,0.3 -1615930200,16.443,0.298 -1615930800,16.687,0.305 -1615931400,16.716,0.303 -1615932000,16.945,0.306 -1615932600,17.223,0.304 -1615933200,17.474,0.307 -1615933800,17.711,0.305 -1615934400,17.917,0.303 -1615935000,17.983,0.301 -1615935600,18.025,0.304 -1615936200,18.031,0.302 -1615936800,18.132,0.3 -1615937400,18.145,0.298 -1615938000,18.173,0.301 -1615938600,18.452,0.299 -1615939200,18.659,0.305 -1615939800,18.527,0.303 -1615940400,18.472,0.301 -1615941000,18.438,0.299 -1615941600,18.271,0.298 -1615942200,18.194,0.3 -1615942800,18.172,0.298 -1615943400,17.948,0.296 -1615944000,17.661,0.299 -1615944600,17.596,0.297 -1615945200,17.48,0.299 -1615945800,17.373,0.297 -1615946400,17.244,0.296 -1615947000,16.979,0.294 -1615947600,16.921,0.301 -1615948200,16.7,0.303 -1615948800,16.63,0.301 -1615949400,16.455,0.3 -1615950000,16.269,0.298 -1615950600,16.159,0.301 -1615951200,16.004,0.299 -1615951800,15.831,0.297 -1615952400,15.823,0.304 -1615953000,15.757,0.303 -1615953600,15.755,0.301 -1615954200,15.531,0.299 -1615954800,15.444,0.298 -1615955400,15.443,0.296 -1615956000,15.221,0.303 -1615956600,15.108,0.302 -1615957200,15.091,0.3 -1615957800,15.036,0.303 -1615958400,14.778,0.301 -1615959000,14.718,0.3 -1615959600,14.632,0.307 -1615960200,14.388,0.306 -1615960800,14.295,0.304 -1615961400,14.009,0.303 -1615962000,13.726,0.301 -1615962600,13.515,0.3 -1615963200,13.492,0.299 -1615963800,13.349,0.306 -1615964400,13.311,0.305 -1615965000,13.072,0.303 -1615965600,12.844,0.306 -1615966200,12.715,0.305 -1615966800,12.465,0.304 -1615967400,12.39,0.302 -1615968000,12.238,0.301 -1615968600,12.061,0.3 -1615969200,11.915,0.303 -1615969800,11.685,0.302 -1615970400,11.428,0.301 -1615971000,11.406,0.3 -1615971600,11.357,0.307 -1615972200,11.242,0.306 -1615972800,10.961,0.305 -1615973400,10.908,0.304 -1615974000,10.785,0.303 -1615974600,10.603,0.302 -1615975200,10.491,0.301 -1615975800,10.238,0.3 -1615976400,10.065,0.299 -1615977000,9.811,0.298 -1615977600,9.728,0.301 -1615978200,9.495,0.305 -1615978800,9.445,0.304 -1615979400,9.291,0.303 -1615980000,9.043,0.302 -1615980600,8.85,0.306 -1615981200,8.606,0.309 -1615981800,8.318,0.313 -1615982400,8.231,0.312 -1615983000,7.966,0.311 -1615983600,8.253,0.311 -1615984200,8.378,0.314 -1615984800,8.448,0.313 -1615985400,8.608,0.313 -1615986000,8.631,0.312 -1615986600,8.744,0.311 -1615987200,8.949,0.31 -1615987800,9.081,0.309 -1615988400,9.299,0.313 -1615989000,9.475,0.312 -1615989600,9.481,0.311 -1615990200,9.566,0.31 -1615990800,9.803,0.309 -1615991400,9.953,0.308 -1615992000,10.226,0.307 -1615992600,10.487,0.31 -1615993200,10.697,0.309 -1615993800,10.921,0.308 -1615994400,11.063,0.307 -1615995000,11.081,0.306 -1615995600,11.346,0.305 -1615996200,11.557,0.304 -1615996800,11.59,0.303 -1615997400,11.805,0.302 -1615998000,12.082,0.3 -1615998600,12.262,0.304 -1615999200,12.275,0.302 -1615999800,12.28,0.301 -1616000400,12.556,0.3 -1616001000,12.844,0.299 -1616001600,12.973,0.297 -1616002200,13.087,0.3 -1616002800,13.293,0.299 -1616003400,13.361,0.298 -1616004000,13.567,0.301 -1616004600,13.76,0.304 -1616005200,13.933,0.307 -1616005800,14.15,0.305 -1616006400,14.387,0.304 -1616007000,14.557,0.302 -1616007600,14.578,0.301 -1616008200,14.698,0.3 -1616008800,14.872,0.298 -1616009400,15.124,0.297 -1616010000,15.408,0.295 -1616010600,15.524,0.294 -1616011200,15.675,0.292 -1616011800,15.926,0.299 -1616012400,16.075,0.297 -1616013000,16.164,0.296 -1616013600,16.334,0.302 -1616014200,16.444,0.301 -1616014800,16.511,0.299 -1616015400,16.716,0.302 -1616016000,16.878,0.3 -1616016600,17.095,0.298 -1616017200,17.389,0.305 -1616017800,17.511,0.303 -1616018400,17.546,0.301 -1616019000,17.644,0.304 -1616019600,17.767,0.302 -1616020200,17.96,0.304 -1616020800,18.228,0.303 -1616021400,18.527,0.301 -1616022000,18.825,0.299 -1616022600,18.999,0.297 -1616023200,19.124,0.303 -1616023800,19.398,0.301 -1616024400,19.696,0.299 -1616025000,19.807,0.297 -1616025600,19.927,0.295 -1616026200,19.767,0.297 -1616026800,19.583,0.295 -1616027400,19.293,0.302 -1616028000,19.131,0.3 -1616028600,19.0,0.298 -1616029200,18.964,0.304 -1616029800,18.814,0.302 -1616030400,18.6,0.3 -1616031000,18.514,0.298 -1616031600,18.301,0.296 -1616032200,18.207,0.295 -1616032800,17.984,0.297 -1616033400,17.918,0.295 -1616034000,17.667,0.293 -1616034600,17.506,0.291 -1616035200,17.495,0.29 -1616035800,17.203,0.288 -1616036400,17.001,0.295 -1616037000,16.808,0.301 -1616037600,16.544,0.299 -1616038200,16.361,0.298 -1616038800,16.092,0.305 -1616039400,16.038,0.303 -1616040000,16.015,0.301 -1616040600,15.915,0.3 -1616041200,15.815,0.307 -1616041800,15.643,0.305 -1616042400,15.51,0.303 -1616043000,15.453,0.302 -1616043600,15.329,0.3 -1616044200,15.123,0.299 -1616044800,14.911,0.306 -1616045400,14.629,0.304 -1616046000,14.626,0.303 -1616046600,14.335,0.306 -1616047200,14.116,0.304 -1616047800,13.911,0.307 -1616048400,13.629,0.306 -1616049000,13.538,0.309 -1616049600,13.366,0.312 -1616050200,13.27,0.31 -1616050800,12.995,0.309 -1616051400,12.821,0.308 -1616052000,12.762,0.306 -1616052600,12.566,0.305 -1616053200,12.46,0.304 -1616053800,12.386,0.303 -1616054400,12.148,0.301 -1616055000,12.056,0.304 -1616055600,11.793,0.303 -1616056200,11.747,0.302 -1616056800,11.501,0.301 -1616057400,11.496,0.3 -1616058000,11.263,0.303 -1616058600,11.025,0.302 -1616059200,10.755,0.301 -1616059800,10.726,0.3 -1616060400,10.516,0.299 -1616061000,10.238,0.298 -1616061600,9.956,0.297 -1616062200,9.761,0.296 -1616062800,9.53,0.295 -1616063400,9.345,0.294 -1616064000,9.216,0.293 -1616064600,9.108,0.292 -1616065200,8.811,0.3 -1616065800,8.548,0.299 -1616066400,8.314,0.303 -1616067000,8.155,0.302 -1616067600,7.959,0.301 -1616068200,7.889,0.305 -1616068800,7.852,0.309 -1616069400,7.757,0.308 -1616070000,7.76,0.307 -1616070600,7.986,0.306 -1616071200,8.055,0.306 -1616071800,8.332,0.305 -1616072400,8.587,0.304 -1616073000,8.604,0.308 -1616073600,8.676,0.307 -1616074200,8.738,0.306 -1616074800,8.969,0.305 -1616075400,9.154,0.304 -1616076000,9.409,0.303 -1616076600,9.532,0.302 -1616077200,9.603,0.306 -1616077800,9.831,0.305 -1616078400,10.039,0.304 -1616079000,10.17,0.303 -1616079600,10.236,0.302 -1616080200,10.468,0.305 -1616080800,10.472,0.304 -1616081400,10.622,0.303 -1616082000,10.712,0.302 -1616082600,10.909,0.306 -1616083200,10.915,0.305 -1616083800,11.155,0.303 -1616084400,11.19,0.302 -1616085000,11.485,0.301 -1616085600,11.489,0.3 -1616086200,11.519,0.299 -1616086800,11.583,0.307 -1616087400,11.73,0.305 -1616088000,11.855,0.309 -1616088600,12.049,0.312 -1616089200,12.09,0.311 -1616089800,12.122,0.31 -1616090400,12.188,0.313 -1616091000,12.39,0.312 -1616091600,12.661,0.315 -1616092200,12.678,0.318 -1616092800,12.805,0.316 -1616093400,13.028,0.315 -1616094000,13.203,0.314 -1616094600,13.396,0.313 -1616095200,13.51,0.311 -1616095800,13.557,0.314 -1616096400,13.832,0.313 -1616097000,13.918,0.311 -1616097600,13.932,0.31 -1616098200,14.175,0.309 -1616098800,14.362,0.307 -1616099400,14.495,0.306 -1616100000,14.658,0.304 -1616100600,14.896,0.303 -1616101200,14.994,0.301 -1616101800,15.117,0.304 -1616102400,15.274,0.303 -1616103000,15.463,0.301 -1616103600,15.488,0.3 -1616104200,15.507,0.298 -1616104800,15.755,0.296 -1616105400,15.888,0.295 -1616106000,16.036,0.293 -1616106600,16.276,0.292 -1616107200,16.551,0.298 -1616107800,16.584,0.297 -1616108400,16.615,0.295 -1616109000,16.771,0.298 -1616109600,16.879,0.296 -1616110200,17.099,0.303 -1616110800,17.212,0.305 -1616111400,17.232,0.303 -1616112000,17.402,0.302 -1616112600,17.244,0.3 -1616113200,17.131,0.298 -1616113800,17.104,0.305 -1616114400,16.936,0.303 -1616115000,16.803,0.301 -1616115600,16.647,0.3 -1616116200,16.473,0.298 -1616116800,16.209,0.305 -1616117400,16.15,0.303 -1616118000,15.929,0.306 -1616118600,15.789,0.304 -1616119200,15.718,0.302 -1616119800,15.563,0.301 -1616120400,15.473,0.299 -1616121000,15.355,0.306 -1616121600,15.26,0.305 -1616122200,15.017,0.303 -1616122800,14.777,0.302 -1616123400,14.752,0.3 -1616124000,14.554,0.303 -1616124600,14.431,0.302 -1616125200,14.342,0.3 -1616125800,14.1,0.303 -1616126400,13.871,0.302 -1616127000,13.586,0.3 -1616127600,13.413,0.299 -1616128200,13.322,0.297 -1616128800,13.27,0.296 -1616129400,13.192,0.303 -1616130000,12.894,0.302 -1616130600,12.811,0.301 -1616131200,12.696,0.3 -1616131800,12.398,0.303 -1616132400,12.294,0.306 -1616133000,12.169,0.305 -1616133600,12.115,0.308 -1616134200,11.937,0.307 -1616134800,11.885,0.31 -1616135400,11.873,0.309 -1616136000,11.632,0.307 -1616136600,11.384,0.311 -1616137200,11.227,0.309 -1616137800,11.143,0.308 -1616138400,11.101,0.312 -1616139000,10.823,0.311 -1616139600,10.739,0.309 -1616140200,10.687,0.308 -1616140800,10.445,0.307 -1616141400,10.382,0.311 -1616142000,10.31,0.31 -1616142600,10.054,0.309 -1616143200,9.809,0.308 -1616143800,9.707,0.311 -1616144400,9.664,0.31 -1616145000,9.499,0.309 -1616145600,9.464,0.308 -1616146200,9.426,0.307 -1616146800,9.347,0.306 -1616147400,9.148,0.306 -1616148000,8.871,0.309 -1616148600,8.686,0.308 -1616149200,8.43,0.312 -1616149800,8.226,0.311 -1616150400,8.119,0.31 -1616151000,7.915,0.309 -1616151600,7.67,0.309 -1616152200,7.39,0.313 -1616152800,7.311,0.316 -1616153400,7.086,0.316 -1616154000,7.024,0.315 -1616154600,6.762,0.319 -1616155200,6.673,0.318 -1616155800,6.408,0.318 -1616156400,6.631,0.317 -1616157000,6.676,0.316 -1616157600,6.709,0.316 -1616158200,6.968,0.315 -1616158800,7.07,0.319 -1616159400,7.33,0.318 -1616160000,7.577,0.317 -1616160600,7.684,0.321 -1616161200,7.822,0.321 -1616161800,8.011,0.324 -1616162400,8.263,0.324 -1616163000,8.467,0.327 -1616163600,8.475,0.331 -1616164200,8.697,0.33 -1616164800,8.996,0.329 -1616165400,9.059,0.328 -1616166000,9.125,0.328 -1616166600,9.289,0.327 -1616167200,9.304,0.33 -1616167800,9.555,0.329 -1616168400,9.59,0.333 -1616169000,9.676,0.332 -1616169600,9.822,0.331 -1616170200,9.966,0.33 -1616170800,9.976,0.329 -1616171400,10.128,0.328 -1616172000,10.217,0.327 -1616172600,10.385,0.326 -1616173200,10.445,0.325 -1616173800,10.726,0.324 -1616174400,10.833,0.323 -1616175000,10.846,0.326 -1616175600,10.928,0.325 -1616176200,10.93,0.324 -1616176800,11.076,0.323 -1616177400,11.211,0.322 -1616178000,11.362,0.321 -1616178600,11.42,0.32 -1616179200,11.657,0.318 -1616179800,11.802,0.317 -1616180400,12.054,0.316 -1616181000,12.333,0.315 -1616181600,12.531,0.314 -1616182200,12.609,0.312 -1616182800,12.735,0.311 -1616183400,12.811,0.314 -1616184000,13.071,0.313 -1616184600,13.185,0.312 -1616185200,13.365,0.31 -1616185800,13.639,0.309 -1616186400,13.768,0.308 -1616187000,13.785,0.306 -1616187600,13.883,0.305 -1616188200,14.147,0.308 -1616188800,14.238,0.311 -1616189400,14.462,0.309 -1616190000,14.736,0.308 -1616190600,14.931,0.306 -1616191200,15.053,0.305 -1616191800,15.12,0.303 -1616192400,15.386,0.302 -1616193000,15.565,0.3 -1616193600,15.797,0.299 -1616194200,15.856,0.297 -1616194800,16.068,0.3 -1616195400,16.118,0.302 -1616196000,16.324,0.301 -1616196600,16.469,0.299 -1616197200,16.584,0.306 -1616197800,16.713,0.304 -1616198400,16.796,0.307 -1616199000,16.727,0.305 -1616199600,16.574,0.303 -1616200200,16.354,0.302 -1616200800,16.255,0.3 -1616201400,16.083,0.298 -1616202000,16.027,0.301 -1616202600,15.746,0.299 -1616203200,15.681,0.298 -1616203800,15.381,0.3 -1616204400,15.086,0.299 -1616205000,14.857,0.297 -1616205600,14.77,0.296 -1616206200,14.643,0.294 -1616206800,14.474,0.293 -1616207400,14.256,0.296 -1616208000,14.132,0.299 -1616208600,13.85,0.306 -1616209200,13.594,0.304 -1616209800,13.527,0.303 -1616210400,13.288,0.302 -1616211000,13.088,0.3 -1616211600,12.793,0.299 -1616212200,12.584,0.298 -1616212800,12.327,0.297 -1616213400,12.158,0.295 -1616214000,11.901,0.303 -1616214600,11.667,0.302 -1616215200,11.63,0.305 -1616215800,11.33,0.308 -1616216400,11.062,0.307 -1616217000,10.849,0.306 -1616217600,10.814,0.309 -1616218200,10.76,0.308 -1616218800,10.732,0.307 -1616219400,10.451,0.306 -1616220000,10.173,0.305 -1616220600,10.022,0.304 -1616221200,9.785,0.303 -1616221800,9.619,0.302 -1616222400,9.502,0.301 -1616223000,9.456,0.3 -1616223600,9.26,0.299 diff --git a/gardener/garden.py b/gardener/garden.py deleted file mode 100644 index 8fd4ca3..0000000 --- a/gardener/garden.py +++ /dev/null @@ -1,53 +0,0 @@ -import random - - -class Garden: - # Each step is 10 minutes (60 seconds * 10) - STEP_INTERVAL_SECONDS = 600 - - # 86400 seconds per day - STEPS_PER_DAY = 86400 / STEP_INTERVAL_SECONDS - - def __init__(self, initial_time_unix_seconds, moisture, temperature): - self.time_unix_seconds = initial_time_unix_seconds - self.moisture = moisture - self.temperature = temperature - - def get_moisture(self): - return self.moisture - - def get_temperature(self): - return self.temperature - - def get_time_unix_seconds(self): - return self.time_unix_seconds - - def open_valve_half(self): - if self.moisture >= 0.995: - return - - self.moisture += 0.005 * ((100 - self.temperature) / 100) - - def open_valve_full(self): - if self.moisture >= 0.99: - return - - self.moisture += 0.01 * ((100 - self.temperature) / 100) - - def update(self): - # Dry out by an amount proportional to the temperature - if self.moisture > 0.01: - self.moisture -= 0.01 * (self.temperature / 100) - - # Add some "daily" temperature fluctuation - is_afternoon = ( - (self.time_unix_seconds / Garden.STEP_INTERVAL_SECONDS) - % Garden.STEPS_PER_DAY - ) > (Garden.STEPS_PER_DAY / 2) - - if is_afternoon and self.temperature < 99.7: - self.temperature += 0.3 * random.random() - elif not is_afternoon and self.temperature > 0.3: - self.temperature -= 0.3 * random.random() - - self.time_unix_seconds += Garden.STEP_INTERVAL_SECONDS diff --git a/gardener/main.py b/gardener/main.py deleted file mode 100644 index 90e4217..0000000 --- a/gardener/main.py +++ /dev/null @@ -1,105 +0,0 @@ -from os import system -import io -import time -import csv -import requests - -from garden import Garden - -GARDEN_DATA_CSV_PATH = "data/garden_data.csv" - -SPICE_AI_OBSERVATIONS_URL = "http://localhost:8000/api/v0.1/pods/gardener/observations" -SPICE_AI_RECOMMENDATION_URL = ( - "http://localhost:8000/api/v0.1/pods/gardener/recommendation" -) - - -def maintain_garden_moisture_content(garden): - while True: - print( - f"Time (s): {garden.get_time_unix_seconds()} Temperature (C): {round(garden.get_temperature(),3)} Moisture (%): {round(garden.get_moisture(),3)}" - ) - - # Post observations to Spice.ai - # - # Spice.ai's observations endpoint accepts CSV or JSON formatted data. - # In this sample we will use CSV formatted data. - # It expects headers of the form .. - # A "time" column must be included with all observations. - # - # For more information on the observations endpoint, visit https://docs.spiceai.org/reference/api/#observations - output = io.StringIO() - writer = csv.writer(output) - - writer.writerow( - ["time", "sensors.garden.temperature", "sensors.garden.moisture"] - ) - for _ in range(6): - garden.update() - writer.writerow( - [ - garden.get_time_unix_seconds(), - round(garden.get_temperature(), 3), - round(garden.get_moisture(), 3), - ] - ) - - try: - requests.post(SPICE_AI_OBSERVATIONS_URL, data=output.getvalue()) - except Exception: - print( - f"Failed to post observations to Spice.ai. Is the runtime started ('spice run')?" - ) - return - - # Get a recommendation action from Spice.ai - # - # Spice.ai's recommendation endpoint returns a simple JSON response that includes a recommended "action" based - # based on the most recent observations it has received - # - # For more information on the recommendations endpoint, visit https://docs.spiceai.org/reference/api/#recommendations - recommended_action = None - try: - response = requests.get(SPICE_AI_RECOMMENDATION_URL) - response_json = response.json() - recommended_action = response_json["action"] - except Exception: - print( - f"Failed to get a recommendation from Spice.ai. Is the runtime started ('spice run')?" - ) - return - - # Take action based on Spice.ai's recommendation - if recommended_action == "open_valve_full": - garden.open_valve_full() - print("Watering at full flow", flush=True) - elif recommended_action == "open_valve_half": - garden.open_valve_half() - print("Watering at half flow", flush=True) - else: - pass - - time.sleep(0.5) - - -def create_garden_from_csv(csv_path): - # Seek to last entry in the csv and create a Garden from it - with open(csv_path, "r", newline="") as file: - reader = csv.DictReader(file) - last_row = None - try: - for row in reader: - last_row = row - except csv.Error as e: - system.exit(f"Could not read csv file {csv_path}: {e}") - - return Garden( - int(last_row["time"]), - float(last_row["moisture"]), - float(last_row["temperature"]), - ) - - -if __name__ == "__main__": - garden = create_garden_from_csv(GARDEN_DATA_CSV_PATH) - maintain_garden_moisture_content(garden) diff --git a/gardener/requirements.txt b/gardener/requirements.txt deleted file mode 100644 index 4f5b899..0000000 --- a/gardener/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -requests==2.26.0 \ No newline at end of file diff --git a/kubernetes/README.md b/kubernetes/README.md deleted file mode 100644 index 75285a7..0000000 --- a/kubernetes/README.md +++ /dev/null @@ -1,87 +0,0 @@ -# Kubernetes - -Adding Spice.ai to your [Kubernetes](https://kubernetes.io/) cluster is easy. - -## Prerequisites - -This example assumes you have a working Kubernetes cluster set up and can access it via `kubectl`. For help setting up a cluster, consult the [Kubernetes Documentation](https://kubernetes.io/docs/setup/). - -Ensure this `samples` repository is cloned and you are in the `kubernetes` directory: - -```bash -git clone https://github.com/spiceai/samples.git -cd samples/kubernetes -``` - -## Standalone - -First, create a [ConfigMap](https://kubernetes.io/docs/concepts/configuration/configmap/) that contains your Pod definition and training data. A Pod definition tells Spice.ai which Dataspaces, Actions, and training parameters it should use to provide recommendations to your app. This sample will use the Trader Pod definition from the the Spice.ai Registry. Add it now: - -```bash -kubectl apply -f trader-configmap.yaml -``` - -Next, create a Spice.ai [Deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) to start Spice.ai in the cluster: - -```bash -kubectl apply -f spiceai-deployment.yaml -``` - -Once the deployment has finished, add a [Service](https://kubernetes.io/docs/concepts/services-networking/service/) to allow other apps within the cluster to access Spice.ai: - -```bash -kubectl apply -f spiceai-service.yaml -``` - -This will create a [ClusterIP](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types) Service that other apps within the cluster can access. To test this out, spin up a debug container and access it: - -```bash -kubectl run -i --tty --rm debug --image=alpine --restart=Never -- sh - -(inside the new container) -# apk add --no-cache curl -# curl http://spiceai:8000/api/v0.1/pods/trader/recommendation -{"response":{"result":"ok"},"start":1607886000,"end":1607907600,"action":"sell","tag":"latest"} -``` - -Cool! If you would like to access Spice.ai from outside the cluster, try changing the `type` of the Service in `spiceai-service.yaml` to either a `NodePort` or a `LoadBalancer`, depending on how your cluster is set up. - -## Sidecar - -If you would like to run Spice.ai as a sidecar, you can easily add it to your existing application. Simply modify your existing Deployment to include the Spice.ai runtime. The following is an example you can use from [spiceai-deployment.yaml](spiceai-deployment.yaml) in this sample: - -```yaml -spec: - - - containers: - - name: spiceai - image: ghcr.io/spiceai/spiceai:latest - ports: - - containerPort: 8000 - volumeMounts: - - name: userapp - mountPath: /userapp - initContainers: - - name: spiceai-init - image: busybox - command: ['/bin/sh', '-c', 'mkdir -p /userapp/spicepods && cp /trader/trader.yaml /userapp/spicepods/trader.yaml && cp /trader/btcusd.csv /userapp/btcusd.csv'] - volumeMounts: - - name: userapp - mountPath: /userapp - - name: trader-volume - mountPath: /trader - volumes: - - name: trader-volume - configMap: - name: trader - - name: userapp - emptyDir: {} - -``` - -Once you've added this, Spice.ai will be reachable from your application at `http://localhost:8000`! - -## Coming Soon - -We are working to build a set of [Kubernetes Operators](https://kubernetes.io/docs/concepts/extend-kubernetes/operator/) to make your Spice.ai integration even easier. Stay tuned! diff --git a/kubernetes/spiceai-deployment.yaml b/kubernetes/spiceai-deployment.yaml deleted file mode 100644 index 48a0510..0000000 --- a/kubernetes/spiceai-deployment.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: spiceai-deployment - labels: - app: spiceai -spec: - replicas: 1 - selector: - matchLabels: - app: spiceai - template: - metadata: - labels: - app: spiceai - spec: - containers: - - name: spiceai - image: ghcr.io/spiceai/spiceai:latest - ports: - - containerPort: 8000 - volumeMounts: - - name: userapp - mountPath: /userapp - initContainers: - - name: spiceai-init - image: busybox - command: ['/bin/sh', '-c', 'mkdir -p /userapp/spicepods && cp /trader/trader.yaml /userapp/spicepods/trader.yaml && cp /trader/btcusd.csv /userapp/btcusd.csv'] - volumeMounts: - - name: userapp - mountPath: /userapp - - name: trader-volume - mountPath: /trader - volumes: - - name: trader-volume - configMap: - name: trader - - name: userapp - emptyDir: {} diff --git a/kubernetes/spiceai-service.yaml b/kubernetes/spiceai-service.yaml deleted file mode 100644 index ebb77b5..0000000 --- a/kubernetes/spiceai-service.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: spiceai -spec: - type: ClusterIP - selector: - app: spiceai - ports: - - name: http - protocol: TCP - port: 8000 diff --git a/kubernetes/trader-configmap.yaml b/kubernetes/trader-configmap.yaml deleted file mode 100644 index ed1f489..0000000 --- a/kubernetes/trader-configmap.yaml +++ /dev/null @@ -1,1517 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: trader -data: - trader.yaml: | - name: trader - params: - epoch_time: 1605312000 - period: 720h - interval: 6h - granularity: 30m - dataspaces: - - from: local - name: portfolio - measurements: - - name: usd_balance - type: number - initializer: 1000000 - - name: btc_balance - type: number - initializer: 0 - actions: - buy: | - usd_balance -= args.price - btc_balance += 1 - sell: | - usd_balance += args.price - btc_balance -= 1 - laws: - - usd_balance >= 0 - - btc_balance >= 0 - - from: coinbase - name: btcusd - data: - connector: - name: file - params: - path: btcusd.csv - processor: - name: csv - measurements: - - name: close - actions: - - name: buy - do: - name: local.portfolio.buy - args: - price: coinbase.btcusd.close - - name: sell - do: - name: local.portfolio.sell - args: - price: coinbase.btcusd.close - - name: hold - training: - reward_init: | - prev_price = prev_state.coinbase.btcusd.close - rewards: - - reward: buy - with: | - new_price = new_state.coinbase.btcusd.close - change_in_price = prev_price - new_price - reward = change_in_price - - reward: sell - with: | - new_price = new_state.coinbase.btcusd.close - change_in_price = prev_price - new_price - reward = -change_in_price - - reward: hold - with: reward = 1 - - btcusd.csv: | - time,open,high,low,close,volume - 1605312000,16339.56,16339.6,16240,16254.51,274.42607 - 1605313800,16256.42,16305,16248.6,16305,110.91971 - 1605315600,16303.88,16303.88,16210.99,16222.16,231.64805 - 1605317400,16221.78,16246.92,16200.01,16214.15,135.86161 - 1605319200,16214.26,16234,16175.62,16223.08,164.32561 - 1605321000,16223.08,16247.6,16168.45,16185.68,151.60169 - 1605322800,16185.67,16218.42,16165.15,16202.24,145.62796 - 1605324600,16202.22,16206.58,16155.95,16194.21,121.20759 - 1605326400,16195.14,16208.45,16122,16159.4,207.55835 - 1605328200,16159.37,16170.29,16109.64,16152.36,149.3887 - 1605330000,16148.09,16148.09,16070,16100.84,192.60478 - 1605331800,16099.76,16185.85,16095.87,16180.01,92.14097 - 1605333600,16180,16223.37,16173.95,16191.84,145.71858 - 1605335400,16192.96,16206.85,16155.71,16188.67,81.65864 - 1605337200,16188.67,16201.83,16050,16061.94,140.1103 - 1605339000,16063.54,16114.1,16040.88,16102.09,116.58359 - 1605340800,16100.35,16140.01,15876.22,15885.37,533.53752 - 1605342600,15892.42,15979.96,15850.01,15976.37,278.94207 - 1605344400,15976.38,15976.38,15866.91,15906.38,214.2999 - 1605346200,15905.49,15906.38,15770.27,15805,436.44791 - 1605348000,15801.66,15942.46,15752.64,15935.31,168.64093 - 1605349800,15935.07,15957.48,15841.46,15867.22,122.57835 - 1605351600,15868.24,15936.91,15832.21,15930,124.11435 - 1605353400,15930.01,15956.04,15900,15945.38,125.39527 - 1605355200,15940.07,15948.1,15852.84,15871.4,167.38078 - 1605357000,15872.25,15933.82,15852.46,15925.01,165.83894 - 1605358800,15925,15937.77,15867.26,15936.47,153.59356 - 1605360600,15936.47,15953.61,15903.74,15944.34,146.84775 - 1605362400,15944.34,16046.36,15944.34,16040.28,259.43145 - 1605364200,16040.28,16072.83,16004.28,16026.12,271.33476 - 1605366000,16026.12,16046.55,15967.58,16010.37,217.49947 - 1605367800,16010.37,16021.39,15943.27,15966.15,154.33728 - 1605369600,15963.87,16041.67,15940.01,16013.58,212.07269 - 1605371400,16013.5,16015.21,15837.72,15865.37,341.4333 - 1605373200,15865.97,15893.54,15708.24,15877.48,529.28015 - 1605375000,15881.14,15942.81,15872.03,15922.8,311.20304 - 1605376800,15922.79,15968.98,15886.98,15936.68,132.40965 - 1605378600,15936.68,15950,15903.79,15915.01,97.60482 - 1605380400,15915.39,15932.52,15879.07,15898.93,298.50914 - 1605382200,15898.9,15919.19,15868.29,15900.72,143.849 - 1605384000,15898.89,15943.49,15870.25,15930.69,92.71382 - 1605385800,15930.7,16019.41,15926.08,16009.69,122.84079 - 1605387600,16008.16,16040,15998.43,16007.74,107.88297 - 1605389400,16006.96,16050,15991.08,16009.52,152.90501 - 1605391200,16009.51,16051.63,16004.12,16027.35,119.52417 - 1605393000,16025.58,16051.89,15975,16051.89,126.94962 - 1605394800,16051.88,16161.51,16051.88,16107.01,238.07868 - 1605396600,16107,16132.61,16078.02,16082.01,177.07153 - 1605398400,16082.01,16123.67,16080,16092.07,154.89028 - 1605400200,16092.08,16098.21,16055.96,16059.01,136.94035 - 1605402000,16059.04,16094.12,15938.54,16005.24,299.62729 - 1605403800,16005.24,16027.06,15980.01,15998.38,146.68811 - 1605405600,15998.38,16047.56,15951,16005.95,162.23513 - 1605407400,16003.81,16014.43,15966.02,15998.75,140.9913 - 1605409200,15998.75,16002.34,15891.03,15930,160.98825 - 1605411000,15930.01,15950.79,15886.54,15946.09,140.4956 - 1605412800,15946.09,15973.43,15895.22,15967.64,110.30226 - 1605414600,15967.7,15968.58,15923.65,15949.05,80.63568 - 1605416400,15949.05,16011.94,15949.05,16007.18,98.03164 - 1605418200,16006.95,16033.33,16005.51,16033.32,91.44399 - 1605420000,16033.33,16055.5,16006.2,16051.81,66.22382 - 1605421800,16051.81,16097.57,16045.8,16069.26,85.10396 - 1605423600,16069.26,16111.68,16040.01,16046.17,79.2623 - 1605425400,16046.17,16051.32,16016.01,16045.93,51.36036 - 1605427200,16045.93,16153.4,16045.31,16146.63,126.00825 - 1605429000,16146.63,16175.6,16100,16135.46,98.21863 - 1605430800,16135.28,16143.95,16077.17,16109.67,73.11273 - 1605432600,16110.75,16111.89,16054.16,16082.41,48.14519 - 1605434400,16082.4,16107.1,15985.18,15999.88,104.39271 - 1605436200,15998.16,16033.07,15979.82,16007.41,50.82243 - 1605438000,16010.37,16080.52,15950.6,16069.91,63.76177 - 1605439800,16070.87,16112.36,15962.56,15972.08,67.75612 - 1605441600,15972.07,16081.16,15950.37,16047.88,141.05268 - 1605443400,16048.09,16082.94,15990.28,15993.78,97.44321 - 1605445200,15993.78,16065.74,15969.86,16048.49,105.33676 - 1605447000,16048,16094,16031.94,16062.34,58.18043 - 1605448800,16062.33,16122.97,16040.48,16090.62,98.53167 - 1605450600,16090.66,16102.73,16040.39,16064.02,155.35827 - 1605452400,16067.68,16087.57,16046.6,16054,86.97052 - 1605454200,16053.2,16055.56,16011.1,16041.73,92.05935 - 1605456000,16041.72,16079.39,15970,15985.29,234.59217 - 1605457800,15985.01,16025.96,15978.07,16020.01,143.92447 - 1605459600,16020,16020.01,15980,15997.23,132.27992 - 1605461400,15996.5,15996.5,15890,15900.01,351.87706 - 1605463200,15900,15959.2,15861.79,15940.01,182.05456 - 1605465000,15940,15948,15905.66,15916.83,94.29813 - 1605466800,15913.63,15949.75,15871,15928.17,118.93767 - 1605468600,15926.66,15928.35,15870,15882.05,101.2571 - 1605470400,15875.01,15900,15825.01,15832.86,209.13464 - 1605472200,15829.1,15880.01,15820.51,15858.88,198.55359 - 1605474000,15858.88,15919.43,15840,15888.93,144.17199 - 1605475800,15888.93,15908,15846.01,15856.67,131.15269 - 1605477600,15856.87,15864.07,15796.09,15845.29,235.10915 - 1605479400,15845.24,15978,15844.24,15939.93,160.18892 - 1605481200,15939.93,16021.75,15939.93,15996.76,195.92648 - 1605483000,15996.76,16018.57,15956.93,15966.89,144.26455 - 1605484800,15970,15970,15891.46,15909.22,222.34765 - 1605486600,15909.23,15992.17,15879,15989.99,122.97645 - 1605488400,15990,16055.63,15982.72,15990.93,157.80727 - 1605490200,15992.96,16020.64,15952.49,15959.5,120.22183 - 1605492000,15959.5,16015,15959.49,15967.68,224.95958 - 1605493800,15967.67,15977.55,15939.84,15946.27,134.31694 - 1605495600,15946.27,15994.11,15946.26,15989.39,116.7821 - 1605497400,15989.38,16053.93,15989.38,16020.98,134.82482 - 1605499200,16022.98,16050,15995.3,16032.84,108.64029 - 1605501000,16033.32,16048.24,15995.89,16045.3,80.4703 - 1605502800,16046.96,16149.63,16046.96,16133.96,158.52601 - 1605504600,16133.36,16150.99,16101.56,16125.97,172.55106 - 1605506400,16125.44,16244.95,16123.12,16217.32,281.23613 - 1605508200,16217.66,16260.99,16196.65,16250.01,190.62014 - 1605510000,16255,16300,16219.28,16254,193.00408 - 1605511800,16254.01,16277.53,16238.81,16254.69,148.49786 - 1605513600,16254.69,16286.27,16228.74,16250.06,92.26081 - 1605515400,16250.06,16270,16219.28,16225.04,156.36972 - 1605517200,16227.22,16248.83,16191.92,16204.65,80.19726 - 1605519000,16204.65,16237.63,16181.75,16237.63,186.30472 - 1605520800,16237.62,16345,16225.66,16345,126.5768 - 1605522600,16345,16392.89,16292.2,16392.89,259.71408 - 1605524400,16393.73,16398,16337.8,16383.44,101.6135 - 1605526200,16383.44,16383.44,16231.12,16232.03,362.43825 - 1605528000,16229.75,16313.59,16229.69,16304.38,128.44067 - 1605529800,16304.46,16320.34,16269.99,16320.34,101.00643 - 1605531600,16320.33,16352.06,16301.18,16305.91,152.4447 - 1605533400,16304.61,16380.99,16302.04,16326.95,259.20712 - 1605535200,16326.95,16422,16326.95,16415.9,460.19058 - 1605537000,16415.78,16447,16366.05,16409.16,381.26836 - 1605538800,16409.16,16439,16354.79,16410,344.44902 - 1605540600,16410,16476,16390.48,16463.62,441.48004 - 1605542400,16463.62,16639.66,16448.44,16608.68,1139.51769 - 1605544200,16606.84,16660,16565.58,16578.83,686.44344 - 1605546000,16579.45,16748,16578.24,16747.99,803.55958 - 1605547800,16747.97,16777,16681.8,16695,781.53008 - 1605549600,16695,16761.7,16652.51,16691.26,511.12329 - 1605551400,16691.26,16749.42,16667.03,16710,327.47354 - 1605553200,16710,16859.95,16682.25,16842.6,733.12951 - 1605555000,16842.61,16842.61,16766.52,16797.62,408.99159 - 1605556800,16797.62,16857.73,16767.14,16854.77,372.51831 - 1605558600,16857.53,16857.98,16774.01,16839.44,291.7918 - 1605560400,16843.17,16892,16785,16821.15,178.1123 - 1605562200,16821.15,16821.15,16587.84,16705.77,456.70647 - 1605564000,16703.33,16760.77,16648.57,16676.41,398.52794 - 1605565800,16675.67,16794.18,16670.98,16720.81,290.85093 - 1605567600,16720.81,16798,16720.81,16783.13,204.53007 - 1605569400,16783.13,16784.25,16703.06,16726.64,161.76842 - 1605571200,16726.49,16772.43,16700,16764.55,285.0891 - 1605573000,16764.55,16844,16761.19,16823.64,289.20946 - 1605574800,16823.63,16823.63,16738,16740.43,299.66432 - 1605576600,16742.66,16762.06,16690,16706.79,285.8743 - 1605578400,16706.73,16767.38,16700.9,16738.11,230.20763 - 1605580200,16736.74,16738.72,16650,16694.45,406.42886 - 1605582000,16692.82,16722.53,16600,16619.63,487.39474 - 1605583800,16617.98,16650.01,16589.53,16590.01,197.60662 - 1605585600,16590,16676.25,16575.42,16659.14,235.01519 - 1605587400,16659.14,16690,16639.43,16686.59,206.15972 - 1605589200,16686.59,16686.59,16632.67,16635.22,173.24081 - 1605591000,16635.23,16685,16614,16634,206.9007 - 1605592800,16633.99,16675.75,16595.07,16672.23,122.41039 - 1605594600,16668.53,16684.68,16637.63,16637.63,181.76395 - 1605596400,16634.26,16762.77,16630,16744.45,166.41477 - 1605598200,16743.36,16790,16724.12,16756.02,174.54879 - 1605600000,16756.02,16797.82,16704.58,16735.46,201.88709 - 1605601800,16735.46,16750,16700.14,16712.24,115.93021 - 1605603600,16712.24,16757.57,16683.82,16683.86,144.09257 - 1605605400,16692.68,16695.46,16637.02,16658.16,174.70627 - 1605607200,16658.15,16740.43,16650.38,16736.84,112.57377 - 1605609000,16736.84,16785,16712.66,16783.73,82.82456 - 1605610800,16780.42,16943.99,16750.01,16940.25,434.75884 - 1605612600,16943.33,17000,16910.26,16999.41,584.24978 - 1605614400,16999.92,17081.38,16941.08,17012.95,561.99656 - 1605616200,17012.5,17100,16982,17094.97,471.13486 - 1605618000,17094.94,17100,16933.56,17031.47,661.86934 - 1605619800,17037.76,17061.92,16945.87,16957.88,572.97349 - 1605621600,16957.88,17080,16941.28,17059.61,526.52231 - 1605623400,17060.92,17207,17038.43,17181.67,1053.4985 - 1605625200,17181.66,17247,17150,17219.57,824.79213 - 1605627000,17220.55,17398,17212.36,17355.87,1148.47866 - 1605628800,17355.17,17400,17295.5,17400,908.13081 - 1605630600,17400,17756.67,17400,17668.83,1982.10163 - 1605632400,17667.93,17750,17435,17639.5,1996.57137 - 1605634200,17642.42,17880,17642.36,17834.89,1479.09148 - 1605636000,17832.83,17849.31,17616.92,17745.32,1174.99945 - 1605637800,17746.19,17850,17631.23,17650.9,934.95052 - 1605639600,17650.89,17722,17509.22,17685.76,1238.03174 - 1605641400,17685.76,17774.12,17621.05,17699.45,532.71901 - 1605643200,17699.44,17745,17640.25,17646,483.45059 - 1605645000,17646,17738.62,17641,17691.72,302.29864 - 1605646800,17696.45,17720.65,17552.1,17562.76,467.84755 - 1605648600,17561,17684.55,17550,17644.32,381.70495 - 1605650400,17645.12,17648.12,17470.01,17569.14,562.24531 - 1605652200,17568.42,17624.25,17538.72,17619.62,364.46426 - 1605654000,17617.96,17721.53,17617.85,17667.31,367.31859 - 1605655800,17668.37,17722.76,17638.74,17679.36,434.09421 - 1605657600,17679.86,17845,17650.9,17772.62,547.58119 - 1605659400,17771.84,17796.3,17618.41,17718,526.34731 - 1605661200,17716.74,17718.65,17631,17710.43,365.28023 - 1605663000,17708.87,17765.85,17678.3,17764.05,247.66124 - 1605664800,17762.43,17762.44,17682.91,17712.96,246.75623 - 1605666600,17712.95,17745.85,17660.54,17702.62,353.37328 - 1605668400,17702.62,17734.3,17650,17732.3,316.88156 - 1605670200,17733.36,18095,17720.24,18059.1,1054.889 - 1605672000,18057.44,18288,17970.14,18181.25,1354.94353 - 1605673800,18181.25,18488,18162.46,18390.49,1407.21899 - 1605675600,18379.89,18390.52,18173.01,18267.37,1047.53826 - 1605677400,18276.6,18286.15,17205.02,17639.68,4585.34408 - 1605679200,17639.68,17894.68,17471.68,17767.11,1286.28204 - 1605681000,17768.07,17850,17760.1,17792.99,267.5763 - 1605682800,17792.99,17861.31,17679.12,17778.27,409.41969 - 1605684600,17778.27,18110.86,17775,18089.38,471.29788 - 1605686400,18093,18237.86,18055.38,18163.98,612.11208 - 1605688200,18164.7,18282.3,18115.32,18227.35,555.09884 - 1605690000,18227.35,18242.81,17900.01,17952.5,754.88867 - 1605691800,17945.39,18151.26,17902.62,18122.99,440.46889 - 1605693600,18123.86,18172.78,17994.56,18152.56,293.21518 - 1605695400,18152.24,18267.15,18123.87,18265.85,298.27594 - 1605697200,18263.84,18267.83,18100,18135.16,350.24551 - 1605699000,18135.16,18269.16,18018.47,18266.09,625.32964 - 1605700800,18266.09,18269.15,18160.82,18200,400.26669 - 1605702600,18200,18220.68,18000,18043.18,599.74392 - 1605704400,18035.44,18117.2,17946.8,18001.14,450.5647 - 1605706200,18000,18100,17811.25,17898.7,767.35233 - 1605708000,17897.51,17965.41,17774.7,17881.63,493.67999 - 1605709800,17880,17896.24,17679,17704.83,738.51399 - 1605711600,17700,17740.31,17275.04,17581.66,2113.56551 - 1605713400,17581.66,17930,17556.3,17896.84,1097.62476 - 1605715200,17896.84,18029.78,17650,17909.21,896.18031 - 1605717000,17914.37,17980,17794.01,17819.85,508.70166 - 1605718800,17813.54,17896.79,17720.54,17794.85,410.11559 - 1605720600,17794.85,17934.76,17783.42,17903.99,405.88761 - 1605722400,17904.4,17980,17866.03,17871.44,402.46803 - 1605724200,17868.15,17922.88,17760.56,17785.05,402.91488 - 1605726000,17785.05,17850,17607.3,17666.18,691.23615 - 1605727800,17666.97,17750,17580,17671.91,593.20864 - 1605729600,17676.2,17741.13,17552.34,17587.22,528.5501 - 1605731400,17587.22,17680,17505.05,17655.65,471.0637 - 1605733200,17656.31,17766.6,17636.07,17698.63,327.36655 - 1605735000,17699.95,17800,17607.49,17785.63,285.02504 - 1605736800,17781.68,17849.99,17725,17735.69,313.55166 - 1605738600,17733.55,17881.76,17733.23,17834.51,317.92905 - 1605740400,17832.55,17865.29,17673.45,17729,513.02076 - 1605742200,17732.32,17872.99,17732.32,17782.91,279.44362 - 1605744000,17790.18,17817.15,17626.37,17675.45,580.72261 - 1605745800,17673.56,17830.72,17594.07,17774.33,425.40876 - 1605747600,17772.59,17779.38,17702.25,17736.69,230.69923 - 1605749400,17735.52,17883.51,17735.46,17872.73,306.75039 - 1605751200,17874.04,18075.5,17872.01,18052.4,689.63494 - 1605753000,18053.15,18053.67,17914.62,17945.69,417.23799 - 1605754800,17947.49,18015.41,17917.68,17949.6,262.35769 - 1605756600,17949.59,17950,17863.99,17935.44,230.62801 - 1605758400,17935.44,17938.81,17761,17793.46,440.1003 - 1605760200,17793.46,17884.29,17778.09,17871.04,211.88092 - 1605762000,17871.03,17871.03,17735.01,17829.17,422.45525 - 1605763800,17828.32,17924.82,17768.93,17912.24,318.75039 - 1605765600,17912.16,17922.04,17788.89,17788.94,206.96869 - 1605767400,17788.94,17809.06,17718.27,17765.37,269.72926 - 1605769200,17766.8,17781.17,17660.74,17749.02,207.97575 - 1605771000,17749.01,17768.78,17610.02,17669.7,255.26581 - 1605772800,17669.7,17739.9,17522.42,17576.8,372.68249 - 1605774600,17579.99,17644.9,17404.63,17544.95,511.75471 - 1605776400,17546.18,17643.68,17507.15,17598.16,130.28712 - 1605778200,17596.4,17623.01,17356,17439.8,276.63068 - 1605780000,17431.78,17516.35,17376.21,17475.86,193.04323 - 1605781800,17475.85,17656.11,17375.86,17624,296.89997 - 1605783600,17621.75,17772.01,17596.56,17617.31,238.86195 - 1605785400,17617.31,17775,17612.18,17770.49,405.13773 - 1605787200,17771.82,17817.84,17663.14,17709.38,225.77787 - 1605789000,17707.7,17803.32,17700.01,17720.42,208.89706 - 1605790800,17728.19,17978.71,17717.54,17968.27,422.1197 - 1605792600,17967.93,18025.63,17901.18,18010.66,482.37571 - 1605794400,18010.66,18047.99,17870.61,17925.31,489.47048 - 1605796200,17925.31,18158.93,17857.38,18133.01,646.18918 - 1605798000,18133.09,18193.29,18061.97,18111.51,606.97443 - 1605799800,18115.8,18139.07,18033,18064.84,432.39321 - 1605801600,18064.84,18135,17927.44,17978.47,591.82417 - 1605803400,17986.32,18063.6,17960.05,18020.57,369.6074 - 1605805200,18020.27,18054.88,17902.06,17965.67,317.94539 - 1605807000,17963.92,18028.52,17924.64,17982.2,409.20654 - 1605808800,17975.62,18046.92,17975.62,18008.41,358.97868 - 1605810600,18008.42,18039.17,17925.38,17953.3,351.37382 - 1605812400,17953.3,17979.73,17890,17924.32,313.89089 - 1605814200,17922.68,17990,17909.38,17979.02,242.26342 - 1605816000,17973.69,18018.41,17925.17,18005.57,331.04106 - 1605817800,18005.93,18057.29,17979.77,18046.37,376.59703 - 1605819600,18046.37,18110.05,17993,18056.09,298.55917 - 1605821400,18062.28,18062.28,17900,17950.99,357.84593 - 1605823200,17950.68,17975,17905,17910.45,240.08341 - 1605825000,17910.45,17971.22,17881,17881,228.32809 - 1605826800,17881,17909.85,17719.24,17780.13,607.01804 - 1605828600,17780.17,17860.63,17770.77,17821.58,330.88227 - 1605830400,17821.92,17954.96,17802.45,17885.77,416.82002 - 1605832200,17885.77,17889.94,17775,17794.33,233.63166 - 1605834000,17794.34,17898.71,17764.76,17894.91,172.61809 - 1605835800,17894.91,17984.85,17875.83,17976.51,259.21863 - 1605837600,17974,18047.88,17931.14,18044.81,336.66921 - 1605839400,18045,18058.24,17967.24,17976.35,313.75797 - 1605841200,17975,18036.29,17954,18006.92,242.80208 - 1605843000,18006.92,18025,17950.13,17961.26,224.96578 - 1605844800,17961.26,18099,17943.52,18090.82,499.64177 - 1605846600,18090.82,18239,18085.18,18202.06,686.08774 - 1605848400,18199.79,18228.98,18059.12,18099.03,303.31122 - 1605850200,18099.02,18186.64,18099,18142,186.68944 - 1605852000,18142,18190.9,18080.24,18097.65,214.59062 - 1605853800,18097.65,18177.97,18087.15,18174.46,181.48177 - 1605855600,18174.99,18421.63,18093.8,18198.76,725.04502 - 1605857400,18195.57,18241.77,18113.23,18222.21,198.18924 - 1605859200,18226,18340.99,18161.69,18286.74,245.6751 - 1605861000,18298.09,18342.73,18255.01,18320.01,173.60554 - 1605862800,18320.01,18389.03,18222.44,18286.22,222.7909 - 1605864600,18286.7,18286.7,18117.48,18200.79,310.93209 - 1605866400,18200.78,18249.42,18155.26,18244.66,142.51831 - 1605868200,18245.51,18349,18199.3,18310.36,268.80449 - 1605870000,18310.35,18370.35,18279.16,18320.35,211.43593 - 1605871800,18325.4,18347.22,18276.03,18287.73,155.77199 - 1605873600,18287.73,18313.68,18209.32,18272.94,182.68242 - 1605875400,18272.95,18309.95,18170.72,18245.93,239.757 - 1605877200,18247.75,18264.95,18175.8,18180.01,232.44023 - 1605879000,18177.77,18306.23,18161.23,18259.54,258.34897 - 1605880800,18261.7,18398.94,18257.11,18370.79,355.24167 - 1605882600,18369.97,18656.45,18357.13,18656.45,1598.32784 - 1605884400,18656.44,18756,18525.77,18698.01,1384.97162 - 1605886200,18698.01,18762.32,18650,18692.32,603.36856 - 1605888000,18696.69,18830.3,18650.02,18793.62,574.34302 - 1605889800,18793.62,18808.48,18652.22,18707.07,566.46485 - 1605891600,18707.06,18712.43,18557.79,18681.51,644.12905 - 1605893400,18673.73,18724.58,18669.04,18711.49,332.52889 - 1605895200,18713.56,18713.8,18520,18568.72,384.66359 - 1605897000,18572.46,18613.03,18400.01,18593.08,691.98814 - 1605898800,18593.09,18657.27,18544.6,18653.16,353.51219 - 1605900600,18653.6,18684.24,18626.82,18640,327.46482 - 1605902400,18647.04,18702,18601.24,18601.71,236.7845 - 1605904200,18601.52,18709.99,18587.01,18650.58,238.64127 - 1605906000,18650.33,18671.79,18540,18579.19,360.36431 - 1605907800,18579.59,18656.02,18564.7,18599.58,235.70327 - 1605909600,18599.61,18624.78,18501.95,18556.04,251.51938 - 1605911400,18551.3,18648.84,18510.77,18640.35,244.79762 - 1605913200,18638.98,18767,18558.42,18663.92,454.7295 - 1605915000,18668.38,18695.18,18639.1,18675.25,222.11864 - 1605916800,18677.84,18771.8,18640,18767.11,301.26613 - 1605918600,18770,18887.72,18745.2,18886.39,398.39463 - 1605920400,18884.7,18925,18787.69,18910.65,613.00852 - 1605922200,18910.64,18918.03,18839.67,18850,449.40089 - 1605924000,18850.02,18980,18848,18969.9,643.33818 - 1605925800,18969.91,18969.91,18677,18762.54,739.01043 - 1605927600,18763,18835.01,18672,18806.83,261.65308 - 1605929400,18809.74,18841.31,18650.01,18676.49,407.08248 - 1605931200,18676.59,18683.12,18460.31,18598.76,718.67136 - 1605933000,18598.03,18645.75,18541.58,18599.89,203.85512 - 1605934800,18600,18681.27,18571.26,18647.18,150.42668 - 1605936600,18644.05,18692.84,18577.89,18672.97,115.60546 - 1605938400,18672.52,18748.98,18643.97,18713.61,156.44997 - 1605940200,18707.2,18719.57,18627.44,18653.66,127.2423 - 1605942000,18653.36,18750,18630,18744.42,103.9086 - 1605943800,18743.54,18754.63,18678.43,18682.64,97.7007 - 1605945600,18685.88,18782.74,18680.79,18782.69,129.84854 - 1605947400,18782.72,18808.02,18721.27,18807.99,126.434 - 1605949200,18808,18808,18672.28,18702.87,139.14839 - 1605951000,18702.37,18702.37,18570.11,18633.42,143.04099 - 1605952800,18633.41,18728.85,18600,18702.2,115.26143 - 1605954600,18704.8,18712.33,18587.92,18611.57,92.45259 - 1605956400,18611.57,18671.52,18535.05,18565.69,155.21953 - 1605958200,18569.08,18604.95,18507.66,18550.01,126.72609 - 1605960000,18550.02,18720,18350,18694.09,608.58529 - 1605961800,18693.82,18700,18636.44,18656.82,107.0261 - 1605963600,18655.51,18735.38,18655.51,18733.39,290.33589 - 1605965400,18731.19,18849,18717.88,18812.52,582.08114 - 1605967200,18812.9,18822.72,18664.34,18705.04,368.71391 - 1605969000,18705.05,18798.94,18662.76,18756.04,322.84666 - 1605970800,18754.03,18845,18659.74,18812.72,389.78856 - 1605972600,18812.72,18832.98,18752.13,18818.15,256.15908 - 1605974400,18818.16,18924.47,18779.14,18869.26,456.27183 - 1605976200,18870.11,18933.3,18690.25,18768.77,562.68336 - 1605978000,18767.85,18804.35,18680,18740.05,296.22369 - 1605979800,18743.53,18791.21,18715.56,18772.96,269.77518 - 1605981600,18772.96,18811.71,18737.33,18759.99,180.40048 - 1605983400,18759.99,18818.34,18743.29,18762.62,203.85902 - 1605985200,18762.96,18795.02,18675,18675.77,278.60501 - 1605987000,18675.76,18727.77,18600,18697.95,339.78845 - 1605988800,18698.16,18698.16,18605.22,18661.67,181.47634 - 1605990600,18661.66,18694.2,18635.7,18669.35,155.77545 - 1605992400,18667.3,18674.58,18601.72,18627.96,167.30033 - 1605994200,18626.45,18713.54,18626.45,18670.94,131.76162 - 1605996000,18670.94,18674.06,18541.47,18599.56,331.67036 - 1605997800,18597.02,18660.6,18587.28,18648.07,137.82995 - 1605999600,18647.33,18694.4,18621.96,18693.06,203.17756 - 1606001400,18690.66,18767.03,18676.16,18721.21,267.0044 - 1606003200,18721.21,18773.56,18679.6,18700.03,233.20019 - 1606005000,18701.59,18721.58,18522.22,18556.81,449.64285 - 1606006800,18560.63,18622.16,18489.23,18535.76,531.48161 - 1606008600,18536.7,18536.7,18355.45,18473.48,790.31155 - 1606010400,18472.62,18529.66,18443.58,18503.93,276.20644 - 1606012200,18507.95,18622.38,18489.5,18601.52,1006.25587 - 1606014000,18602.46,18608.71,18498.96,18498.98,195.97878 - 1606015800,18498.98,18589.29,18498.97,18574.3,132.85068 - 1606017600,18576.08,18592.08,18450,18529.2,185.01542 - 1606019400,18531.12,18617.96,18529.4,18608.67,98.947 - 1606021200,18608.66,18608.67,18546.68,18564.39,74.89472 - 1606023000,18561.63,18562.59,18500,18526.4,112.65051 - 1606024800,18526.41,18598.94,18410.41,18464.02,229.30676 - 1606026600,18462.61,18523.37,18423.76,18490.83,111.49524 - 1606028400,18490.82,18490.83,18359,18359.01,176.08093 - 1606030200,18359.01,18527.51,18288.9,18517.26,313.12982 - 1606032000,18516.62,18516.67,18345.56,18381.56,147.06882 - 1606033800,18379.59,18410.85,18188,18219.49,284.96053 - 1606035600,18216.19,18358.77,18159,18269.71,324.90185 - 1606037400,18269.7,18428.14,18263.36,18379.44,262.47516 - 1606039200,18374.75,18374.75,18252.67,18261.28,248.885 - 1606041000,18258.66,18258.68,18056,18177.86,475.37212 - 1606042800,18177.85,18211.02,17960,17969.61,557.39458 - 1606044600,17968.81,18014.59,17610.77,17891.13,1255.15411 - 1606046400,17891.13,18130.22,17825.04,18067.87,722.55615 - 1606048200,18068.07,18161.51,18010.41,18122.58,325.50207 - 1606050000,18122.59,18246.26,18067,18244.02,310.32512 - 1606051800,18246.26,18252.37,18178.72,18213.22,236.41463 - 1606053600,18213.22,18301.92,18159.18,18255.33,282.47473 - 1606055400,18255.05,18300,18191.73,18195.03,227.4776 - 1606057200,18195.83,18275.79,18190.66,18240.64,200.39005 - 1606059000,18240.79,18345.18,18226.21,18312.17,276.2801 - 1606060800,18314.59,18466,18272.27,18453.41,305.06479 - 1606062600,18453.41,18600,18450,18566.41,338.6172 - 1606064400,18568.83,18595.2,18493.36,18556.68,233.22117 - 1606066200,18556.68,18557.61,18468.97,18494.57,170.26743 - 1606068000,18491.45,18641.01,18486.84,18548.24,223.22048 - 1606069800,18545.09,18609.14,18507.95,18522.62,220.78882 - 1606071600,18522.61,18589.71,18506.11,18522.91,195.14257 - 1606073400,18522.72,18615,18522.71,18591.38,249.39961 - 1606075200,18591.38,18700,18591.38,18637.74,315.28418 - 1606077000,18637.61,18648.69,18528.55,18576.61,259.88581 - 1606078800,18576.6,18631,18515.01,18626.64,161.70926 - 1606080600,18626.65,18644.05,18589.81,18600.6,192.01738 - 1606082400,18600.59,18666.66,18550,18653.26,240.63731 - 1606084200,18653.27,18680.85,18605.35,18643.16,315.87601 - 1606086000,18642.96,18650,18412.24,18509.64,658.17996 - 1606087800,18509.64,18558.37,18403.75,18437.66,289.45973 - 1606089600,18437.18,18529,18235.4,18271.42,528.9351 - 1606091400,18275.77,18343.93,18103.83,18140,1379.07802 - 1606093200,18137.67,18281.31,18001,18110.38,718.05972 - 1606095000,18112.93,18275,18069.8,18230,340.97241 - 1606096800,18229.99,18360.86,18210,18258.29,334.83214 - 1606098600,18261.17,18318.73,18207.58,18230.78,320.74335 - 1606100400,18231.72,18409.2,18196.2,18402.5,266.7594 - 1606102200,18402.5,18459.57,18343.52,18378.53,365.06152 - 1606104000,18376.82,18534.8,18350,18479.32,256.49413 - 1606105800,18479.32,18533.38,18449.83,18480,153.82573 - 1606107600,18479.99,18524.11,18404.25,18511.49,175.95468 - 1606109400,18511.02,18522.52,18456.44,18462.33,125.55357 - 1606111200,18464.36,18471.3,18325.01,18343.13,174.2651 - 1606113000,18343.75,18544.26,18338.2,18543.84,166.7887 - 1606114800,18546.15,18577.46,18443.64,18490.6,161.95139 - 1606116600,18490.18,18517.17,18442.05,18468.78,87.52742 - 1606118400,18470.05,18649,18469.38,18639.99,239.22532 - 1606120200,18640,18671.45,18553.6,18588.09,159.79867 - 1606122000,18587.7,18634.74,18550,18580.05,93.39391 - 1606123800,18586.3,18676.81,18563.84,18665.14,228.93941 - 1606125600,18665.13,18755,18653.75,18752.97,408.53162 - 1606127400,18754.83,18777.77,18706.94,18767.21,303.61273 - 1606129200,18769.85,18769.85,18582.38,18633.55,289.92157 - 1606131000,18630.64,18688.08,18583.18,18585.01,215.68563 - 1606132800,18585.01,18642.9,18500,18557.96,247.88142 - 1606134600,18557.96,18658.87,18557.95,18637.96,256.48965 - 1606136400,18639.28,18683.14,18355.4,18422.43,815.77845 - 1606138200,18422.43,18624.61,18400,18622.69,357.94271 - 1606140000,18619.21,18719.99,18550,18581.42,596.08899 - 1606141800,18585.25,18669.21,18521.09,18559.08,695.79715 - 1606143600,18552.69,18578.94,18333.33,18385.87,755.1815 - 1606145400,18385.86,18425.83,18249.1,18281.63,710.6999 - 1606147200,18283.57,18392.19,18250,18350.21,434.22055 - 1606149000,18350.45,18425,18158.78,18398.05,693.59393 - 1606150800,18399.8,18439.73,18356.08,18435.31,277.99549 - 1606152600,18440.73,18482.35,18334.65,18358.71,375.45832 - 1606154400,18359.01,18377.93,18296.51,18340.96,281.64905 - 1606156200,18340.96,18439.66,18330.01,18357.92,273.60471 - 1606158000,18357.93,18397.83,18315.23,18387.13,220.48286 - 1606159800,18388.57,18479.59,18383.84,18459.89,300.19815 - 1606161600,18462.68,18499.94,18400,18408.35,286.43615 - 1606163400,18408.34,18421.91,18367.22,18397.54,349.70019 - 1606165200,18397.54,18434.69,18344.63,18412.85,576.95581 - 1606167000,18408.59,18473.09,18402.88,18422.02,442.01447 - 1606168800,18422.01,18443.18,18363.61,18397.91,268.43885 - 1606170600,18394.32,18489.56,18391.74,18435.56,291.70194 - 1606172400,18435.54,18457.39,18294.65,18412.51,453.10946 - 1606174200,18412.51,18418.03,18313.22,18384.82,198.34707 - 1606176000,18384.82,18391.21,18231.2,18238.58,300.94906 - 1606177800,18238.58,18380.32,18222,18375.7,280.88788 - 1606179600,18375.02,18550,18345.97,18533.13,554.56956 - 1606181400,18533.13,18541.96,18472.37,18485.11,341.01913 - 1606183200,18485.1,18499.94,18386,18436.39,325.41935 - 1606185000,18436.39,18462.2,18360,18360,258.05906 - 1606186800,18360,18424.58,18343.25,18400,207.54762 - 1606188600,18400,18423.5,18343.65,18367.39,232.58061 - 1606190400,18367.25,18400.03,18327.23,18355.21,285.98168 - 1606192200,18353.91,18466.82,18307.01,18462.67,322.85036 - 1606194000,18462.67,18462.67,18350,18373.52,396.90975 - 1606195800,18374.79,18442.42,18318,18350.13,447.6584 - 1606197600,18347.44,18350.78,18052.02,18349.98,1205.76295 - 1606199400,18349.97,18414.85,18264.49,18413.67,303.91306 - 1606201200,18414.96,18462.75,18391.81,18447.28,212.09631 - 1606203000,18447.28,18468.2,18383.67,18392.39,111.11477 - 1606204800,18392.39,18510.13,18392.39,18477.57,202.81857 - 1606206600,18477.57,18640.93,18472.98,18638.75,300.84159 - 1606208400,18638.75,18897.99,18572,18889.13,1009.68243 - 1606210200,18889.65,19040,18730.18,18982.53,1804.38864 - 1606212000,18990.59,19100,18703.5,18767.77,1011.52383 - 1606213800,18767.78,18963.29,18715.25,18896.6,555.1925 - 1606215600,18896.59,19052,18855.92,18939.93,462.7174 - 1606217400,18939.95,19080,18921.03,19077,376.53546 - 1606219200,19075,19197.96,18975.79,19140.92,705.83211 - 1606221000,19142.85,19266.84,19073.27,19195.8,1222.71237 - 1606222800,19192.66,19332.95,19184.52,19269.34,746.51552 - 1606224600,19269.35,19330.72,19122.3,19205.04,690.41904 - 1606226400,19205.02,19289.77,19126.5,19281.33,543.6968 - 1606228200,19283.61,19420,19260.71,19419.99,1261.07033 - 1606230000,19419.99,19447,19327.13,19350.28,976.32454 - 1606231800,19350.4,19450,19273.24,19392.68,933.81826 - 1606233600,19392.19,19469,19234.63,19240.37,1027.78963 - 1606235400,19240.37,19339.92,19100.64,19312.78,699.85554 - 1606237200,19312.46,19367.69,19215.53,19232.16,596.22376 - 1606239000,19232.92,19318.85,19150.62,19214.7,589.28915 - 1606240800,19216.32,19276.47,19167.62,19199.52,612.9609 - 1606242600,19198.97,19285.01,19195.94,19276.07,402.1876 - 1606244400,19275.01,19300,19242.4,19285,441.88903 - 1606246200,19284.82,19291.67,19168,19168.01,542.05551 - 1606248000,19168.01,19250,19000,19094.16,742.29076 - 1606249800,19095.17,19110.16,18986,19069.62,486.38807 - 1606251600,19072.92,19189,18918.64,19030,359.7715 - 1606253400,19031.8,19073.93,18853.08,18944.42,493.21767 - 1606255200,18952.9,19085.19,18865.28,19056.53,238.45175 - 1606257000,19056.98,19147.59,19023.22,19140.01,264.26024 - 1606258800,19140,19205,19118.15,19142.01,279.90568 - 1606260600,19142.01,19203.97,19103.35,19172.84,255.15003 - 1606262400,19172.9,19234.71,19140,19161.78,249.43923 - 1606264200,19163.78,19240.34,19156.21,19180.87,262.3359 - 1606266000,19180.49,19225,19163.54,19185,258.63277 - 1606267800,19185,19185,19075.14,19100.99,392.9659 - 1606269600,19101,19102.89,19001,19010,314.8155 - 1606271400,19010,19058.4,18912.28,18985.13,571.93904 - 1606273200,18982.86,19049.47,18912.86,19048.23,412.69337 - 1606275000,19048.23,19048.23,18751,18826.13,598.49573 - 1606276800,18826.14,18918.48,18751,18900.29,414.05495 - 1606278600,18900.29,18931.66,18674.57,18699.71,395.85935 - 1606280400,18698.71,18832.52,18641.59,18825.07,417.1984 - 1606282200,18825.06,18903.68,18804.62,18894.91,315.21965 - 1606284000,18893.68,18960.54,18861.15,18925.01,247.17428 - 1606285800,18925.01,18939.16,18875,18912.17,170.61899 - 1606287600,18912.16,19038.97,18851,19007.91,140.09517 - 1606289400,19007.91,19070,18987.2,18992.58,266.04462 - 1606291200,18992.58,19200,18990.05,19190.5,307.77142 - 1606293000,19190.5,19241.19,19127.41,19133.4,360.90724 - 1606294800,19133.4,19166.89,19077.84,19144.96,133.67247 - 1606296600,19140.78,19167.51,19078.33,19167.51,251.26238 - 1606298400,19167.51,19360,19161.74,19358.13,385.39721 - 1606300200,19358.23,19358.26,19260.48,19307.91,209.63432 - 1606302000,19307.92,19357.53,19283.2,19313.81,597.14903 - 1606303800,19310.06,19359.96,19265.47,19299.62,386.84767 - 1606305600,19299.62,19326.87,19185.25,19254.75,231.57605 - 1606307400,19255.74,19342.85,19230,19329.06,241.29672 - 1606309200,19329.06,19335.46,19202,19263.07,385.75613 - 1606311000,19263.08,19500,19123.88,19216.27,1296.77601 - 1606312800,19216,19323.76,19131.25,19165,646.34807 - 1606314600,19164.99,19309.68,19131.24,19298.21,591.14246 - 1606316400,19298.46,19337.02,19227.95,19323.56,492.26523 - 1606318200,19323.56,19350,19138.11,19140.04,685.04396 - 1606320000,19145,19216.06,18913.59,19019.66,762.19584 - 1606321800,19019.08,19063.1,18875,18995.84,775.94984 - 1606323600,18994.38,19049.35,18901,18909.58,425.52335 - 1606325400,18909.98,19077.44,18830.58,19073.75,538.17787 - 1606327200,19073.76,19131.74,19042.99,19121.69,411.18215 - 1606329000,19121.7,19145.88,19049.97,19061.81,305.2156 - 1606330800,19061.88,19137.12,18974.38,19012.3,340.09101 - 1606332600,19013.86,19030.99,18906.05,18990.56,344.51791 - 1606334400,18990.56,19099.99,18867.11,18913.38,663.38136 - 1606336200,18913.38,18924.08,18727.63,18910,753.27194 - 1606338000,18910,19037.22,18850,18981.12,350.22724 - 1606339800,18981.12,19038.18,18831,18881.52,297.79371 - 1606341600,18878.74,18927,18750,18823.12,250.86622 - 1606343400,18823.12,18833.26,18708,18766.58,382.44104 - 1606345200,18761.48,18761.48,18502,18731.54,933.97813 - 1606347000,18730.5,18858.65,18707.03,18721.93,320.16563 - 1606348800,18717.24,18870.63,18600.31,18865.64,352.37947 - 1606350600,18860.53,18915.48,18810.25,18869.59,273.46026 - 1606352400,18870.81,18896.98,18785.48,18807.09,247.28561 - 1606354200,18807.02,18850.44,18745.69,18804.06,250.10165 - 1606356000,18808.08,18808.36,18505,18550.91,534.54796 - 1606357800,18546.64,18620,18350.51,18409.83,926.39207 - 1606359600,18407.68,18407.68,18037.51,18121.46,1725.41458 - 1606361400,18118,18121.46,17150,17952.19,3482.95508 - 1606363200,17952.19,18099.7,17768.27,17855.14,1152.03983 - 1606365000,17855.14,17958.79,17552.6,17767.8,1232.63747 - 1606366800,17767.93,17941.72,17690.01,17710.56,904.71024 - 1606368600,17706.72,17936.77,17690,17929.59,585.664 - 1606370400,17927.51,18028.02,17833.72,17991.55,424.76244 - 1606372200,17991.55,17999,17879.92,17968.09,324.60724 - 1606374000,17967.53,17967.53,17730.01,17765.17,354.63457 - 1606375800,17765.46,17805.75,17445.92,17589.93,1083.80244 - 1606377600,17579.97,17579.98,16898.31,17028.09,2307.4563 - 1606379400,17028.1,17028.1,16328.04,16824.73,3953.92219 - 1606381200,16843.18,17116.84,16200,16734.89,1622.2649 - 1606383000,16736.05,17131.07,16660.98,17058.63,811.44263 - 1606384800,17070.95,17316.61,17067.02,17133.51,924.68489 - 1606386600,17129.99,17303.9,17098.3,17294.92,503.15619 - 1606388400,17296.42,17433.81,17267.69,17280.6,574.31857 - 1606390200,17285.46,17355.26,16945,17103.74,1075.87356 - 1606392000,17095.22,17374.01,16981.87,17332.07,793.5919 - 1606393800,17331.63,17416.69,17175.33,17393.06,491.28234 - 1606395600,17391.94,17418.73,17221.86,17260.7,515.89627 - 1606397400,17266.25,17357.33,17048.22,17064.1,724.18795 - 1606399200,17065.07,17129.86,16755.01,16849.09,1069.99954 - 1606401000,16848.69,16960.4,16610.1,16776.49,595.24733 - 1606402800,16776.49,17249.99,16610.1,17164.67,808.6753 - 1606404600,17164.67,17215.51,16855.11,16912.74,919.07505 - 1606406400,16913.96,17045.03,16800.72,16941.93,1068.01792 - 1606408200,16934.47,16984.02,16500,16669.43,1709.3165 - 1606410000,16669.44,16669.46,16200.02,16297.09,3013.85849 - 1606411800,16299.06,16749.72,16289.45,16719.86,1964.14557 - 1606413600,16719.86,16818.08,16609.13,16684,1441.78704 - 1606415400,16684,16848.2,16528.6,16550,747.08006 - 1606417200,16547.2,16605.92,16300,16370.4,648.5211 - 1606419000,16382.73,16641.88,16332.17,16533.46,974.50176 - 1606420800,16532.58,16970.61,16519.1,16859.93,1074.56704 - 1606422600,16859.93,17200,16850.78,17179.46,1229.15163 - 1606424400,17182.14,17344.09,17076.9,17138.56,1140.13337 - 1606426200,17141.59,17233.7,17042.22,17050.01,659.17047 - 1606428000,17050.01,17181.95,17001,17175.11,427.38074 - 1606429800,17175.31,17250.93,17100.28,17192.1,338.93475 - 1606431600,17192.1,17201.12,16950.66,17138.36,458.78388 - 1606433400,17139.49,17182.09,17064.67,17170,202.33907 - 1606435200,17169.99,17199.01,17040.71,17134.99,297.35463 - 1606437000,17135,17424,17134.99,17408.2,711.03489 - 1606438800,17410.01,17475,17346.81,17368.46,668.76345 - 1606440600,17368.46,17454.02,17289.99,17327.67,544.15321 - 1606442400,17327.68,17340,17161.01,17291.8,472.31937 - 1606444200,17289.23,17304.07,17082,17103.91,533.0792 - 1606446000,17106.93,17280,17106.92,17238.16,219.51231 - 1606447800,17242.66,17287.69,17035.82,17096,323.35794 - 1606449600,17097.8,17196.4,17075.54,17157.94,274.06182 - 1606451400,17157.95,17170.43,17063.69,17083.18,204.98964 - 1606453200,17088.82,17313.8,17085.11,17259.14,284.4804 - 1606455000,17258.67,17356.3,17220.19,17272.42,241.32747 - 1606456800,17272.42,17309.15,17182.87,17220.23,230.88839 - 1606458600,17220.82,17323.96,17220.22,17296.87,128.49534 - 1606460400,17296.86,17309.71,17109.34,17141.13,351.3249 - 1606462200,17141.12,17167.72,17040.01,17090.67,488.31723 - 1606464000,17104.52,17108.13,16735.41,16746.46,1034.39963 - 1606465800,16746.45,16895.4,16721,16843.01,516.85423 - 1606467600,16844.88,17200,16674.23,16791.65,708.81177 - 1606469400,16792.3,16840.7,16592.46,16640.05,714.42216 - 1606471200,16639.31,16879.64,16639.31,16795.26,488.67764 - 1606473000,16795.26,16933.67,16702.6,16905.25,370.25084 - 1606474800,16902.75,16927.9,16775.91,16856.49,264.72796 - 1606476600,16852.16,16852.16,16735.17,16783.86,259.95076 - 1606478400,16783.87,16932.75,16770,16893.96,258.99358 - 1606480200,16890.91,17074.38,16890.91,17069.19,379.7274 - 1606482000,17069.19,17077.81,16973.27,17000.01,284.14781 - 1606483800,17000.01,17034.62,16910.74,16942.61,402.14341 - 1606485600,16942.51,16958.2,16767.71,16844.24,462.71422 - 1606487400,16844.06,16944.84,16725.57,16760.51,925.56548 - 1606489200,16760.5,16775.85,16617.61,16664.34,1537.56584 - 1606491000,16662.21,16722.7,16400,16494.26,2181.28374 - 1606492800,16490,16762.78,16459.35,16703.38,1029.32538 - 1606494600,16702.08,16845.02,16659.69,16823.01,655.8091 - 1606496400,16823,16823,16745,16758.85,515.60466 - 1606498200,16758.85,16769.01,16670.02,16737.45,452.20861 - 1606500000,16737.38,16870.01,16698,16820.01,408.15035 - 1606501800,16820.01,16850,16761.17,16790.52,270.51303 - 1606503600,16790.27,16855,16757.81,16763.11,287.87031 - 1606505400,16763.11,16823.23,16722.9,16816,221.03384 - 1606507200,16815.99,17069.03,16751.38,17045.9,508.08484 - 1606509000,17055.51,17137.09,17016.34,17078.7,420.58592 - 1606510800,17078.7,17095.29,17010.01,17010.02,256.36272 - 1606512600,17010.02,17031.12,16905.5,17002.85,352.28574 - 1606514400,17002.71,17056.97,16935.33,16971.44,219.40119 - 1606516200,16971.18,17029.7,16930.22,16976.33,266.76408 - 1606518000,16976.33,17088.06,16975.53,17070.82,319.08945 - 1606519800,17070.82,17165.86,17062.6,17153.95,387.21272 - 1606521600,17155.43,17181.91,16989.13,17092.33,364.72589 - 1606523400,17095.94,17176.28,17061.13,17168.77,286.0485 - 1606525200,17168.77,17198,17085.79,17175.68,314.83725 - 1606527000,17179.97,17195.28,17064.01,17149.63,298.20132 - 1606528800,17148.5,17149.97,17034.39,17065.1,268.04273 - 1606530600,17064.46,17090.61,17000,17000.71,222.20362 - 1606532400,17000.73,17027.85,16938.52,16956.37,209.55503 - 1606534200,16955.95,17027.97,16950,17010.3,106.2357 - 1606536000,17010.47,17045.73,16956.93,16979.99,129.80765 - 1606537800,16980,16988.98,16907.8,16973.53,159.79272 - 1606539600,16971.6,16989.03,16882.33,16899.39,130.89306 - 1606541400,16896.32,16989.03,16888.35,16989.03,93.14142 - 1606543200,16989.03,17053.05,16978.26,17008.97,96.36125 - 1606545000,17006.02,17029.47,16975.29,17029.47,48.24419 - 1606546800,17029.47,17075.81,17026.15,17041.53,83.08434 - 1606548600,17041.53,17073.76,17003.55,17025.92,78.04269 - 1606550400,17024.31,17057.9,16905.94,16911.12,79.00481 - 1606552200,16909.37,16938.5,16880,16889.6,151.97988 - 1606554000,16890,16967.97,16885.8,16956.92,76.06343 - 1606555800,16957.92,16974.37,16915.84,16927.18,44.126 - 1606557600,16928.19,17135.95,16890.32,17132.51,209.10303 - 1606559400,17132.68,17252.96,17100.69,17199.77,285.58445 - 1606561200,17199.06,17200,17104.91,17120.03,117.0654 - 1606563000,17120.03,17198.1,17120.03,17164.46,75.67633 - 1606564800,17166,17231.75,17129.71,17162.16,190.97816 - 1606566600,17159.82,17172.7,17071.71,17143.02,125.53936 - 1606568400,17143.02,17221.13,17087.72,17219.34,140.12554 - 1606570200,17212.41,17374.21,17212.4,17370.99,399.68855 - 1606572000,17370.99,17411.26,17322.58,17343.13,494.8371 - 1606573800,17343.14,17373.56,17277.24,17351.51,294.21026 - 1606575600,17352,17444.88,17350.82,17383.91,357.69556 - 1606577400,17382.04,17534.03,17355.75,17533.05,463.44792 - 1606579200,17533.05,17749.49,17533.04,17666.57,1333.15128 - 1606581000,17668.48,17789,17668.48,17731.58,663.05645 - 1606582800,17725.85,17768.74,17588.66,17707.56,630.0971006 - 1606584600,17711.59,17771.11,17686.59,17768.94,409.8775996 - 1606586400,17770.23,17787.54,17700,17701.58,472.6828396 - 1606588200,17701.57,17762.19,17670.3,17742.11,510.5422431 - 1606590000,17742.1,17758.64,17692.92,17719.34,260.5110337 - 1606591800,17719.76,17933.25,17714.79,17843.78,570.2988485 - 1606593600,17849.3,17902.88,17789.46,17807.74,427.5756127 - 1606595400,17807.71,17847.31,17692.45,17692.45,388.9971704 - 1606597200,17692.45,17772.06,17685,17724.62,200.4692873 - 1606599000,17723.81,17770,17701.57,17762.22,159.4123788 - 1606600800,17765.45,17774.5,17652,17685.01,193.6155301 - 1606602600,17685,17849.99,17685,17777.36,189.7926698 - 1606604400,17777.7,17821.47,17753.34,17796.6,166.4552225 - 1606606200,17796.85,17796.89,17680,17739.85,184.3921575 - 1606608000,17736.1,17781.46,17549.11,17564.83,354.2007392 - 1606609800,17566.57,17669.02,17550.86,17668.84,188.1665541 - 1606611600,17668.84,17680.69,17581.18,17581.3,117.6553309 - 1606613400,17581.01,17646.99,17535.26,17599,159.7109783 - 1606615200,17599,17684.1,17556,17647.84,130.0325102 - 1606617000,17646.09,17765.76,17637.05,17758.89,135.9401931 - 1606618800,17760.24,17816.99,17743.19,17780.01,107.2540559 - 1606620600,17780.01,17900,17763.81,17887.22,234.2754731 - 1606622400,17884.61,17884.61,17800.01,17808.78,148.1587902 - 1606624200,17808.78,17828.61,17770.96,17778.49,73.06064425 - 1606626000,17775.65,17847.48,17760.31,17823.56,93.4469565 - 1606627800,17823.55,17848.38,17800,17807.76,86.37819726 - 1606629600,17807.76,17809.34,17728.24,17740.55,102.7634339 - 1606631400,17740.56,17795.88,17732.2,17743.85,98.49650631 - 1606633200,17743.18,17822,17686.91,17822,208.2284349 - 1606635000,17821.99,17857.78,17795,17829.18,120.8419298 - 1606636800,17824.87,18132.27,17815.11,18108.92,368.0497526 - 1606638600,18108.92,18165.05,18036.54,18157.54,254.1347115 - 1606640400,18160.1,18199,18060.15,18176.63,167.9254987 - 1606642200,18179.34,18230,18072.99,18113,183.3511087 - 1606644000,18112.99,18154.39,18050.01,18147.91,76.30382404 - 1606645800,18149.23,18230.33,18100.24,18198.66,212.5697909 - 1606647600,18194.28,18248.21,18064.22,18086.48,229.827242 - 1606649400,18087.54,18121.1,18018.53,18098.98,174.1136298 - 1606651200,18100.58,18145.25,17950,18036.71,206.1285289 - 1606653000,18031,18090,17915.94,18038.78,159.5768686 - 1606654800,18038.85,18139.87,18020,18097.56,265.3015002 - 1606656600,18092.48,18112.58,18029.81,18112.58,159.9348678 - 1606658400,18111.67,18208.87,18107.83,18129.32,268.6787886 - 1606660200,18129.15,18131.5,18045.53,18055.21,278.5089975 - 1606662000,18055.21,18149.1,17985,18122.94,204.4855679 - 1606663800,18124.14,18165.27,18056.46,18130.35,204.1910062 - 1606665600,18137.87,18165,17947.22,18005.9,346.4815173 - 1606667400,18005.77,18115.72,17964.04,18112.12,179.8824597 - 1606669200,18110.27,18140.01,18075.01,18117.92,195.0273725 - 1606671000,18118.34,18160,18080,18114.9,181.3540027 - 1606672800,18113.11,18117.03,18064,18071.22,139.7372777 - 1606674600,18071.22,18145,18070.04,18136.22,131.5290223 - 1606676400,18136.22,18145,18066.07,18068.82,122.6604288 - 1606678200,18072.72,18110.27,18035.5,18066.69,110.665316 - 1606680000,18068.95,18194.99,18046.39,18180.01,206.2397947 - 1606681800,18180.01,18242.54,18152.52,18228.37,167.1118894 - 1606683600,18228.12,18359,18220.17,18300.06,375.1101715 - 1606685400,18300.06,18337.26,18261,18274.99,190.7996855 - 1606687200,18274.99,18289.31,18079.49,18130.01,305.445164 - 1606689000,18130.02,18220.46,18084.53,18158.13,179.3002664 - 1606690800,18155.65,18258.22,18140.01,18224.54,160.2264617 - 1606692600,18218.68,18223.13,18150,18202.04,142.998129 - 1606694400,18202.02,18400,18201.47,18399.99,474.9428944 - 1606696200,18400,18490,18383.38,18454.01,599.87893 - 1606698000,18458.12,18516.36,18369.1,18405.87,517.9731265 - 1606699800,18405.86,18564.31,18396.7,18501.08,398.6141446 - 1606701600,18501.08,18545.37,18459.46,18514.77,281.2687115 - 1606703400,18513.77,18574.46,18469.01,18528.36,371.8450077 - 1606705200,18528.36,18597.79,18460,18591.03,390.7550943 - 1606707000,18588.7,18612.87,18513.55,18606.02,322.067917 - 1606708800,18607.41,18636.77,18481.24,18491.51,411.8633305 - 1606710600,18490.8,18562.11,18472.68,18542.16,193.1380609 - 1606712400,18542.16,18625,18499,18625,224.3965406 - 1606714200,18625,18640,18530.68,18539.96,210.5151262 - 1606716000,18539.95,18578.79,18505.41,18506.47,162.7329917 - 1606717800,18507.26,18566.66,18494.72,18549.66,97.88596371 - 1606719600,18546.01,18693.43,18545.5,18684.85,295.8664106 - 1606721400,18680.98,18694.96,18596.77,18634.68,178.1790956 - 1606723200,18634.68,18634.73,18400,18442.55,325.1419184 - 1606725000,18439.06,18536.99,18431.27,18477.05,150.0881996 - 1606726800,18477.29,18523.63,18412.28,18417.55,181.8482989 - 1606728600,18416.23,18500.26,18345.72,18493.43,248.4962004 - 1606730400,18491.76,18569.15,18467.57,18556.87,132.5010701 - 1606732200,18554.42,18591.21,18512.3,18512.3,127.7953257 - 1606734000,18512.3,18664.56,18512.3,18640.94,156.5836872 - 1606735800,18640.93,18675,18596.95,18611.27,169.3995767 - 1606737600,18613.43,18819.34,18612.41,18782.07,316.7531097 - 1606739400,18783.56,18861.11,18739.72,18860.9,364.2552799 - 1606741200,18860.36,18950,18812.12,18949.99,517.0661818 - 1606743000,18950,19239.33,18891.69,19175.71,1057.144076 - 1606744800,19175.71,19350.01,19139.74,19290,1176.797745 - 1606746600,19290,19829.47,19222.11,19500,2952.52236 - 1606748400,19504.17,19873.23,19502.05,19677.96,2091.265552 - 1606750200,19672.11,19699.95,19135.18,19281.35,2201.308492 - 1606752000,19277.04,19588.53,19277.04,19513.62,1138.738673 - 1606753800,19517.42,19525.87,19111.93,19185.35,1169.875412 - 1606755600,19178.69,19325.77,18998.66,19282.49,1316.129713 - 1606757400,19279.7,19467.48,19279.7,19392.04,606.8998271 - 1606759200,19388.94,19474.69,19184.75,19242.23,637.2101604 - 1606761000,19241.33,19348.39,19164.46,19186.78,429.8588453 - 1606762800,19184.6,19310,19106.29,19300.72,437.1085292 - 1606764600,19297.58,19314.32,19134.98,19262.72,359.0366878 - 1606766400,19263.7,19435.83,19172.31,19422.57,517.5602747 - 1606768200,19419.68,19490.04,19382.01,19439.79,483.5742959 - 1606770000,19440,19519.74,19395.59,19450.86,423.6795323 - 1606771800,19450,19471.69,19346.98,19382,335.8518579 - 1606773600,19382,19388.61,19261.84,19386.39,356.829377 - 1606775400,19382.94,19500,19380.31,19500,304.1228463 - 1606777200,19500,19624.75,19460.42,19624.75,510.2353529 - 1606779000,19624.74,19775,19611.92,19713.94,923.790395 - 1606780800,19713.94,19730,19511,19683.3,932.4950528 - 1606782600,19682.01,19692.63,19489,19573.18,399.7214878 - 1606784400,19573.18,19649,19481.01,19502.48,312.0154497 - 1606786200,19501.41,19642.69,19440.17,19603.97,329.974558 - 1606788000,19606.4,19680,19544.15,19640.81,400.5788392 - 1606789800,19641.73,19718.4,19591.61,19691.22,489.6339233 - 1606791600,19691.22,19693.21,19552.36,19574.73,406.9264191 - 1606793400,19574.73,19599.71,19355.73,19440.51,578.1137026 - 1606795200,19428.92,19532.58,19355.07,19445.76,531.1008894 - 1606797000,19445.75,19491.91,19360,19366.73,473.9636031 - 1606798800,19363.67,19440.92,19304.82,19440.86,404.1912228 - 1606800600,19440.86,19509.11,19403.98,19490.88,285.9225772 - 1606802400,19490.88,19524.01,19445.63,19475.01,218.2317059 - 1606804200,19475.01,19475.01,19320.57,19347.27,340.0583833 - 1606806000,19347.26,19504.94,19310.2,19456.96,168.309949 - 1606807800,19456.94,19556.44,19395.63,19524.69,151.6642639 - 1606809600,19525.97,19568.91,19490.79,19534.36,188.0868574 - 1606811400,19543.92,19577.47,19450,19479.29,166.9123987 - 1606813200,19480.64,19560.02,19446.71,19462.24,167.0950615 - 1606815000,19456.66,19583.01,19440,19579.37,161.4433964 - 1606816800,19579.36,19785,19573.66,19771.91,542.7665324 - 1606818600,19774.7,19824,19686.69,19757.83,493.7260333 - 1606820400,19753.82,19915.14,19002.48,19354.91,2019.912815 - 1606822200,19362.68,19592.08,19262.09,19450.84,966.423144 - 1606824000,19447.69,19489.18,18631.03,18734.19,1756.30235 - 1606825800,18715.5,18998.99,18444,18577.6,2414.457601 - 1606827600,18578.53,18784.99,18109,18751.3,2872.467605 - 1606829400,18751.11,18875.65,18683.46,18788.75,1145.663211 - 1606831200,18788.75,18974.77,18662.43,18866.6,1029.370246 - 1606833000,18866.97,19386.73,18841.28,19308.99,1199.144285 - 1606834800,19308.99,19500,19240,19436.72,759.2783487 - 1606836600,19441.98,19442.84,19193.89,19281.99,751.613688 - 1606838400,19282,19346.31,18950,18998.02,849.1600532 - 1606840200,19004.47,19181.83,18987.17,19058.17,511.6945368 - 1606842000,19058.16,19091.93,18626.02,18945.8,1329.795043 - 1606843800,18941.82,19091.93,18749,19057.88,715.0512627 - 1606845600,19063.14,19063.53,18845.39,18879.32,375.3851614 - 1606847400,18879.32,18994.69,18695.6,18746.07,602.2683383 - 1606849200,18746.07,18990,18719.83,18914.86,255.8179795 - 1606851000,18914.81,19148.97,18914.81,19087.7,411.5227767 - 1606852800,19088.42,19153.43,18929.27,18992.01,276.5139784 - 1606854600,18999.13,19046.82,18855.27,19041.96,263.2336645 - 1606856400,19040.61,19175,18952.88,19175,253.2944586 - 1606858200,19173.97,19220,19035.13,19057.46,183.6220042 - 1606860000,19056.47,19175.42,19045.13,19092.25,195.3673402 - 1606861800,19092.25,19127.57,18850,18912.01,347.458751 - 1606863600,18912.01,18958.13,18736,18745.64,453.088491 - 1606865400,18744.83,18885.29,18738.82,18782.97,272.5839262 - 1606867200,18778.18,18795.05,18461.17,18779.58,1082.129754 - 1606869000,18778.29,18890,18778.29,18847.92,296.8231817 - 1606870800,18842.26,18842.27,18716.94,18793.82,242.7525146 - 1606872600,18791.92,18985.99,18777.28,18866.41,203.7365447 - 1606874400,18866.4,18866.97,18767.12,18774.82,194.1669344 - 1606876200,18774.98,18799.43,18660.02,18693.14,205.5321101 - 1606878000,18691.82,18807.27,18549.98,18586.29,669.5279152 - 1606879800,18578.63,18697.86,18523.86,18627.9,444.5316632 - 1606881600,18627.89,18712.51,18335,18396.28,738.6753378 - 1606883400,18396.95,18599.99,18350.79,18566.71,454.5564185 - 1606885200,18565,18649,18480,18500,271.8850727 - 1606887000,18499.99,18675.05,18469.3,18666.36,232.2201616 - 1606888800,18664.17,18822.15,18640.36,18796.25,208.2024458 - 1606890600,18799.57,18946.96,18745.01,18932.64,331.0486997 - 1606892400,18933.2,19000,18830.97,18867.12,373.0808264 - 1606894200,18863.24,19133.33,18837.19,19130.78,503.0754794 - 1606896000,19121.29,19340,19061.02,19332.4,422.4416669 - 1606897800,19332.4,19339.99,19145.57,19200,302.5474202 - 1606899600,19200,19315.21,19149.79,19250.61,385.6603668 - 1606901400,19243.38,19255.78,19018.85,19028.71,292.0584902 - 1606903200,19030.03,19154.32,18997.81,19106.71,212.7204296 - 1606905000,19111.97,19198.66,19082.21,19107.57,152.6755817 - 1606906800,19109.67,19191.01,19033.35,19137.32,170.7033108 - 1606908600,19137.31,19195,19067.06,19130.28,114.8869317 - 1606910400,19130.29,19130.42,18852,18955.09,447.4099477 - 1606912200,18948.01,18968.22,18800.8,18949.03,255.0260483 - 1606914000,18950.03,19248.17,18935.7,19212.11,463.6566892 - 1606915800,19209.31,19264.6,19115.04,19122.33,268.3197507 - 1606917600,19125.53,19172.49,18934.04,18984.94,482.2738685 - 1606919400,18984.65,19012.45,18850.11,18914.17,360.9110956 - 1606921200,18908.33,19000,18745.64,18846.22,516.6977709 - 1606923000,18843.02,18936.1,18785.78,18900.38,451.0801399 - 1606924800,18900.38,19019.63,18780.43,18986.21,466.3043466 - 1606926600,18987.66,18990.53,18832.38,18867.65,304.844483 - 1606928400,18870.97,18963.15,18820.41,18916.69,234.0696609 - 1606930200,18918.67,19018.2,18865.71,18991.51,319.3856149 - 1606932000,18989.69,19085.28,18955.84,19078.42,340.6780996 - 1606933800,19077.92,19080.22,19000,19024.39,256.8296454 - 1606935600,19024.36,19130.99,18977.78,19019.23,295.0523345 - 1606937400,19014.18,19147.73,19006.09,19120.42,297.6472396 - 1606939200,19119.2,19165.94,19057.5,19090.79,345.2600636 - 1606941000,19092.42,19159,19085.19,19090.41,271.3356101 - 1606942800,19090.44,19169.99,19051.91,19057.93,183.2293633 - 1606944600,19058.99,19160,19058.67,19155.01,159.1874849 - 1606946400,19155.01,19240,19149.41,19172.35,320.1546283 - 1606948200,19171.1,19207.44,19102.38,19126.69,213.2822113 - 1606950000,19126.7,19212.13,19102.1,19206.02,183.859992 - 1606951800,19204.64,19274.3,19186.15,19225.63,276.2005134 - 1606953600,19222.45,19300,19207.24,19237,331.5098677 - 1606955400,19237,19239.03,19171.6,19193.53,229.1828098 - 1606957200,19193.53,19193.55,19050,19090.77,272.9734692 - 1606959000,19090.77,19100,18954.23,19031.03,293.0656683 - 1606960800,19030.88,19097.93,18950.78,19032.88,287.7548674 - 1606962600,19032.89,19101.03,19000,19058.75,198.8692953 - 1606964400,19058.07,19164.77,19029.39,19126.52,216.7789102 - 1606966200,19126.53,19190,19099.18,19099.19,175.5579047 - 1606968000,19099.19,19127.51,19044.21,19064.28,198.6353144 - 1606969800,19064.28,19099.5,19030.8,19049.17,115.7677863 - 1606971600,19050.1,19123.41,19036.63,19115.16,155.7401701 - 1606973400,19116.02,19116.02,18885,18929.44,262.6925847 - 1606975200,18929.44,19015.68,18892.01,18998.34,348.5295736 - 1606977000,18998.62,19012.14,18952.02,18974.45,151.7778918 - 1606978800,18980,19089.19,18927.43,19082.94,277.9130364 - 1606980600,19077.06,19255.41,19077.06,19208.47,444.8510493 - 1606982400,19213.17,19466.58,19175.01,19434.3,590.1730333 - 1606984200,19432.81,19466.19,19364.98,19390.91,256.864601 - 1606986000,19390.91,19434.96,19124.4,19197.43,369.1431149 - 1606987800,19198.69,19375,19165.59,19375,132.9160315 - 1606989600,19374.85,19412.93,19252.24,19405.42,179.0084794 - 1606991400,19405.34,19435.49,19342.3,19364.44,209.330206 - 1606993200,19364.44,19460,19300.23,19433.87,209.5795821 - 1606995000,19433.87,19444.77,19330.72,19411.84,247.343647 - 1606996800,19411.74,19440.09,19250.5,19320.16,281.5998632 - 1606998600,19325.34,19359.47,19274.82,19350.11,567.2256562 - 1607000400,19350.03,19398.19,19347,19360.91,344.6252916 - 1607002200,19360.91,19387.86,19274.56,19302.3,602.2211361 - 1607004000,19298.99,19429.34,19290.32,19392.25,262.0144193 - 1607005800,19392.78,19392.78,19336.52,19370.06,238.9270764 - 1607007600,19370.6,19419.49,19322.27,19410.89,171.232198 - 1607009400,19410.9,19558.78,19385.63,19556.13,516.9886084 - 1607011200,19558.34,19625.64,19280,19393.76,849.0973454 - 1607013000,19397.41,19456.71,19335.01,19380.28,368.5675152 - 1607014800,19380.28,19403.32,19210.82,19297.62,446.7578103 - 1607016600,19297.61,19332.12,19260,19317.03,279.599371 - 1607018400,19317.03,19398.73,19317.01,19389.07,211.4828883 - 1607020200,19389.08,19418.63,19355.5,19400.25,163.084542 - 1607022000,19400.26,19406.31,19360.61,19365.28,290.1654989 - 1607023800,19365.29,19450,19365.05,19442.2,341.4770513 - 1607025600,19441.43,19465,19405.22,19411.46,323.760513 - 1607027400,19411.58,19424.49,19320,19387.59,497.2641224 - 1607029200,19389.16,19417.4,19350,19401.26,307.8780385 - 1607031000,19401.25,19475,19394,19463.29,210.460402 - 1607032800,19463.28,19497.35,19452.26,19497.05,219.2771529 - 1607034600,19497.35,19497.35,19430.33,19489.22,261.5989051 - 1607036400,19490.07,19556.3,19451.21,19466.29,393.4278136 - 1607038200,19466.29,19479.27,19435.71,19448.64,273.4438475 - 1607040000,19446.43,19493,19399,19484.61,420.5594639 - 1607041800,19484.6,19546.46,19475.73,19491.95,357.3997548 - 1607043600,19493.78,19512.13,19374.98,19398.99,305.0322317 - 1607045400,19398.99,19412.16,19339.05,19347,211.8543102 - 1607047200,19347,19395.49,19332.12,19374.84,192.1370129 - 1607049000,19374.84,19375.63,19255.6,19273.01,269.7359723 - 1607050800,19273.01,19340.99,19235.32,19245.05,164.9870845 - 1607052600,19245.06,19294.64,19155,19183.49,289.6407712 - 1607054400,19178.1,19289.92,19134.28,19287.93,209.8369017 - 1607056200,19288,19350,19274.75,19311.53,194.3154934 - 1607058000,19311.69,19332.04,19290,19316.76,150.8349538 - 1607059800,19316.54,19316.86,19205.65,19214.37,101.1721832 - 1607061600,19214.37,19375,19211.11,19375,177.4033132 - 1607063400,19375,19375,19312.05,19330.62,124.1014904 - 1607065200,19330.62,19330.62,19275.06,19294.58,336.2008211 - 1607067000,19294.57,19348.25,19263.55,19309.62,513.0065407 - 1607068800,19309.62,19442.78,19304.88,19442.78,360.7448391 - 1607070600,19442.78,19464.06,19372.47,19405.42,199.0280899 - 1607072400,19405.42,19422.54,19330.72,19351.74,149.6372724 - 1607074200,19351.73,19397.23,19342.34,19378.88,114.4165929 - 1607076000,19378.88,19378.88,18899.84,18972.14,1236.226563 - 1607077800,18972.14,19078.96,18907.74,19003.15,376.0785862 - 1607079600,19003.15,19130.91,18980.01,19003.22,299.7088599 - 1607081400,19001.04,19079.89,18784.55,18837.41,566.7555211 - 1607083200,18837.42,18902.15,18700,18877.25,801.159279 - 1607085000,18877.25,19055.69,18877.24,19038.91,473.908108 - 1607086800,19038.91,19046.62,18911.38,18991.01,288.9189281 - 1607088600,18991.06,19045.34,18961.72,19023.89,246.4445213 - 1607090400,19025.94,19161.63,18940,19150,342.1801001 - 1607092200,19150.25,19157.87,19052.04,19065.67,271.8497892 - 1607094000,19061.85,19092.89,18952.23,18985.8,335.1264485 - 1607095800,18988.72,19026.79,18956.17,18966.96,228.1230767 - 1607097600,18965.09,18997.74,18844,18924.7,686.2151695 - 1607099400,18926.12,18998,18827.66,18995.39,315.5282301 - 1607101200,18993.11,19037.24,18955.94,18996.07,261.3250585 - 1607103000,18996.07,19032.16,18943.42,18977.07,316.1141393 - 1607104800,18977.08,19004.74,18939.14,18997.14,243.66526 - 1607106600,18997.14,19084.76,18996.68,19069.75,209.0909341 - 1607108400,19069.75,19078.67,19021.19,19024.01,202.0395898 - 1607110200,19024,19075.29,19011.36,19056.01,177.921887 - 1607112000,19056,19059.44,18969.63,19010.45,302.5665908 - 1607113800,19010.46,19013.72,18900.01,18978.53,289.3370354 - 1607115600,18978.37,19005.96,18831.02,18839.98,313.0381725 - 1607117400,18839.98,18907.61,18750,18821.5,471.9306253 - 1607119200,18826.21,18886.1,18769.7,18790.32,303.2789324 - 1607121000,18790.57,18845,18576.05,18673.76,814.623466 - 1607122800,18670.54,18852.43,18624.03,18834.95,510.373829 - 1607124600,18834.95,18840.52,18634.63,18658.1,521.0112345 - 1607126400,18658.09,18696.94,18501,18624.04,667.8327478 - 1607128200,18624.05,18811.28,18620.34,18785.37,338.2964116 - 1607130000,18785.37,18832.26,18730.09,18746.73,225.2309279 - 1607131800,18745.03,18797,18657.13,18665.38,270.7308345 - 1607133600,18665.02,18778.94,18658.1,18773.41,215.6161659 - 1607135400,18773.4,18864.95,18773.4,18815.43,155.4513625 - 1607137200,18815.43,18888.88,18763.99,18868.89,157.2800949 - 1607139000,18867.02,18900,18821.95,18831.82,108.2312672 - 1607140800,18831.82,18924.79,18820.15,18924.79,162.8497017 - 1607142600,18924.79,18951.99,18861.2,18884.92,167.9380333 - 1607144400,18884.91,18904.36,18860.04,18881.14,131.1012669 - 1607146200,18882.79,18985.97,18881.66,18973.07,132.5771253 - 1607148000,18973.99,18984.28,18929.15,18940.11,118.4652821 - 1607149800,18940.45,18999,18926.6,18983.07,104.9928722 - 1607151600,18983.07,18999,18921,18958.69,131.2027654 - 1607153400,18959.84,18998.95,18924.06,18931.01,124.5019949 - 1607155200,18931.01,19100,18931,19099.99,205.4400126 - 1607157000,19100,19189.98,19078.91,19168.21,141.4816996 - 1607158800,19166.89,19175,19085.84,19115,95.03715627 - 1607160600,19118.51,19131.63,19074.84,19128.09,70.76602895 - 1607162400,19130.34,19149,19059.88,19085.45,81.27632728 - 1607164200,19085.71,19140,19067.44,19131.64,76.84002984 - 1607166000,19131.96,19143.1,18988.84,18992.51,194.0232106 - 1607167800,18994.29,19060.92,18982.12,19032.92,91.84027464 - 1607169600,19031.6,19092.08,18977.04,19036.11,107.7943599 - 1607171400,19038.27,19091.58,19018.06,19083.32,61.94572555 - 1607173200,19081.59,19087.59,19001.01,19010.71,62.32996692 - 1607175000,19010.61,19023.11,18959.63,18995.45,104.96214 - 1607176800,18995.44,19059.07,18977.97,19015,78.73514453 - 1607178600,19016.17,19099.72,19000,19090.17,103.4095453 - 1607180400,19089.36,19163.45,19067.16,19091,129.1992051 - 1607182200,19088.34,19129,19062.03,19126.14,85.61658194 - 1607184000,19126.13,19157.93,19073.51,19079.12,152.7767808 - 1607185800,19079.12,19127.25,19066.48,19111.17,159.9404791 - 1607187600,19111.17,19118,19042,19080.56,163.7776916 - 1607189400,19079.95,19139.69,19073.86,19139.41,89.67499899 - 1607191200,19137.83,19150,19106.58,19137.13,113.5448267 - 1607193000,19137.12,19158,19106.98,19130.9,102.4790992 - 1607194800,19130.89,19185.83,19104.36,19106.41,147.2302247 - 1607196600,19107.09,19137.03,19089.99,19137,99.79084136 - 1607198400,19137.03,19155.61,19086.34,19104.94,78.79837533 - 1607200200,19102.97,19136.6,19025.01,19066.66,140.3296795 - 1607202000,19066.66,19127.04,19065.29,19072.85,87.39140833 - 1607203800,19070.36,19075,19011.91,19018.74,105.2724094 - 1607205600,19021.24,19060.92,19003.47,19045.53,238.9787603 - 1607207400,19047.61,19067.22,19010,19028.68,106.4098423 - 1607209200,19028.68,19089.34,19028.67,19085.68,82.92908963 - 1607211000,19080.74,19168.52,19065.58,19158.96,139.0838979 - 1607212800,19158.96,19275,19150,19188.44,357.5962267 - 1607214600,19187.53,19297.02,19180.35,19282.34,227.9928419 - 1607216400,19282.34,19349,19240.78,19309.56,297.4588256 - 1607218200,19309.57,19339.38,19234.99,19267.99,197.2107127 - 1607220000,19267.99,19293.02,19210.28,19279.01,164.1583783 - 1607221800,19279.01,19287.93,19235.76,19239.61,95.09780389 - 1607223600,19238.3,19255.79,19158.34,19200,107.7114257 - 1607225400,19200,19207.1,19150,19199.16,93.49337899 - 1607227200,19193.09,19241.93,19169.59,19208.3,80.00163181 - 1607229000,19209.9,19238.73,19193.81,19198.43,58.42033227 - 1607230800,19198.43,19229.51,19113.14,19134.83,102.3196909 - 1607232600,19133.17,19192.75,19121.61,19164.97,86.05123481 - 1607234400,19163.12,19220,19150,19206.98,79.74176734 - 1607236200,19206.98,19237.69,19192.47,19196.66,59.82189996 - 1607238000,19196.24,19262.06,19186.84,19252.16,75.47483679 - 1607239800,19252.16,19271.99,19216.38,19243.42,44.67293188 - 1607241600,19244.63,19264.53,19134.65,19165.65,68.78463571 - 1607243400,19162.22,19162.22,19019.61,19033.57,258.9661648 - 1607245200,19035.05,19094.86,19015.01,19064.41,90.09185682 - 1607247000,19064.41,19094.37,18968.37,19058.34,195.4800429 - 1607248800,19058.34,19074.43,18972.19,19035.91,55.43287626 - 1607250600,19037.22,19070.12,19003.55,19053.87,72.61296685 - 1607252400,19053.87,19061.85,18976.83,18984.49,63.46020916 - 1607254200,18984.5,19108.2,18984.5,19100,114.8022745 - 1607256000,19099.99,19099.99,19047.79,19073.49,59.54256291 - 1607257800,19073.01,19073.52,18975,18993.79,94.87071049 - 1607259600,18993.8,19031.88,18984.16,19030.98,58.62081893 - 1607261400,19032.43,19036.61,18878,18968.6,280.6460744 - 1607263200,18968.2,19111.87,18950.64,19090.01,153.3364869 - 1607265000,19090.01,19148.48,19057.51,19132.08,102.2787381 - 1607266800,19133.18,19172.97,19110.19,19139.31,113.2978883 - 1607268600,19139.31,19150.86,19112.58,19145.45,101.1222762 - 1607270400,19145.45,19219.99,19024.16,19063.25,213.3285224 - 1607272200,19063.49,19128.29,19042.87,19122.25,97.92377088 - 1607274000,19122.3,19194.9,19082.51,19169.78,103.9034853 - 1607275800,19169.78,19179.05,19133.68,19145.83,100.2762438 - 1607277600,19145.07,19180,19108.02,19126.48,131.4974772 - 1607279400,19128.04,19147.55,19100,19116.65,78.2787517 - 1607281200,19116.65,19168.02,19086.63,19090.82,120.9495635 - 1607283000,19090.82,19156.6,19090,19148.17,76.42174793 - 1607284800,19147.8,19171.63,19145,19157.57,84.19239112 - 1607286600,19157.56,19195.17,19150.74,19177.35,185.3977387 - 1607288400,19177.34,19180.96,19136.46,19164.43,106.729014 - 1607290200,19164.43,19247.64,19164.43,19247.64,145.1278254 - 1607292000,19247.64,19255,19175,19180.69,159.2147309 - 1607293800,19181.21,19181.45,19062,19142.47,177.8324505 - 1607295600,19142.18,19430.25,19139.75,19361.07,658.3338543 - 1607297400,19360.76,19395,19305.41,19375.6,189.3795513 - 1607299200,19375.6,19432.57,19326.45,19362.4,352.5585019 - 1607301000,19362.78,19410,19300,19327.29,256.6465378 - 1607302800,19327.29,19357.6,19271.42,19284.37,203.1938898 - 1607304600,19284.37,19315.37,19230.17,19304.23,159.1810992 - 1607306400,19304.23,19314.32,19185.24,19217.39,180.3765047 - 1607308200,19217.39,19266.98,19210.01,19215.63,108.5123836 - 1607310000,19216.83,19261.72,19172.99,19241.38,105.777021 - 1607311800,19240.27,19294.77,19202.9,19294.77,109.7547744 - 1607313600,19294.77,19294.77,19255.96,19259.17,81.49567794 - 1607315400,19259.17,19317.47,19245.98,19294.22,114.8115789 - 1607317200,19294.22,19306,19255.33,19306,67.43929704 - 1607319000,19306,19306,19246.19,19247.86,79.6817153 - 1607320800,19247.86,19359.99,19243.87,19338.82,190.8583709 - 1607322600,19338.82,19338.83,19296.92,19308.23,80.98579668 - 1607324400,19308.23,19366.84,19308.23,19334.33,85.07361442 - 1607326200,19334.34,19399,19302.31,19378.35,111.2545289 - 1607328000,19378.29,19390.32,19257.48,19263.11,107.4806719 - 1607329800,19259.48,19265.04,19211.77,19258.28,96.50838883 - 1607331600,19258.29,19261.39,19183.76,19187.99,112.4248204 - 1607333400,19187.48,19243.91,19182.36,19217.79,46.95463825 - 1607335200,19217.99,19256.89,19177,19238.98,86.68744656 - 1607337000,19238.98,19244.33,19185,19197.01,90.75100912 - 1607338800,19197,19235.23,19176,19203.34,75.52714764 - 1607340600,19204.14,19210.62,19100,19112.66,200.9040636 - 1607342400,19111.99,19209.94,19100,19200.77,125.8854857 - 1607344200,19201.48,19247.74,19188.43,19238.84,177.3028294 - 1607346000,19238.84,19263.21,19191.47,19194.71,173.6442994 - 1607347800,19194.7,19236.82,19194.7,19196.39,139.372753 - 1607349600,19196.18,19237.37,19107.23,19218.43,220.2618651 - 1607351400,19218.51,19231.21,19115.83,19210.58,340.2851863 - 1607353200,19210.58,19270.22,19182.24,19252.96,199.6627896 - 1607355000,19252.95,19265.46,19213.89,19227.81,233.7631206 - 1607356800,19227.97,19254.01,19185.11,19253.49,261.3191095 - 1607358600,19251.46,19251.67,19185.28,19198.16,172.8553396 - 1607360400,19198.16,19219.12,19169.38,19188.79,135.1654661 - 1607362200,19185.69,19189.11,19145.7,19171.47,238.2293341 - 1607364000,19171.45,19195.14,18938.31,19005,733.0528302 - 1607365800,19000.02,19027.62,18901,18943.95,582.6363035 - 1607367600,18943.94,19021.41,18911.12,19019.72,280.2384941 - 1607369400,19020.31,19046.92,18921.87,18974.94,348.6016342 - 1607371200,18969.98,19034.45,18938.71,19024.44,225.2395853 - 1607373000,19024.43,19063.43,19001.63,19056.53,170.3607663 - 1607374800,19057.28,19126,19020.99,19125.34,222.5784899 - 1607376600,19125.35,19125.63,19071.68,19079.42,139.6428786 - 1607378400,19079.42,19119.56,19078.27,19078.28,157.658221 - 1607380200,19078.28,19125,19075.77,19123.87,92.35949113 - 1607382000,19125,19191.96,19082.54,19179.39,183.0657737 - 1607383800,19187.01,19229.08,19173.42,19177.71,317.818476 - 1607385600,19177.08,19203.39,19142.89,19173.88,136.2585171 - 1607387400,19173.58,19242.43,19173.57,19238.31,145.8203847 - 1607389200,19241.52,19245,19175,19208.38,121.2599514 - 1607391000,19208.8,19229.26,19164.25,19223.55,141.3863388 - 1607392800,19223.55,19225,19177.2,19184.88,175.9826162 - 1607394600,19183.4,19200,19168.87,19189.9,107.3332687 - 1607396400,19189.89,19201.59,19147.38,19150.56,204.5500394 - 1607398200,19150.57,19188.55,19150.56,19159.23,207.3018154 - 1607400000,19159.23,19221.73,19159.23,19205.79,129.4665379 - 1607401800,19205.79,19212.77,19178.19,19185.26,109.1392136 - 1607403600,19185.25,19215,19185.25,19213.13,79.85450698 - 1607405400,19213.13,19299.41,19195.36,19299.4,163.1772872 - 1607407200,19299.4,19299.51,19102.64,19162.22,290.1302364 - 1607409000,19162.21,19189.92,19160,19162.22,77.91920234 - 1607410800,19162.22,19195.5,19141.66,19167.96,137.3467274 - 1607412600,19167.97,19186.49,19136.66,19143.22,95.53421228 - 1607414400,19143.86,19169.13,19097.17,19136.21,169.3950845 - 1607416200,19134.1,19138.62,19019.2,19067.48,221.9837172 - 1607418000,19069.38,19104.09,19033.2,19040.98,72.87494531 - 1607419800,19040.97,19046.32,18680.24,18798.24,1229.056282 - 1607421600,18798.82,18887.89,18711.52,18849,294.1759295 - 1607423400,18849,18857.89,18762.81,18815.62,225.7790859 - 1607425200,18820.7,18875.25,18723.76,18793.68,236.5962344 - 1607427000,18793.68,18837.8,18770,18770,202.9798151 - 1607428800,18770,18864.93,18710.01,18765.42,347.5669847 - 1607430600,18763.78,18770.33,18615,18732.2,546.0030434 - 1607432400,18732.21,18934.05,18732.2,18885.25,369.1330527 - 1607434200,18888.49,18958.1,18850.95,18929.99,283.6479517 - 1607436000,18931.93,18984.06,18897.69,18939.71,208.3881887 - 1607437800,18940.15,18961.73,18870,18870.01,247.2037455 - 1607439600,18870,18917.4,18807.78,18833.82,308.0808797 - 1607441400,18833.79,18874.48,18781.7,18807.2,559.4131405 - 1607443200,18808.35,18900,18752.97,18891.41,529.0129441 - 1607445000,18891.4,18912.41,18832.23,18834.45,265.7299037 - 1607446800,18832.96,18895,18821.69,18884.56,191.8637949 - 1607448600,18884.56,18937.57,18853.47,18925.42,268.9989514 - 1607450400,18925.41,18925.42,18875.37,18890.36,177.6094146 - 1607452200,18890.36,18890.36,18818.37,18820.42,227.8180271 - 1607454000,18820.42,18889.03,18806.9,18865.97,235.7780908 - 1607455800,18864.85,18867.99,18781.21,18786.88,280.5971846 - 1607457600,18786.88,18838.76,18710.95,18742.59,354.6308813 - 1607459400,18746.79,18784.1,18669.52,18732.16,352.8961763 - 1607461200,18730.71,18818.76,18690,18761.79,249.5783361 - 1607463000,18761.79,18794.08,18685,18771.75,152.3523405 - 1607464800,18771.89,18838.51,18695.57,18699.81,359.0948542 - 1607466600,18699.81,18710.98,18333.33,18340.01,1074.061276 - 1607468400,18340.01,18431,18200,18289.52,2000.228976 - 1607470200,18288.41,18398.49,18273.5,18316.22,551.464129 - 1607472000,18316.22,18368.49,18138,18364.23,1011.960591 - 1607473800,18368.77,18368.77,18165,18165,611.0205687 - 1607475600,18165.01,18275.14,18005.01,18240.31,1024.95472 - 1607477400,18242.54,18311.09,18194.41,18208.34,422.6321846 - 1607479200,18209.13,18283.63,18141.44,18261.5,376.4230825 - 1607481000,18260.17,18322.93,18200,18278.13,337.7031496 - 1607482800,18276.4,18307.98,18223.07,18240,288.3719084 - 1607484600,18240,18297.38,18223.62,18294.55,207.8384993 - 1607486400,18294.55,18297.41,18198.98,18217.74,252.8318792 - 1607488200,18215.25,18254.44,18120.52,18155.68,187.5151669 - 1607490000,18155.69,18196.3,18081.69,18103.54,271.4587119 - 1607491800,18103.26,18242.51,18054.13,18206.88,280.737877 - 1607493600,18209.32,18270,18191.91,18222.88,464.0762651 - 1607495400,18222.87,18249.99,18154.63,18210.94,148.9493811 - 1607497200,18212,18241.51,18112.23,18123,185.8746379 - 1607499000,18122.09,18162.76,17861.68,17925.2,1222.074527 - 1607500800,17919.07,18048.65,17750,17750,845.5103134 - 1607502600,17751,17962.79,17639,17949.84,920.6560045 - 1607504400,17949.82,18095.53,17922.68,18083.58,394.1160956 - 1607506200,18082.73,18088.28,17905.56,18035.33,259.4816793 - 1607508000,18035.81,18135.89,17967.08,18097.62,209.3102907 - 1607509800,18096.04,18241.92,18088.27,18225.19,241.4786368 - 1607511600,18229.98,18398.54,18183.7,18297.38,340.9698426 - 1607513400,18300.33,18322.26,18241.04,18253.93,242.133651 - 1607515200,18253.93,18377.11,18251.16,18290.09,322.6156076 - 1607517000,18290.09,18320.82,18219.83,18237.44,187.396634 - 1607518800,18237.44,18286.65,18176.66,18204.1,292.5273164 - 1607520600,18205.9,18492,18186.11,18492,404.8766915 - 1607522400,18492,18529.93,18439.47,18462.78,427.5080883 - 1607524200,18462.12,18524.79,18444.04,18465.14,414.7465297 - 1607526000,18465.13,18474.13,18311.45,18338.54,665.2914251 - 1607527800,18337.33,18365.62,18288.61,18345.9,533.3077277 - 1607529600,18345.9,18353.58,18256.12,18320.01,353.1829451 - 1607531400,18320.01,18393.31,18285.98,18387.92,255.4410489 - 1607533200,18388.94,18438.47,18310,18330.59,494.9057317 - 1607535000,18330.02,18362.82,18287.72,18297.55,348.0693338 - 1607536800,18297.54,18346.01,18230,18243.65,279.2697867 - 1607538600,18237.82,18252.61,18154.61,18188.51,375.7017056 - 1607540400,18188.51,18266.86,18188.51,18240.87,265.885638 - 1607542200,18240.88,18275,18213.3,18255.14,188.6528347 - 1607544000,18253.09,18346.4,18246.02,18258.35,558.8011829 - 1607545800,18258.35,18361.08,18204.75,18323.67,934.1125032 - 1607547600,18323.66,18479.82,18311.1,18435.71,525.4848556 - 1607549400,18435.71,18540,18427.72,18517.51,492.9392184 - 1607551200,18517.49,18612.47,18508.28,18538.72,531.5765477 - 1607553000,18538.47,18581.66,18500.35,18557.47,419.3746238 - 1607554800,18557.47,18647.33,18533.65,18599.44,291.6940104 - 1607556600,18594.66,18614.73,18540.12,18546.55,304.7231738 - 1607558400,18546.55,18556.42,18456.12,18458.77,441.0120265 - 1607560200,18458.8,18479.56,18422.03,18434,245.2672465 - 1607562000,18434.01,18494.96,18382.65,18451.48,265.0517985 - 1607563800,18450.36,18472.73,18320,18434,256.2264174 - 1607565600,18434.5,18489.08,18414.32,18421.62,200.5025199 - 1607567400,18425.5,18427.29,18352.04,18385.11,201.7224363 - 1607569200,18384.69,18467.4,18352,18435.33,174.0375916 - 1607571000,18435.32,18479.99,18394,18410.62,190.755061 - 1607572800,18410.62,18496.21,18390.02,18464.44,140.0664783 - 1607574600,18464.99,18496.35,18396.6,18419.25,140.4228572 - 1607576400,18415.55,18418.29,18356.62,18359.22,83.48364799 - 1607578200,18359.5,18399.91,18306.25,18372.25,126.604529 - 1607580000,18373.31,18440.54,18290.48,18299.79,195.8560809 - 1607581800,18300.51,18381.19,18292.7,18303.7,101.8245278 - 1607583600,18302.98,18386.58,18290.51,18352.45,100.635754 - 1607585400,18352.44,18391.35,18335.07,18341.54,112.4851423 - 1607587200,18341.54,18470.59,18329.47,18452.63,229.4347848 - 1607589000,18460.48,18460.49,18410.32,18441.75,115.3586332 - 1607590800,18441.74,18447.92,18411.53,18441.4,169.901971 - 1607592600,18441.39,18480,18225.03,18238.91,349.2177876 - 1607594400,18238.9,18281.07,18155.2,18195.18,561.308163 - 1607596200,18195.07,18234.13,18118,18139.24,361.5579991 - 1607598000,18138.89,18253.72,18119.63,18145.21,212.3660733 - 1607599800,18142.64,18232.14,18117.79,18189.99,175.7382644 - 1607601600,18185.94,18288.54,18168.51,18241.78,248.1133862 - 1607603400,18241.49,18257.63,18180.68,18205.02,190.367702 - 1607605200,18203.86,18203.86,18074.3,18117.44,662.2028939 - 1607607000,18117.44,18238.85,18035.23,18226.4,681.0365884 - 1607608800,18224.49,18237.93,18045.02,18055,679.5248955 - 1607610600,18054.78,18109.08,18031.13,18071.95,509.1939478 - 1607612400,18069.22,18141.42,17905,18014.83,734.3836327 - 1607614200,18014.97,18140.31,17960,18130.99,395.0685016 - 1607616000,18130.98,18196.37,18085,18149.81,374.1521555 - 1607617800,18149.26,18222.04,18147.35,18170.24,236.8450234 - 1607619600,18170.28,18178.72,18069.01,18089.86,265.052678 - 1607621400,18089.85,18213.37,18078.25,18206.01,320.6478455 - 1607623200,18207,18268.14,18190,18260.82,384.6761154 - 1607625000,18263.17,18314.39,18245,18270.84,302.2924933 - 1607626800,18270.65,18315.02,18216.52,18276.97,402.0985083 - 1607628600,18276.97,18400,18276.96,18396.51,591.9430405 - 1607630400,18396.51,18433.81,18365.48,18412.69,571.7962651 - 1607632200,18412.69,18412.69,18347.51,18363.7,301.9416891 - 1607634000,18363.7,18410.5,18363.44,18373.68,210.7052291 - 1607635800,18371.96,18387.19,18316.13,18349.13,281.6155992 - 1607637600,18349.12,18400,18255.01,18340.37,396.7704307 - 1607639400,18340.37,18366.55,18255,18328.24,333.7896038 - 1607641200,18328.24,18385,18324.15,18341.8,277.0039109 - 1607643000,18340.92,18340.92,18228,18253.44,343.0761721 - 1607644800,18257.18,18293.08,18087.99,18112.67,513.9631843 - 1607646600,18113.3,18145.91,17940.73,18011.41,907.7929413 - 1607648400,18011.41,18083.73,17875.41,17902.59,742.0994656 - 1607650200,17907.42,17988.56,17795.68,17894.95,976.7706083 - 1607652000,17894.96,18042.63,17850,17987.85,546.0328845 - 1607653800,17987.78,17996.68,17799.39,17799.4,511.3345501 - 1607655600,17799.4,17941.16,17721.09,17930.11,762.4664271 - 1607657400,17928.53,17994.34,17880,17989.31,278.5991062 - 1607659200,17989.78,18041.5,17930.72,17966.5,256.0303137 - 1607661000,17966.49,17994.16,17917.7,17959,122.5379503 - 1607662800,17959.01,18021.18,17875.23,17907.05,182.8484091 - 1607664600,17907.06,17943.86,17831.92,17893.77,205.020069 - 1607666400,17893.67,17938.21,17839.01,17842.7,115.936544 - 1607668200,17839.26,17966.71,17816.49,17921.54,118.6559379 - 1607670000,17924.5,17940.9,17763.14,17791.26,181.8876956 - 1607671800,17791.57,17828.2,17691.1,17800,463.6056729 - 1607673600,17800,17996,17800,17942.05,429.666661 - 1607675400,17937.94,17948.98,17816.28,17886.29,170.9366328 - 1607677200,17890.05,17899.01,17777.79,17826.38,175.2184275 - 1607679000,17826.3,17869.54,17720,17799,344.1823027 - 1607680800,17799,17825,17580,17801.31,734.5596128 - 1607682600,17794.61,17857.57,17708.02,17741.9,246.4885179 - 1607684400,17741.89,17741.9,17613.63,17642.04,497.2007399 - 1607686200,17642.04,17682.72,17581.65,17639.93,436.9906434 - 1607688000,17637.89,17794.26,17611,17794.07,291.0385793 - 1607689800,17794.07,17909.76,17784.58,17860,321.8651933 - 1607691600,17860.01,17931.76,17826.81,17863.49,273.0758888 - 1607693400,17863.49,17981.8,17800.19,17970.13,437.2971411 - 1607695200,17970.13,18030.01,17942.48,17971.78,369.2081946 - 1607697000,17971.78,18072.95,17900,18059.6,384.680871 - 1607698800,18061.32,18104.78,18038.23,18060.91,361.909678 - 1607700600,18060.92,18135,18028.6,18107.72,253.9303513 - 1607702400,18107.72,18115.05,17988.93,18003,252.8320127 - 1607704200,18003,18024.99,17943.48,17976.88,249.4534131 - 1607706000,17976.87,18002.87,17875,17922.69,339.6833609 - 1607707800,17921.64,18000,17859.95,17986.22,280.0700917 - 1607709600,17986.23,18033.25,17938.34,17961.46,188.6259569 - 1607711400,17961.46,18045.92,17960.24,18042.9,251.5543648 - 1607713200,18042.9,18091,18025.99,18062.04,291.0146923 - 1607715000,18062.05,18069.58,17960.09,17970.96,244.6374594 - 1607716800,17970.96,18054.88,17911.51,17952.86,325.6466109 - 1607718600,17952.92,17993.76,17941.02,17976.34,184.7363864 - 1607720400,17976.2,18030.99,17950.89,17965.46,291.9633764 - 1607722200,17965.46,18125,17965.46,18100.13,299.6045473 - 1607724000,18100.14,18181.61,18100.13,18132.12,378.2276268 - 1607725800,18131.37,18155.23,18068.85,18135,191.1018516 - 1607727600,18135,18150,18037.92,18074.71,254.3184517 - 1607729400,18074.72,18095.04,18025.95,18042.15,288.150441 - 1607731200,18044.19,18289.02,18023.57,18289.02,843.9569904 - 1607733000,18289.02,18369,18217.18,18344.07,436.0008264 - 1607734800,18342.63,18375,18276.96,18312,250.9530348 - 1607736600,18312,18336.19,18284.87,18300.44,229.9444425 - 1607738400,18300.05,18350,18291.5,18322.04,187.1783466 - 1607740200,18323.74,18366.59,18306.79,18323.39,146.7608848 - 1607742000,18328.82,18328.82,18286.84,18292.14,96.3618261 - 1607743800,18293.35,18345,18280,18290.79,78.03719424 - 1607745600,18291.33,18313.45,18265,18289.75,71.18310497 - 1607747400,18289.75,18397.05,18289.74,18375.17,197.6021052 - 1607749200,18375.17,18399,18340.01,18356.29,107.4252355 - 1607751000,18354.19,18366.64,18317.69,18329.41,74.33434455 - 1607752800,18327.04,18372.75,18319.18,18320.55,59.89329187 - 1607754600,18317.9,18320.6,18294.87,18314.92,86.26575643 - 1607756400,18314.92,18357.51,18314.91,18321.99,58.6881765 - 1607758200,18320.99,18414.7,18308.23,18394.94,79.81791725 - 1607760000,18387.33,18460.28,18359.64,18373.41,148.1082595 - 1607761800,18373.41,18400.8,18334.76,18384.39,59.46581944 - 1607763600,18383.63,18477.77,18352.77,18461.84,83.79547271 - 1607765400,18461.89,18470.18,18401.2,18434.01,56.31573514 - 1607767200,18434.03,18459.6,18369.05,18373.12,41.2681669 - 1607769000,18373.12,18438.71,18373.12,18383.65,43.65487319 - 1607770800,18383.66,18453.19,18371.68,18437.36,60.62002025 - 1607772600,18437.91,18518.24,18433.09,18509.5,113.3697725 - 1607774400,18509.49,18530.72,18461.36,18471.79,91.7069646 - 1607776200,18471.37,18487.35,18427.56,18447.23,76.73375075 - 1607778000,18447.23,18447.42,18386.18,18440.59,212.5765433 - 1607779800,18441.23,18441.23,18401.49,18405.01,104.0979969 - 1607781600,18405.01,18477.99,18400,18470,169.626407 - 1607783400,18470.01,18470.01,18328.84,18379.42,253.0264854 - 1607785200,18371,18411.81,18327.33,18402.58,137.2669344 - 1607787000,18402.58,18448.52,18371.18,18405.73,158.7063775 - 1607788800,18406.59,18440.1,18367.12,18433.34,167.0370254 - 1607790600,18433.34,18456.64,18388.71,18406.28,163.7294462 - 1607792400,18406.28,18429.43,18387.01,18411.81,136.4196874 - 1607794200,18408.05,18519.38,18389.9,18490.63,204.5359186 - 1607796000,18490.31,18748.84,18490.31,18706.78,485.2836764 - 1607797800,18707.52,18746.25,18689.21,18699.08,317.5957059 - 1607799600,18699.08,18855.55,18699.08,18821,312.0052818 - 1607801400,18824.31,18844.12,18720,18811.28,236.1411739 - 1607803200,18822.2,18844.43,18770,18804.1,218.2221026 - 1607805000,18804.55,18855,18758,18785.37,185.5104139 - 1607806800,18784.36,18842.82,18752,18789.36,246.5868283 - 1607808600,18790.22,18849.95,18744,18807.24,189.9438393 - 1607810400,18806.37,18835.87,18775.92,18820.07,146.9202815 - 1607812200,18820.07,18955.34,18803.56,18886.49,383.1669302 - 1607814000,18886.06,18895.13,18784.69,18818.25,190.2619935 - 1607815800,18818.34,18841.17,18788.17,18821.28,200.8534877 - 1607817600,18821.28,18880.28,18801.99,18802.01,275.3354087 - 1607819400,18802.01,18812.92,18730,18770.81,224.1540547 - 1607821200,18770.8,18810,18730,18795.37,144.8849406 - 1607823000,18794.19,18820.33,18771.19,18811.76,122.1385851 - 1607824800,18810.79,18827.32,18767.81,18826.09,98.65346762 - 1607826600,18826.1,18849.38,18771.46,18826.87,127.1427857 - 1607828400,18826.87,18845.12,18792.12,18804.53,97.1869225 - 1607830200,18804.53,18804.53,18780.17,18798.99,58.27285905 - 1607832000,18800,18843.52,18784.77,18831.69,72.48284529 - 1607833800,18831.39,18894.63,18821.08,18865,130.7628001 - 1607835600,18864.99,18926.29,18848.69,18925.97,193.2167186 - 1607837400,18925.97,18949.99,18861.14,18861.16,177.1556578 - 1607839200,18861.15,18942.44,18861.15,18938.11,111.493519 - 1607841000,18938.11,19000,18890.01,18981.34,223.2865496 - 1607842800,18985.17,19153.45,18983.83,19102.72,425.9235055 - 1607844600,19103.28,19290,19084.54,19245.42,675.6183285 - 1607846400,19245.75,19305,19180.93,19204.39,300.8077692 - 1607848200,19203.4,19256.89,19178.59,19245.75,137.6091718 - 1607850000,19245.77,19255.97,19186.23,19206,73.62799181 - 1607851800,19208,19304.99,19200.01,19263.91,151.3283989 - 1607853600,19264.28,19365.13,19251.01,19299.79,366.546176 - 1607855400,19296.7,19349.13,19260.99,19279.95,209.0063188 - 1607857200,19285.52,19296.07,19210.97,19268.76,118.1863253 - 1607859000,19268.75,19349.36,19258.75,19326.7,279.6848734 - 1607860800,19326.7,19388,19277.63,19344.88,408.6224015 - 1607862600,19344.88,19410,19325.23,19354.39,527.3565048 - 1607864400,19354.45,19421.03,19349.08,19369.17,318.829581 - 1607866200,19369.17,19369.17,19302.37,19332.84,307.836686 - 1607868000,19332.42,19368.62,19282.95,19303.22,241.7621203 - 1607869800,19305.23,19314.14,19282.89,19299.99,169.0081134 - 1607871600,19299.99,19339.97,19141.02,19152.44,493.4518014 - 1607873400,19152.44,19220.61,19100,19216.85,306.8556403 - 1607875200,19218.57,19386.15,19216.79,19337.38,385.764083 - 1607877000,19337.38,19372.79,19300.36,19327.43,252.4036761 - 1607878800,19327.33,19334.99,19220.97,19246.66,226.3099222 - 1607880600,19245.35,19273,19192.45,19271.03,179.6632935 - 1607882400,19271.02,19271.02,19169.75,19205.8,158.1994541 - 1607884200,19204.12,19229.99,19167.63,19178.48,117.5214899 - 1607886000,19177.74,19200,19156.76,19190.37,115.1828823 - 1607887800,19190.37,19219,19162,19185.2,164.2259172 - 1607889600,19183.17,19184.35,19115.01,19115.01,198.0531782 - 1607891400,19115.01,19169.49,19108,19150,157.2177727 - 1607893200,19144.61,19218.67,19141.53,19188.25,127.8042183 - 1607895000,19190.18,19195.65,19165.1,19181.85,115.2974387 - 1607896800,19181.43,19185.56,18980,18995.32,323.5075544 - 1607898600,18994.15,19121.79,18990.07,19111.8,184.3823254 - 1607900400,19107.91,19217.62,19090,19179.33,215.0496487 - 1607902200,19179.33,19183.41,19107.01,19166.65,129.4877403 - 1607904000,19166.65,19166.65,19045.23,19083.66,204.410282 - 1607905800,19085.48,19105.09,18967.68,19049.02,256.1607271 - 1607907600,19048.73,19098.16,19008.36,19093,195.5981763 diff --git a/sales-bi/Dockerfile b/sales-bi/Dockerfile new file mode 100644 index 0000000..307f16d --- /dev/null +++ b/sales-bi/Dockerfile @@ -0,0 +1,21 @@ +FROM rust as build + +RUN apt-get update && apt-get install -yqq git + +ARG cache=true2 + +RUN git clone https://github.com/spiceai/spiceai.git && \ + cd spiceai && \ + git checkout phillip/240325-fix-null-value-load + +RUN cd spiceai && make -C bin/spiced + +FROM debian + +RUN apt-get update && apt-get install -yqq libssl-dev sqlite3 + +COPY --from=build /spiceai/target/release/spiced /usr/local/bin + +WORKDIR /root + +ENTRYPOINT ["spiced", "--flight", "0.0.0.0:50051"] \ No newline at end of file diff --git a/sales-bi/Makefile b/sales-bi/Makefile new file mode 100644 index 0000000..2c2469a --- /dev/null +++ b/sales-bi/Makefile @@ -0,0 +1,16 @@ +all: + @docker compose build + @docker compose up -d + + @until nc -z localhost 8088; do sleep 1; done + + @echo "Initializing Superset..." + @./superset/init/init.sh > /dev/null + + @echo "" + @echo "Superset is running at http://localhost:8088, login with admin/admin" + +clean: + @docker compose down + @docker volume prune -f + @docker image prune -f \ No newline at end of file diff --git a/sales-bi/README.md b/sales-bi/README.md new file mode 100644 index 0000000..6504881 --- /dev/null +++ b/sales-bi/README.md @@ -0,0 +1,45 @@ +# Sales BI Dashboard + +## Context + +This sample will show how to configure a BI dashboard to use Spice.ai as the data source. The sales data will be stored in a PostgreSQL server. This PostgreSQL server is used by downstream sales applications to record new transactions. There is a requirement to run analytics on this data to power a BI dashboard to understand sales trends - but the operations team doesn't want to add any additional load to the production database. + +Spice.ai can be used to accelerate data from connected data sources by keeping an automatically updated copy of the data in an optimized format. This data can be used to power a BI dashboard without adding any additional load to the production database. + +## Pre-requisites + +This sample requires [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/) to be installed. + +## Running the sample + +![](https://imagedelivery.net/HyTs22ttunfIlvyd6vumhQ/c16c7dda-c403-4c71-0d6d-066005dd0e00/public) + +This sample consists of a PostgreSQL server loaded with some sample sales data, a Spice.ai runtime accelerating the data from the PostgreSQL server, and an Apache Superset instance to visualize the data. + +Navigate to the `sales-bi` directory and run the following command: + +`make` + +This will start the PostgreSQL server, Spice.ai runtime, and Apache Superset. The Spice.ai runtime will automatically start accelerating the data from the PostgreSQL server. + +The output of the `make` command should look like: + +```bash + ✔ Container superset-sales-bi-demo Started 0.0s + ✔ Container sales-bi-postgres-1 Started 0.0s + ✔ Container spiceai-sales-bi-demo Started 0.0s +Connection to localhost port 8088 [tcp/radan-http] succeeded! +Initializing Superset... + +Superset is running at http://localhost:8088, login with admin/admin +``` + +Navigate to [http://localhost:8088](http://localhost:8088) to access the Apache Superset dashboard. The login credentials are `admin/admin`. + +# TODO: Add instructions on how to connect to the Spice.ai runtime +# TODO: Add instructions on how to load the dashboard + +## Clean up + +`docker compose down` +`docker volume prune` \ No newline at end of file diff --git a/sales-bi/compose.yaml b/sales-bi/compose.yaml new file mode 100644 index 0000000..b1b63f7 --- /dev/null +++ b/sales-bi/compose.yaml @@ -0,0 +1,49 @@ +services: + # web: + # build: . + # ports: + # - "9999:8080" + # depends_on: + # - postgres + # - spiced + # - spiced-materialized + # environment: + # - POSTGRES_CONN=host=postgres port=5432 dbname=postgres user=postgres password=postgres sslmode=disable + spiceai: + build: + dockerfile: Dockerfile + container_name: spiceai-sales-bi-demo + depends_on: + - postgres + volumes: + - ./spicepod.yaml:/root/spicepod.yaml + expose: + - "50051" + superset: + build: + dockerfile: superset/Dockerfile + container_name: superset-sales-bi-demo + environment: + - SUPERSET_SECRET_KEY=NFmeXP86te1aweCLZHXF89739mCuo5KkMd4hM+q3S6hD3ckLMmtL26Tr + ports: + - "8088:8088" + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8088/health"] + interval: 10s + timeout: 5s + retries: 5 + postgres: + image: "postgres:alpine" + environment: + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=postgres + - POSTGRES_DB=postgres + volumes: + - ./init-pg:/docker-entrypoint-initdb.d + expose: + - 5432 + healthcheck: + test: [ "CMD", "pg_isready" ] + interval: 10s + timeout: 5s + retries: 5 \ No newline at end of file diff --git a/sales-bi/init-pg/cleaned_sales_data.sql b/sales-bi/init-pg/cleaned_sales_data.sql new file mode 100644 index 0000000..e29411c --- /dev/null +++ b/sales-bi/init-pg/cleaned_sales_data.sql @@ -0,0 +1,2892 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 16.0 (Debian 16.0-1.pgdg120+1) +-- Dumped by pg_dump version 16.0 (Debian 16.0-1.pgdg120+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: cleaned_sales_data; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.cleaned_sales_data ( + order_number bigint, + quantity_ordered bigint, + price_each double precision, + order_line_number bigint, + sales double precision, + order_date timestamp without time zone, + status character varying, + quarter bigint, + month bigint, + year bigint, + product_line character varying, + msrp bigint, + product_code character varying, + customer_name character varying, + phone character varying, + address_line1 character varying, + address_line2 character varying, + city character varying, + state character varying, + postal_code character varying, + country character varying, + territory character varying, + contact_last_name character varying, + contact_first_name character varying, + deal_size character varying +); + + +ALTER TABLE public.cleaned_sales_data OWNER TO postgres; + +-- +-- Data for Name: cleaned_sales_data; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.cleaned_sales_data (order_number, quantity_ordered, price_each, order_line_number, sales, order_date, status, quarter, month, year, product_line, msrp, product_code, customer_name, phone, address_line1, address_line2, city, state, postal_code, country, territory, contact_last_name, contact_first_name, deal_size) FROM stdin; +10107 30 95.7 2 2871 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 95 S10_1678 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10121 34 81.35 5 2765.9 2003-05-07 00:00:00 Shipped 2 5 2003 Motorcycles 95 S10_1678 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10134 41 94.74 2 3884.34 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 95 S10_1678 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10145 45 83.26 6 3746.7 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 95 S10_1678 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10159 49 100 14 5205.27 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 95 S10_1678 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10168 36 96.66 1 3479.76 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 95 S10_1678 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10180 29 86.13 9 2497.77 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 95 S10_1678 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10188 48 100 1 5512.32 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 95 S10_1678 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10201 22 98.57 2 2168.54 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 95 S10_1678 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10211 41 100 14 4708.44 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 95 S10_1678 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10223 37 100 1 3965.66 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 95 S10_1678 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10237 23 100 7 2333.12 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 95 S10_1678 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10251 28 100 2 3188.64 2004-05-18 00:00:00 Shipped 2 5 2004 Motorcycles 95 S10_1678 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10263 34 100 2 3676.76 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 95 S10_1678 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10275 45 92.83 1 4177.35 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 95 S10_1678 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10285 36 100 6 4099.68 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 95 S10_1678 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10299 23 100 9 2597.39 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 95 S10_1678 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10309 41 100 5 4394.38 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 95 S10_1678 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10318 46 94.74 1 4358.04 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 95 S10_1678 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10329 42 100 1 4396.14 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 95 S10_1678 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10341 41 100 9 7737.93 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 95 S10_1678 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Large +10361 20 72.55 13 1451 2004-12-17 00:00:00 Shipped 4 12 2004 Motorcycles 95 S10_1678 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10375 21 34.91 12 733.11 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 95 S10_1678 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10388 42 76.36 4 3207.12 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 95 S10_1678 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10403 24 100 7 2434.56 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 95 S10_1678 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10417 66 100 2 7516.08 2005-05-13 00:00:00 Disputed 2 5 2005 Motorcycles 95 S10_1678 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10103 26 100 11 5404.62 2003-01-29 00:00:00 Shipped 1 1 2003 Classic Cars 214 S10_1949 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10112 29 100 1 7209.11 2003-03-24 00:00:00 Shipped 1 3 2003 Classic Cars 214 S10_1949 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Large +10126 38 100 11 7329.06 2003-05-28 00:00:00 Shipped 2 5 2003 Classic Cars 214 S10_1949 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Large +10140 37 100 11 7374.1 2003-07-24 00:00:00 Shipped 3 7 2003 Classic Cars 214 S10_1949 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Large +10150 45 100 8 10993.5 2003-09-19 00:00:00 Shipped 3 9 2003 Classic Cars 214 S10_1949 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Large +10163 21 100 1 4860.24 2003-10-20 00:00:00 Shipped 4 10 2003 Classic Cars 214 S10_1949 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10174 34 100 4 8014.82 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 214 S10_1949 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Large +10183 23 100 8 5372.57 2003-11-13 00:00:00 Shipped 4 11 2003 Classic Cars 214 S10_1949 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10194 42 100 11 7290.36 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 214 S10_1949 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Large +10206 47 100 6 9064.89 2003-12-05 00:00:00 Shipped 4 12 2003 Classic Cars 214 S10_1949 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Large +10215 35 100 3 6075.3 2004-01-29 00:00:00 Shipped 1 1 2004 Classic Cars 214 S10_1949 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10228 29 100 2 6463.23 2004-03-10 00:00:00 Shipped 1 3 2004 Classic Cars 214 S10_1949 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Medium +10245 34 100 9 6120.34 2004-05-04 00:00:00 Shipped 2 5 2004 Classic Cars 214 S10_1949 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10258 32 100 6 7680.64 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 214 S10_1949 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Large +10270 21 100 9 4905.39 2004-07-19 00:00:00 Shipped 3 7 2004 Classic Cars 214 S10_1949 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10280 34 100 2 8014.82 2004-08-17 00:00:00 Shipped 3 8 2004 Classic Cars 214 S10_1949 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Large +10291 37 100 11 7136.19 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 214 S10_1949 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Large +10304 47 100 6 10172.7 2004-10-11 00:00:00 Shipped 4 10 2004 Classic Cars 214 S10_1949 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Large +10312 48 100 3 11623.7 2004-10-21 00:00:00 Shipped 4 10 2004 Classic Cars 214 S10_1949 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10322 40 100 1 6000.4 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 214 S10_1949 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10333 26 100 3 3003 2004-11-18 00:00:00 Shipped 4 11 2004 Classic Cars 214 S10_1949 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10347 30 100 1 3944.7 2004-11-29 00:00:00 Shipped 4 11 2004 Classic Cars 214 S10_1949 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 32 100 10 5691.84 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 214 S10_1949 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10369 41 100 2 4514.92 2005-01-20 00:00:00 Shipped 1 1 2005 Classic Cars 214 S10_1949 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10381 36 100 3 8254.8 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 214 S10_1949 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Large +10391 24 100 4 2416.56 2005-03-09 00:00:00 Shipped 1 3 2005 Classic Cars 214 S10_1949 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10411 23 100 9 4140.23 2005-05-01 00:00:00 Shipped 2 5 2005 Classic Cars 214 S10_1949 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10424 50 100 6 12001 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 214 S10_1949 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10107 39 99.91 5 3896.49 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 118 S10_2016 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10120 29 96.34 3 2793.86 2003-04-29 00:00:00 Shipped 2 4 2003 Motorcycles 118 S10_2016 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10134 27 100 5 3307.77 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 118 S10_2016 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10145 37 100 9 5192.95 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 118 S10_2016 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10159 37 100 17 5016.83 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 118 S10_2016 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10168 27 100 4 3660.93 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 118 S10_2016 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10180 42 100 12 4695.6 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 118 S10_2016 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10188 38 96.34 4 3660.92 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 118 S10_2016 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10201 24 100 5 3025.92 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 118 S10_2016 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10210 23 100 2 3009.09 2004-01-12 00:00:00 Shipped 1 1 2004 Motorcycles 118 S10_2016 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10223 47 100 4 5422.39 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 118 S10_2016 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10236 22 100 1 2852.08 2004-04-03 00:00:00 Shipped 2 4 2004 Motorcycles 118 S10_2016 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10251 44 100 5 5756.52 2004-05-18 00:00:00 Shipped 2 5 2004 Motorcycles 118 S10_2016 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10263 40 100 5 4472 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 118 S10_2016 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10275 22 100 4 2904.44 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 118 S10_2016 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10285 47 100 9 6484.59 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 118 S10_2016 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10298 39 96.34 1 3757.26 2004-09-27 00:00:00 Shipped 3 9 2004 Motorcycles 118 S10_2016 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Medium +10308 34 100 2 4043.96 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 118 S10_2016 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10318 45 100 4 5566.5 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 118 S10_2016 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10329 20 100 2 3176 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 118 S10_2016 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10339 40 68.92 4 2756.8 2004-11-23 00:00:00 Shipped 4 11 2004 Motorcycles 118 S10_2016 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10361 26 51.15 8 1329.9 2004-12-17 00:00:00 Shipped 4 12 2004 Motorcycles 118 S10_2016 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10374 39 100 5 5288.01 2005-02-02 00:00:00 Shipped 1 2 2005 Motorcycles 118 S10_2016 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10388 50 44.51 5 2225.5 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 118 S10_2016 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10402 45 100 1 5833.8 2005-04-07 00:00:00 Shipped 2 4 2005 Motorcycles 118 S10_2016 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10417 45 100 5 5887.35 2005-05-13 00:00:00 Disputed 2 5 2005 Motorcycles 118 S10_2016 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10107 27 100 4 6065.55 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 193 S10_4698 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10120 46 100 2 9264.86 2003-04-29 00:00:00 Shipped 2 4 2003 Motorcycles 193 S10_4698 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Large +10134 31 100 4 7023.98 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 193 S10_4698 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Large +10145 33 100 8 5176.38 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 193 S10_4698 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10159 22 100 16 4132.7 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 193 S10_4698 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10168 20 100 3 4183 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 193 S10_4698 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10180 41 100 11 8892.9 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 193 S10_4698 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Large +10188 45 100 3 8714.7 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 193 S10_4698 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Large +10201 49 100 4 8065.89 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 193 S10_4698 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Large +10210 34 100 1 6123.4 2004-01-12 00:00:00 Shipped 1 1 2004 Motorcycles 193 S10_4698 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10223 49 100 3 9774.03 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 193 S10_4698 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Large +10237 39 100 9 7023.9 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 193 S10_4698 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Large +10251 43 100 4 7078.23 2004-05-18 00:00:00 Shipped 2 5 2004 Motorcycles 193 S10_4698 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Large +10263 41 100 4 8336.94 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 193 S10_4698 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Large +10275 36 100 3 6901.92 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 193 S10_4698 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10285 27 100 8 5438.07 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 193 S10_4698 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10299 29 100 11 6683.34 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 193 S10_4698 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10308 20 100 1 4570.4 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 193 S10_4698 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10318 37 100 3 7667.14 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 193 S10_4698 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Large +10329 26 100 3 5868.2 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 193 S10_4698 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10339 39 76.67 3 2990.13 2004-11-23 00:00:00 Shipped 4 11 2004 Motorcycles 193 S10_4698 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10362 22 100 4 3664.1 2005-01-05 00:00:00 Shipped 1 1 2005 Motorcycles 193 S10_4698 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10374 22 100 1 3834.38 2005-02-02 00:00:00 Shipped 1 2 2005 Motorcycles 193 S10_4698 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10388 21 86.77 7 1822.17 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 193 S10_4698 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10403 66 100 9 11886.6 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 193 S10_4698 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Large +10417 56 100 4 9218.16 2005-05-13 00:00:00 Disputed 2 5 2005 Motorcycles 193 S10_4698 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10105 50 100 2 7208 2003-02-11 00:00:00 Shipped 1 2 2003 Classic Cars 136 S10_4757 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Large +10119 46 100 11 5004.8 2003-04-28 00:00:00 Shipped 2 4 2003 Classic Cars 136 S10_4757 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10129 33 100 2 4398.24 2003-06-12 00:00:00 Shipped 2 6 2003 Classic Cars 136 S10_4757 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10143 49 100 15 5597.76 2003-08-10 00:00:00 Shipped 3 8 2003 Classic Cars 136 S10_4757 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10155 32 100 13 4526.08 2003-10-06 00:00:00 Shipped 4 10 2003 Classic Cars 136 S10_4757 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10167 44 100 9 5924.16 2003-10-23 00:00:00 Cancelled 4 10 2003 Classic Cars 136 S10_4757 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10178 24 100 12 3492.48 2003-11-08 00:00:00 Shipped 4 11 2003 Classic Cars 136 S10_4757 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10186 26 100 9 3854.24 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 136 S10_4757 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Medium +10197 45 100 6 5324.4 2003-11-26 00:00:00 Shipped 4 11 2003 Classic Cars 136 S10_4757 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10209 39 100 8 5197.92 2004-01-09 00:00:00 Shipped 1 1 2004 Classic Cars 136 S10_4757 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10222 49 100 12 5997.6 2004-02-19 00:00:00 Shipped 1 2 2004 Classic Cars 136 S10_4757 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10248 20 100 3 2910.4 2004-05-07 00:00:00 Cancelled 2 5 2004 Classic Cars 136 S10_4757 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10261 27 100 1 3378.24 2004-06-17 00:00:00 Shipped 2 6 2004 Classic Cars 136 S10_4757 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10273 30 100 4 3508.8 2004-07-21 00:00:00 Shipped 3 7 2004 Classic Cars 136 S10_4757 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10283 25 100 6 2992 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 136 S10_4757 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10295 24 100 1 3427.2 2004-09-10 00:00:00 Shipped 3 9 2004 Classic Cars 136 S10_4757 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10307 22 100 9 2692.8 2004-10-14 00:00:00 Shipped 4 10 2004 Classic Cars 136 S10_4757 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10316 33 100 17 4128.96 2004-11-01 00:00:00 Shipped 4 11 2004 Classic Cars 136 S10_4757 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10325 47 64.93 6 3051.71 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 136 S10_4757 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10337 25 48.05 8 1201.25 2004-11-21 00:00:00 Shipped 4 11 2004 Classic Cars 136 S10_4757 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10350 26 75.47 5 1962.22 2004-12-02 00:00:00 Shipped 4 12 2004 Classic Cars 136 S10_4757 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10359 48 54.68 6 2624.64 2004-12-15 00:00:00 Shipped 4 12 2004 Classic Cars 136 S10_4757 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10373 39 100 3 4046.25 2005-01-31 00:00:00 Shipped 1 1 2005 Classic Cars 136 S10_4757 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10384 34 100 4 4846.7 2005-02-23 00:00:00 Shipped 1 2 2005 Classic Cars 136 S10_4757 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10395 32 100 2 3370.56 2005-03-17 00:00:00 Shipped 1 3 2005 Classic Cars 136 S10_4757 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10400 64 100 9 9661.44 2005-04-01 00:00:00 Shipped 2 4 2005 Classic Cars 136 S10_4757 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Large +10414 19 100 3 2764.88 2005-05-06 00:00:00 On Hold 2 5 2005 Classic Cars 136 S10_4757 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10103 42 100 4 5398.26 2003-01-29 00:00:00 Shipped 1 1 2003 Classic Cars 147 S10_4962 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10114 31 100 8 4305.28 2003-04-01 00:00:00 Shipped 2 4 2003 Classic Cars 147 S10_4962 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10126 22 100 4 3347.74 2003-05-28 00:00:00 Shipped 2 5 2003 Classic Cars 147 S10_4962 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10140 26 100 4 3188.12 2003-07-24 00:00:00 Shipped 3 7 2003 Classic Cars 147 S10_4962 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10150 20 100 1 3191.2 2003-09-19 00:00:00 Shipped 3 9 2003 Classic Cars 147 S10_4962 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10164 21 100 2 3536.82 2003-10-21 00:00:00 Resolved 4 10 2003 Classic Cars 147 S10_4962 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10175 33 100 9 5362.83 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 147 S10_4962 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10183 28 100 1 3433.36 2003-11-13 00:00:00 Shipped 4 11 2003 Classic Cars 147 S10_4962 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10194 26 100 4 4263.74 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 147 S10_4962 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10207 31 100 15 4076.19 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 147 S10_4962 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10217 48 100 4 7020.48 2004-02-04 00:00:00 Shipped 1 2 2004 Classic Cars 147 S10_4962 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Large +10229 50 100 9 6426.5 2004-03-11 00:00:00 Shipped 1 3 2004 Classic Cars 147 S10_4962 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10245 28 100 2 4591.72 2004-05-04 00:00:00 Shipped 2 5 2004 Classic Cars 147 S10_4962 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10259 26 100 12 4033.38 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 147 S10_4962 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10270 32 100 2 4302.08 2004-07-19 00:00:00 Shipped 3 7 2004 Classic Cars 147 S10_4962 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10281 44 100 9 7020.64 2004-08-19 00:00:00 Shipped 3 8 2004 Classic Cars 147 S10_4962 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Large +10291 30 100 4 3855.9 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 147 S10_4962 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10305 38 100 13 6680.78 2004-10-13 00:00:00 Shipped 4 10 2004 Classic Cars 147 S10_4962 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10313 40 100 7 6678 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 147 S10_4962 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10322 46 61.99 8 2851.54 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 147 S10_4962 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10334 26 100 2 3188.12 2004-11-19 00:00:00 On Hold 4 11 2004 Classic Cars 147 S10_4962 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10347 27 100 2 4428 2004-11-29 00:00:00 Shipped 4 11 2004 Classic Cars 147 S10_4962 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 43 100 9 5780.92 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 147 S10_4962 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10370 35 65.63 4 2297.05 2005-01-20 00:00:00 Shipped 1 1 2005 Classic Cars 147 S10_4962 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10381 37 100 6 6231.54 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 147 S10_4962 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10391 37 46.9 7 1735.3 2005-03-09 00:00:00 Shipped 1 3 2005 Classic Cars 147 S10_4962 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10411 27 100 2 4427.73 2005-05-01 00:00:00 Shipped 2 5 2005 Classic Cars 147 S10_4962 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10425 38 100 12 5894.94 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 147 S10_4962 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10108 33 100 6 5265.15 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 194 S12_1099 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 42 100 10 7599.9 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 194 S12_1099 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Large +10135 42 100 7 8008.56 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 194 S12_1099 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10147 48 100 7 9245.76 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 194 S12_1099 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Large +10159 41 100 2 8296.35 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 194 S12_1099 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Large +10169 30 100 2 5019.9 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 194 S12_1099 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10181 27 100 14 5411.07 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 194 S12_1099 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10191 21 100 3 3840.9 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 194 S12_1099 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10203 20 100 8 3930.4 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 194 S12_1099 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10211 41 100 2 7498.9 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 194 S12_1099 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Large +10225 27 100 9 4517.91 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 194 S12_1099 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10238 28 100 3 5774.72 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 194 S12_1099 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10253 24 100 13 3922.56 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 194 S12_1099 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 44 100 14 9160.36 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 194 S12_1099 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Large +10276 50 100 3 9631 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 194 S12_1099 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Large +10287 21 100 12 3432.24 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 194 S12_1099 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10300 33 100 5 5521.89 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 194 S12_1099 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10310 33 100 10 6934.62 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 194 S12_1099 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10320 31 100 3 6876.11 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 194 S12_1099 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10329 41 71.47 5 2930.27 2004-11-15 00:00:00 Shipped 4 11 2004 Classic Cars 194 S12_1099 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10341 45 79.65 2 3584.25 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 194 S12_1099 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10363 33 85.39 3 2817.87 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 194 S12_1099 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10375 45 76 7 3420 2005-02-03 00:00:00 Shipped 1 2 2005 Classic Cars 194 S12_1099 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10389 26 99.04 4 2575.04 2005-03-03 00:00:00 Shipped 1 3 2005 Classic Cars 194 S12_1099 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10419 12 100 13 1961.28 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 194 S12_1099 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10105 41 100 15 8690.36 2003-02-11 00:00:00 Shipped 1 2 2003 Classic Cars 207 S12_1108 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Large +10117 33 100 9 6034.38 2003-04-16 00:00:00 Shipped 2 4 2003 Classic Cars 207 S12_1108 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10127 46 100 2 11279.2 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 207 S12_1108 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Large +10142 33 100 12 8023.29 2003-08-08 00:00:00 Shipped 3 8 2003 Classic Cars 207 S12_1108 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10153 20 100 11 4904 2003-09-28 00:00:00 Shipped 3 9 2003 Classic Cars 207 S12_1108 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10165 44 100 3 8594.52 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 207 S12_1108 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Large +10176 33 100 2 7474.5 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 207 S12_1108 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Large +10185 21 100 13 3883.74 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 207 S12_1108 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10196 47 100 5 8887.7 2003-11-26 00:00:00 Shipped 4 11 2003 Classic Cars 207 S12_1108 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Large +10208 46 100 13 8602.92 2004-01-02 00:00:00 Shipped 1 1 2004 Classic Cars 207 S12_1108 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Large +10220 32 100 2 7181.44 2004-02-12 00:00:00 Shipped 1 2 2004 Classic Cars 207 S12_1108 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Large +10231 42 100 2 8378.58 2004-03-19 00:00:00 Shipped 1 3 2004 Classic Cars 207 S12_1108 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Large +10247 44 100 2 10606.2 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 207 S12_1108 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Large +10272 35 100 2 5818.4 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 207 S12_1108 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10282 41 100 5 7071.27 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 207 S12_1108 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10293 46 100 8 8411.56 2004-09-09 00:00:00 Shipped 3 9 2004 Classic Cars 207 S12_1108 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Large +10306 31 100 13 6570.76 2004-10-14 00:00:00 Shipped 4 10 2004 Classic Cars 207 S12_1108 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 38 100 5 7975.44 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 207 S12_1108 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Large +10325 42 64 8 2688 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 207 S12_1108 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10336 33 57.22 10 1888.26 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 207 S12_1108 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10348 48 52.36 8 2513.28 2004-11-01 00:00:00 Shipped 4 11 2004 Classic Cars 207 S12_1108 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10359 42 100 8 4764.48 2004-12-15 00:00:00 Shipped 4 12 2004 Classic Cars 207 S12_1108 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10371 32 100 6 3560.64 2005-01-23 00:00:00 Shipped 1 1 2005 Classic Cars 207 S12_1108 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10382 34 100 10 3823.64 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 207 S12_1108 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10395 33 69.12 1 2280.96 2005-03-17 00:00:00 Shipped 1 3 2005 Classic Cars 207 S12_1108 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10413 36 100 2 8677.8 2005-05-05 00:00:00 Shipped 2 5 2005 Classic Cars 207 S12_1108 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Large +10103 27 100 8 3394.98 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 136 S12_1666 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10113 21 100 2 3415.44 2003-03-26 00:00:00 Shipped 1 3 2003 Trucks and Buses 136 S12_1666 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10126 21 100 8 2439.57 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 136 S12_1666 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10140 38 100 8 4829.8 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 136 S12_1666 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10150 30 100 5 4100.1 2003-09-19 00:00:00 Shipped 3 9 2003 Trucks and Buses 136 S12_1666 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10164 49 100 6 6563.06 2003-10-21 00:00:00 Resolved 4 10 2003 Trucks and Buses 136 S12_1666 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10174 43 100 1 6817.22 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 136 S12_1666 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10183 41 100 5 6163.94 2003-11-13 00:00:00 Shipped 4 11 2003 Trucks and Buses 136 S12_1666 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10194 38 100 8 4933.92 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 136 S12_1666 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10206 28 100 3 4056.36 2003-12-05 00:00:00 Shipped 4 12 2003 Trucks and Buses 136 S12_1666 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10216 43 100 1 5759.42 2004-02-02 00:00:00 Shipped 1 2 2004 Trucks and Buses 136 S12_1666 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10229 25 100 13 3451 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 136 S12_1666 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10245 38 100 6 5920.4 2004-05-04 00:00:00 Shipped 2 5 2004 Trucks and Buses 136 S12_1666 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10258 41 100 3 6668.24 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 136 S12_1666 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10270 28 100 6 4094.72 2004-07-19 00:00:00 Shipped 3 7 2004 Trucks and Buses 136 S12_1666 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10281 25 100 13 2938.5 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 136 S12_1666 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 41 100 8 6387.8 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 136 S12_1666 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10304 39 100 3 6396 2004-10-11 00:00:00 Shipped 4 10 2004 Trucks and Buses 136 S12_1666 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10313 21 100 11 2669.1 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 136 S12_1666 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10322 27 100 9 4784.13 2004-11-04 00:00:00 Shipped 4 11 2004 Trucks and Buses 136 S12_1666 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10333 33 99.21 6 3273.93 2004-11-18 00:00:00 Shipped 4 11 2004 Trucks and Buses 136 S12_1666 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10347 29 100 3 3586.43 2004-11-29 00:00:00 Shipped 4 11 2004 Trucks and Buses 136 S12_1666 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 49 100 8 5960.36 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 136 S12_1666 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10370 49 100 8 8470.14 2005-01-20 00:00:00 Shipped 1 1 2005 Trucks and Buses 136 S12_1666 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Large +10381 20 100 1 2952 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 136 S12_1666 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10391 39 63.2 9 2464.8 2005-03-09 00:00:00 Shipped 1 3 2005 Trucks and Buses 136 S12_1666 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10411 40 100 6 6232 2005-05-01 00:00:00 Shipped 2 5 2005 Trucks and Buses 136 S12_1666 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10424 49 100 3 7969.36 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 136 S12_1666 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10107 21 100 1 3036.6 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 150 S12_2823 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10121 50 100 4 8284 2003-05-07 00:00:00 Shipped 2 5 2003 Motorcycles 150 S12_2823 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Large +10134 20 100 1 2711.2 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 150 S12_2823 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10145 49 100 5 8339.8 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 150 S12_2823 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Large +10159 38 100 13 6238.84 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 150 S12_2823 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10169 35 100 13 4639.25 2003-11-04 00:00:00 Shipped 4 11 2003 Motorcycles 150 S12_2823 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10180 40 100 8 6747.6 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 150 S12_2823 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10189 28 100 1 4512.48 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 150 S12_2823 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10201 25 100 1 4029 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 150 S12_2823 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10211 36 100 13 4771.8 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 150 S12_2823 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10224 43 100 6 6087.94 2004-02-21 00:00:00 Shipped 1 2 2004 Motorcycles 150 S12_2823 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10237 32 100 6 4193.28 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 150 S12_2823 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10251 46 100 1 7552.28 2004-05-18 00:00:00 Shipped 2 5 2004 Motorcycles 150 S12_2823 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Large +10263 48 100 1 6434.4 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 150 S12_2823 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10276 43 100 14 5181.5 2004-08-02 00:00:00 Shipped 3 8 2004 Motorcycles 150 S12_2823 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10285 49 100 5 6863.92 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 150 S12_2823 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10299 24 100 8 4157.04 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 150 S12_2823 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10309 26 100 4 4660.24 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 150 S12_2823 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10319 30 100 9 4111.8 2004-11-03 00:00:00 Shipped 4 11 2004 Motorcycles 150 S12_2823 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Medium +10329 24 100 6 3542.64 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 150 S12_2823 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10341 55 100 8 8118.55 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 150 S12_2823 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Large +10362 22 100 1 3877.06 2005-01-05 00:00:00 Shipped 1 1 2005 Motorcycles 150 S12_2823 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10375 49 78.92 13 3867.08 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 150 S12_2823 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10388 44 100 6 5951.44 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 150 S12_2823 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10403 66 100 6 8648.64 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 150 S12_2823 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Large +10417 21 100 1 3447.78 2005-05-13 00:00:00 Disputed 2 5 2005 Motorcycles 150 S12_2823 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10104 34 100 1 5958.5 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 151 S12_3148 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10117 43 100 10 5911.64 2003-04-16 00:00:00 Shipped 2 4 2003 Classic Cars 151 S12_3148 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10127 46 100 3 7366.44 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 151 S12_3148 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Large +10142 33 100 13 4985.64 2003-08-08 00:00:00 Shipped 3 8 2003 Classic Cars 151 S12_3148 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10153 42 100 12 5393.64 2003-09-28 00:00:00 Shipped 3 9 2003 Classic Cars 151 S12_3148 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10165 34 100 4 4880.02 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 151 S12_3148 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10176 47 100 3 8378.69 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 151 S12_3148 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Large +10185 33 100 14 4038.21 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 151 S12_3148 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10196 24 100 6 3807.12 2003-11-26 00:00:00 Shipped 4 11 2003 Classic Cars 151 S12_3148 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10208 26 100 14 3142.36 2004-01-02 00:00:00 Shipped 1 1 2004 Classic Cars 151 S12_3148 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10220 30 100 3 4713.6 2004-02-12 00:00:00 Shipped 1 2 2004 Classic Cars 151 S12_3148 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Medium +10230 43 100 1 7016.31 2004-03-15 00:00:00 Shipped 1 3 2004 Classic Cars 151 S12_3148 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Large +10247 25 100 3 4381.25 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 151 S12_3148 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10272 27 100 3 4283.01 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 151 S12_3148 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10282 27 100 6 4364.82 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 151 S12_3148 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10293 24 100 9 4242.24 2004-09-09 00:00:00 Shipped 3 9 2004 Classic Cars 151 S12_3148 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10306 34 100 14 4982.7 2004-10-14 00:00:00 Shipped 4 10 2004 Classic Cars 151 S12_3148 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 46 100 6 6393.54 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 151 S12_3148 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10324 27 54.33 1 1466.91 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 151 S12_3148 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10336 33 100 11 4059.33 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 151 S12_3148 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10348 47 100 4 4801.52 2004-11-01 00:00:00 Shipped 4 11 2004 Classic Cars 151 S12_3148 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10358 49 55.34 5 2711.66 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 151 S12_3148 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10372 40 100 4 5862 2005-01-26 00:00:00 Shipped 1 1 2005 Classic Cars 151 S12_3148 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10382 37 100 11 4071.85 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 151 S12_3148 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10413 47 100 3 8236.75 2005-05-05 00:00:00 Shipped 2 5 2005 Classic Cars 151 S12_3148 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Large +10108 45 100 4 6130.35 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 117 S12_3380 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 37 99.82 8 3693.34 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 117 S12_3380 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10135 48 100 5 6031.68 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 117 S12_3380 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10147 31 100 5 3494.94 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 117 S12_3380 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10160 46 100 6 5294.14 2003-10-11 00:00:00 Shipped 4 10 2003 Classic Cars 117 S12_3380 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10170 47 100 4 5464.69 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 117 S12_3380 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10181 28 100 12 2860.76 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 117 S12_3380 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10191 40 100 1 5590 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 117 S12_3380 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10203 20 100 6 2254.8 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 117 S12_3380 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10212 39 100 16 4946.76 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 117 S12_3380 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10225 25 99.82 7 2495.5 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 117 S12_3380 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10238 29 100 1 3167.38 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 117 S12_3380 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10253 22 100 11 2402.84 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 117 S12_3380 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10266 22 100 12 2454.54 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 117 S12_3380 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10276 47 100 1 5464.69 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 117 S12_3380 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10287 45 100 10 4756.5 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 117 S12_3380 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10300 29 100 3 3984.6 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 117 S12_3380 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10310 24 100 8 3100.32 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 117 S12_3380 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10320 35 100 1 4850.3 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 117 S12_3380 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10329 46 83.63 13 3846.98 2004-11-15 00:00:00 Shipped 4 11 2004 Classic Cars 117 S12_3380 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10341 44 95.93 1 4220.92 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 117 S12_3380 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10363 34 96.73 4 3288.82 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 117 S12_3380 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10376 35 100 1 3987.2 2005-02-08 00:00:00 Shipped 1 2 2005 Classic Cars 117 S12_3380 Boards & Toys Co. 3105552373 4097 Douglas Av. \N Glendale CA 92561 USA \N Young Leslie Medium +10389 25 72.38 6 1809.5 2005-03-03 00:00:00 Shipped 1 3 2005 Classic Cars 117 S12_3380 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10419 10 100 11 1092.2 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 117 S12_3380 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10105 29 100 14 4566.05 2003-02-11 00:00:00 Shipped 1 2 2003 Classic Cars 173 S12_3891 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10117 39 100 8 5938.14 2003-04-16 00:00:00 Shipped 2 4 2003 Classic Cars 173 S12_3891 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10127 42 100 1 8138.76 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 173 S12_3891 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Large +10142 46 100 11 9470.94 2003-08-08 00:00:00 Shipped 3 8 2003 Classic Cars 173 S12_3891 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10153 49 100 10 7036.89 2003-09-28 00:00:00 Shipped 3 9 2003 Classic Cars 173 S12_3891 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10165 27 100 2 5559.03 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 173 S12_3891 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10176 50 100 1 7872.5 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 173 S12_3891 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Large +10185 43 100 12 7886.2 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 173 S12_3891 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Large +10196 38 100 4 7232.16 2003-11-26 00:00:00 Shipped 4 11 2003 Classic Cars 173 S12_3891 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Large +10208 20 100 12 3114.4 2004-01-02 00:00:00 Shipped 1 1 2004 Classic Cars 173 S12_3891 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10220 27 100 1 5045.22 2004-02-12 00:00:00 Shipped 1 2 2004 Classic Cars 173 S12_3891 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Medium +10231 49 100 1 6952.12 2004-03-19 00:00:00 Shipped 1 3 2004 Classic Cars 173 S12_3891 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Medium +10247 27 100 1 4157.73 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 173 S12_3891 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10272 39 100 1 7962.24 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 173 S12_3891 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Large +10282 24 100 4 3778.8 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 173 S12_3891 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10293 45 100 7 8253 2004-09-09 00:00:00 Shipped 3 9 2004 Classic Cars 173 S12_3891 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Large +10306 20 100 12 3633.4 2004-10-14 00:00:00 Shipped 4 10 2004 Classic Cars 173 S12_3891 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 36 100 4 6913.8 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 173 S12_3891 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10325 24 100 1 2583.6 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 173 S12_3891 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10336 49 63.38 1 3105.62 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 173 S12_3891 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10349 26 100 10 4408.56 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 173 S12_3891 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10359 49 62.09 5 3042.41 2004-12-15 00:00:00 Shipped 4 12 2004 Classic Cars 173 S12_3891 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10372 34 100 1 5941.5 2005-01-26 00:00:00 Shipped 1 1 2005 Classic Cars 173 S12_3891 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10382 34 95.35 12 3241.9 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 173 S12_3891 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10396 33 100 3 6109.29 2005-03-23 00:00:00 Shipped 1 3 2005 Classic Cars 173 S12_3891 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10413 22 100 1 3387.78 2005-05-05 00:00:00 Shipped 2 5 2005 Classic Cars 173 S12_3891 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10108 39 89.38 7 3485.82 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 79 S12_3990 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 32 63.84 11 2042.88 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 79 S12_3990 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 24 75.01 8 1800.24 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 79 S12_3990 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10147 21 63.84 8 1340.64 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 79 S12_3990 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10159 24 73.42 3 1762.08 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 79 S12_3990 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 36 63.84 3 2298.24 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 79 S12_3990 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10181 20 81.4 15 1628 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 79 S12_3990 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10191 30 64.64 4 1939.2 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 79 S12_3990 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10203 44 82.99 9 3651.56 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 79 S12_3990 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10211 28 92.57 3 2591.96 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 79 S12_3990 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10225 37 77.41 10 2864.17 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 79 S12_3990 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10238 20 74.21 4 1484.2 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 79 S12_3990 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10253 25 90.17 14 2254.25 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 79 S12_3990 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10266 35 76.61 15 2681.35 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 79 S12_3990 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10276 38 83.79 4 3184.02 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 79 S12_3990 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10287 41 69.43 13 2846.63 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 79 S12_3990 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10300 22 76.61 6 1685.42 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 79 S12_3990 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10310 49 81.4 11 3988.6 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 79 S12_3990 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10320 38 73.42 4 2789.96 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 79 S12_3990 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10329 33 100 14 3607.56 2004-11-15 00:00:00 Shipped 4 11 2004 Classic Cars 79 S12_3990 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10341 36 93.56 10 3368.16 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 79 S12_3990 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10363 34 81.62 5 2775.08 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 79 S12_3990 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10377 24 67.83 5 1627.92 2005-02-09 00:00:00 Shipped 1 2 2005 Classic Cars 79 S12_3990 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10389 36 70.26 7 2529.36 2005-03-03 00:00:00 Shipped 1 3 2005 Classic Cars 79 S12_3990 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10419 34 90.17 14 3065.78 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 79 S12_3990 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10104 41 100 9 4615.78 2003-01-31 00:00:00 Shipped 1 1 2003 Trucks and Buses 118 S12_4473 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10115 46 100 5 5723.78 2003-04-04 00:00:00 Shipped 2 4 2003 Trucks and Buses 118 S12_4473 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10127 24 100 11 2559.6 2003-06-03 00:00:00 Shipped 2 6 2003 Trucks and Buses 118 S12_4473 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10141 21 100 5 2140.11 2003-08-01 00:00:00 Shipped 3 8 2003 Trucks and Buses 118 S12_4473 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10151 24 100 3 3327.6 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 118 S12_4473 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10165 48 100 12 6825.6 2003-10-22 00:00:00 Shipped 4 10 2003 Trucks and Buses 118 S12_4473 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10175 26 100 1 3543.28 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 118 S12_4473 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10184 37 100 6 4516.22 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 118 S12_4473 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10195 49 100 6 6445.46 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 118 S12_4473 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10207 34 99.54 7 3384.36 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 118 S12_4473 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10219 48 100 2 4891.68 2004-02-10 00:00:00 Shipped 1 2 2004 Trucks and Buses 118 S12_4473 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Medium +10229 36 100 1 4521.96 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 118 S12_4473 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10246 46 100 5 5069.66 2004-05-05 00:00:00 Shipped 2 5 2004 Trucks and Buses 118 S12_4473 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10259 46 100 4 6541.2 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 118 S12_4473 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10271 31 97.17 5 3012.27 2004-07-20 00:00:00 Shipped 3 7 2004 Trucks and Buses 118 S12_4473 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10281 41 100 1 5247.18 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 118 S12_4473 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10292 21 100 8 2214.87 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 118 S12_4473 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10305 38 100 5 4773.18 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 118 S12_4473 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10314 45 100 14 6185.7 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 118 S12_4473 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10324 26 58.38 7 1517.88 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 118 S12_4473 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10336 38 100 3 6372.6 2004-11-20 00:00:00 Shipped 4 11 2004 Trucks and Buses 118 S12_4473 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10349 48 100 9 5232.96 2004-12-01 00:00:00 Shipped 4 12 2004 Trucks and Buses 118 S12_4473 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10358 42 64.16 9 2694.72 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 118 S12_4473 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10371 49 35.71 4 1749.79 2005-01-23 00:00:00 Shipped 1 1 2005 Trucks and Buses 118 S12_4473 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10382 32 66.58 13 2130.56 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 118 S12_4473 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10412 54 100 5 5951.34 2005-05-03 00:00:00 Shipped 2 5 2005 Trucks and Buses 118 S12_4473 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10425 33 100 4 4692.6 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 118 S12_4473 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10108 36 100 3 3731.04 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 115 S12_4675 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 20 100 7 2142 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 115 S12_4675 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 29 97.89 4 2838.81 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 115 S12_4675 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10147 33 97.89 4 3230.37 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 115 S12_4675 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10160 50 100 5 5182 2003-10-11 00:00:00 Shipped 4 10 2003 Classic Cars 115 S12_4675 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10170 41 100 3 4391.1 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 115 S12_4675 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10181 36 100 11 4477.32 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 115 S12_4675 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 27 100 16 3544.56 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 115 S12_4675 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10203 47 100 5 5195.85 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 115 S12_4675 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10212 33 100 15 4180.44 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 115 S12_4675 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10225 21 100 6 2684.43 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 115 S12_4675 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10239 21 93.28 5 1958.88 2004-04-12 00:00:00 Shipped 2 4 2004 Classic Cars 115 S12_4675 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10253 41 100 10 4910.57 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 115 S12_4675 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 40 100 11 4468.4 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 115 S12_4675 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10277 28 100 1 3127.88 2004-08-04 00:00:00 Shipped 3 8 2004 Classic Cars 115 S12_4675 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10287 23 100 9 2675.13 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 115 S12_4675 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10300 23 100 2 2807.61 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 115 S12_4675 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10310 25 100 7 2504.75 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 115 S12_4675 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10321 24 100 15 2984.88 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 115 S12_4675 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10329 39 64.74 15 2524.86 2004-11-15 00:00:00 Shipped 4 11 2004 Classic Cars 115 S12_4675 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10341 55 75.2 7 4136 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 115 S12_4675 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10363 46 88.45 6 4068.7 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 115 S12_4675 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10377 50 100 1 5182 2005-02-09 00:00:00 Shipped 1 2 2005 Classic Cars 115 S12_4675 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10389 47 100 8 5243.79 2005-03-03 00:00:00 Shipped 1 3 2005 Classic Cars 115 S12_4675 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10405 97 93.28 5 9048.16 2005-04-14 00:00:00 Shipped 2 4 2005 Classic Cars 115 S12_4675 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Large +10419 32 100 10 3832.64 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 115 S12_4675 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10103 35 100 10 3920 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 116 S18_1097 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10113 49 100 4 4916.66 2003-03-26 00:00:00 Shipped 1 3 2003 Trucks and Buses 116 S18_1097 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10126 38 100 10 3857 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 116 S18_1097 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10140 32 100 10 4181.44 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 116 S18_1097 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10150 34 100 7 4641 2003-09-19 00:00:00 Shipped 3 9 2003 Trucks and Buses 116 S18_1097 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10164 36 99.17 8 3570.12 2003-10-21 00:00:00 Resolved 4 10 2003 Trucks and Buses 116 S18_1097 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10174 48 93.34 3 4480.32 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 116 S18_1097 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10183 21 96.84 7 2033.64 2003-11-13 00:00:00 Shipped 4 11 2003 Trucks and Buses 116 S18_1097 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10194 21 93.34 10 1960.14 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 116 S18_1097 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10206 34 100 5 3966.78 2003-12-05 00:00:00 Shipped 4 12 2003 Trucks and Buses 116 S18_1097 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10215 46 100 2 5152 2004-01-29 00:00:00 Shipped 1 1 2004 Trucks and Buses 116 S18_1097 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10228 32 100 1 3360 2004-03-10 00:00:00 Shipped 1 3 2004 Trucks and Buses 116 S18_1097 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Medium +10245 29 100 8 3451 2004-05-04 00:00:00 Shipped 2 5 2004 Trucks and Buses 116 S18_1097 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10258 41 100 5 5453 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 116 S18_1097 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10270 43 96.84 8 4164.12 2004-07-19 00:00:00 Shipped 3 7 2004 Trucks and Buses 116 S18_1097 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10280 24 100 1 2800.08 2004-08-17 00:00:00 Shipped 3 8 2004 Trucks and Buses 116 S18_1097 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10291 41 100 10 4687.94 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 116 S18_1097 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10304 46 98 5 4508 2004-10-11 00:00:00 Shipped 4 10 2004 Trucks and Buses 116 S18_1097 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10312 32 100 2 4181.44 2004-10-21 00:00:00 Shipped 4 10 2004 Trucks and Buses 116 S18_1097 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10322 22 100 10 2251.04 2004-11-04 00:00:00 Shipped 4 11 2004 Trucks and Buses 116 S18_1097 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10333 29 40.25 7 1167.25 2004-11-18 00:00:00 Shipped 4 11 2004 Trucks and Buses 116 S18_1097 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10347 42 49.6 5 2083.2 2004-11-29 00:00:00 Shipped 4 11 2004 Trucks and Buses 116 S18_1097 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10357 39 98 1 3822 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 116 S18_1097 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10370 27 100 1 3911.49 2005-01-20 00:00:00 Shipped 1 1 2005 Trucks and Buses 116 S18_1097 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10381 48 98 2 4704 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 116 S18_1097 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10391 29 85.1 10 2467.9 2005-03-09 00:00:00 Shipped 1 3 2005 Trucks and Buses 116 S18_1097 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10411 27 100 8 3213 2005-05-01 00:00:00 Shipped 2 5 2005 Trucks and Buses 116 S18_1097 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10424 54 100 5 7182 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 116 S18_1097 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10109 26 100 4 4379.18 2003-03-10 00:00:00 Shipped 1 3 2003 Classic Cars 141 S18_1129 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10122 34 100 2 5004.8 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 141 S18_1129 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10136 25 100 2 3644.75 2003-07-04 00:00:00 Shipped 3 7 2003 Classic Cars 141 S18_1129 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10148 23 100 13 2702.04 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 141 S18_1129 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10161 28 100 12 3764.88 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 141 S18_1129 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10171 35 100 2 4508 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 141 S18_1129 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10181 44 100 6 5418.16 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 141 S18_1129 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 22 100 11 3300.66 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 141 S18_1129 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 42 100 17 6182.4 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 141 S18_1129 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 29 100 10 4186.73 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 141 S18_1129 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10225 32 100 1 4529.28 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 141 S18_1129 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10240 41 100 3 5628.89 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 141 S18_1129 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10253 26 100 5 3054.48 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 141 S18_1129 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 21 100 6 2526.51 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 141 S18_1129 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10278 34 100 6 4667.86 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 141 S18_1129 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10287 41 100 4 6499.32 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 141 S18_1129 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10301 37 100 8 5917.78 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 141 S18_1129 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10310 37 100 2 6231.91 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 141 S18_1129 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10321 41 100 10 5803.14 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 141 S18_1129 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10331 46 100 6 6434.02 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 141 S18_1129 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10342 40 100 2 6454.4 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 141 S18_1129 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10356 43 97.6 8 4196.8 2004-12-09 00:00:00 Shipped 4 12 2004 Classic Cars 141 S18_1129 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10365 30 87.06 1 2611.8 2005-01-07 00:00:00 Shipped 1 1 2005 Classic Cars 141 S18_1129 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10377 35 100 2 5895.05 2005-02-09 00:00:00 Shipped 1 2 2005 Classic Cars 141 S18_1129 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10390 36 93.77 14 3375.72 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 141 S18_1129 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10406 61 100 3 8374.69 2005-04-15 00:00:00 Disputed 2 4 2005 Classic Cars 141 S18_1129 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Large +10419 38 100 5 4464.24 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 141 S18_1129 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10102 39 100 2 4808.31 2003-01-10 00:00:00 Shipped 1 1 2003 Vintage Cars 102 S18_1342 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10111 33 99.66 6 3288.78 2003-03-25 00:00:00 Shipped 1 3 2003 Vintage Cars 102 S18_1342 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10125 32 100 1 3254.72 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 102 S18_1342 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10139 31 100 7 3184.94 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 102 S18_1342 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10149 50 100 4 5907.5 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 102 S18_1342 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Medium +10162 48 91.44 2 4389.12 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 102 S18_1342 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10173 43 100 6 5036.16 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 102 S18_1342 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10182 25 87.33 3 2183.25 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 102 S18_1342 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 28 100 7 3106.88 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 102 S18_1342 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10205 36 100 2 3735.72 2003-12-03 00:00:00 Shipped 4 12 2003 Vintage Cars 102 S18_1342 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10215 27 89.38 10 2413.26 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 102 S18_1342 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Small +10227 25 100 3 2953.75 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 102 S18_1342 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10244 40 100 7 4684.8 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 102 S18_1342 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10256 34 95.55 2 3248.7 2004-06-08 00:00:00 Shipped 2 6 2004 Vintage Cars 102 S18_1342 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10280 50 100 9 5239.5 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 102 S18_1342 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10289 38 100 2 4567.98 2004-09-03 00:00:00 Shipped 3 9 2004 Vintage Cars 102 S18_1342 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10304 37 95.55 13 3535.35 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 102 S18_1342 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10312 43 89.38 10 3843.34 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 102 S18_1342 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10322 43 86.3 14 3710.9 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 102 S18_1342 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10332 46 95.13 15 4375.98 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 102 S18_1342 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10346 42 36.11 3 1516.62 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 102 S18_1342 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10356 50 50.18 9 2509 2004-12-09 00:00:00 Shipped 4 12 2004 Vintage Cars 102 S18_1342 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10369 44 100 8 9240.44 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 102 S18_1342 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Large +10380 27 93.16 13 2515.32 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 102 S18_1342 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10391 35 100 2 5548.9 2005-03-09 00:00:00 Shipped 1 3 2005 Vintage Cars 102 S18_1342 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10422 51 95.55 2 4873.05 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 102 S18_1342 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10102 41 50.14 1 2055.74 2003-01-10 00:00:00 Shipped 1 1 2003 Vintage Cars 53 S18_1367 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10111 48 49.06 5 2354.88 2003-03-25 00:00:00 Shipped 1 3 2003 Vintage Cars 53 S18_1367 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10126 42 54.99 17 2309.58 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 53 S18_1367 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10139 49 43.13 6 2113.37 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 53 S18_1367 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10149 30 58.22 3 1746.6 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 53 S18_1367 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10162 45 51.21 1 2304.45 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 53 S18_1367 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10173 48 44.21 5 2122.08 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 53 S18_1367 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 32 54.45 2 1742.4 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 53 S18_1367 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 46 53.37 6 2455.02 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 53 S18_1367 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10205 48 63.61 1 3053.28 2003-12-03 00:00:00 Shipped 4 12 2003 Vintage Cars 53 S18_1367 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10215 33 43.13 9 1423.29 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 53 S18_1367 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Small +10227 31 48.52 2 1504.12 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 53 S18_1367 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10244 20 58.22 6 1164.4 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 53 S18_1367 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10256 29 51.75 1 1500.75 2004-06-08 00:00:00 Shipped 2 6 2004 Vintage Cars 53 S18_1367 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10280 27 57.68 8 1557.36 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 53 S18_1367 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10289 24 56.07 1 1345.68 2004-09-03 00:00:00 Shipped 3 9 2004 Vintage Cars 53 S18_1367 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10304 37 48.52 12 1795.24 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 53 S18_1367 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 25 44.21 9 1105.25 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 53 S18_1367 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10322 41 57.68 5 2364.88 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 53 S18_1367 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10332 27 89.89 16 2427.03 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 53 S18_1367 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10347 21 58.95 7 1237.95 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 53 S18_1367 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10356 22 72.41 6 1593.02 2004-12-09 00:00:00 Shipped 4 12 2004 Vintage Cars 53 S18_1367 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10369 32 98.63 7 3156.16 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 53 S18_1367 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10381 25 52.83 9 1320.75 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 53 S18_1367 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10391 42 100 3 4998 2005-03-09 00:00:00 Shipped 1 3 2005 Vintage Cars 53 S18_1367 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10422 25 51.75 1 1293.75 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 53 S18_1367 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10110 37 100 16 5433.08 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 124 S18_1589 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10123 26 100 2 3073.72 2003-05-20 00:00:00 Shipped 2 5 2003 Classic Cars 124 S18_1589 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Medium +10137 44 99.55 2 4380.2 2003-07-10 00:00:00 Shipped 3 7 2003 Classic Cars 124 S18_1589 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10148 47 100 9 5848.68 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 124 S18_1589 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10161 43 100 8 6153.73 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 124 S18_1589 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10172 42 100 6 4965.24 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 124 S18_1589 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10181 42 100 2 5435.64 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 124 S18_1589 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 29 100 7 4258.36 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 124 S18_1589 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 40 100 13 4032 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 124 S18_1589 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 38 100 6 4492.36 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 124 S18_1589 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10226 38 100 4 4161.38 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 124 S18_1589 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10241 21 100 11 2508.66 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 124 S18_1589 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10253 24 100 1 3374.88 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 124 S18_1589 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 36 100 2 5196.6 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 124 S18_1589 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10278 23 100 2 2604.52 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 124 S18_1589 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10288 20 100 14 2936.8 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 124 S18_1589 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10301 32 100 4 3424.64 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 124 S18_1589 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10311 29 100 9 2923.2 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 124 S18_1589 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10321 44 100 6 4489.76 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 124 S18_1589 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10331 44 100 14 4849.24 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 124 S18_1589 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10343 36 100 4 5848.92 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 124 S18_1589 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10367 49 56.3 1 2758.7 2005-01-12 00:00:00 Resolved 1 1 2005 Classic Cars 124 S18_1589 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10378 34 42.64 5 1449.76 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 124 S18_1589 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10407 59 100 11 7048.14 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 124 S18_1589 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Large +10419 37 100 1 5202.94 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 124 S18_1589 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10106 36 100 12 5279.4 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 157 S18_1662 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10119 43 100 3 6916.12 2003-04-28 00:00:00 Shipped 2 4 2003 Planes 157 S18_1662 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10131 21 100 4 2781.66 2003-06-16 00:00:00 Shipped 2 6 2003 Planes 157 S18_1662 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10143 32 100 7 5248 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 157 S18_1662 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10155 38 100 5 6531.44 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 157 S18_1662 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10167 43 100 1 5763.72 2003-10-23 00:00:00 Cancelled 4 10 2003 Planes 157 S18_1662 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10178 42 100 4 6490.68 2003-11-08 00:00:00 Shipped 4 11 2003 Planes 157 S18_1662 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10186 32 100 1 6004.8 2003-11-14 00:00:00 Shipped 4 11 2003 Planes 157 S18_1662 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Medium +10198 42 100 4 7483.98 2003-11-27 00:00:00 Shipped 4 11 2003 Planes 157 S18_1662 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Large +10210 31 100 17 5719.5 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 157 S18_1662 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10222 49 100 4 6954.08 2004-02-19 00:00:00 Shipped 1 2 2004 Planes 157 S18_1662 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10250 45 100 14 8160.3 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 157 S18_1662 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Large +10262 49 100 9 6567.96 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 157 S18_1662 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10274 41 100 1 6724 2004-07-21 00:00:00 Shipped 3 7 2004 Planes 157 S18_1662 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10284 45 100 11 5747.85 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 157 S18_1662 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10296 36 100 7 5676.84 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 157 S18_1662 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Medium +10307 39 100 1 7379.97 2004-10-14 00:00:00 Shipped 4 10 2004 Planes 157 S18_1662 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Large +10316 27 100 9 3704.13 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 157 S18_1662 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10327 25 100 6 2804.75 2004-11-10 00:00:00 Resolved 4 11 2004 Planes 157 S18_1662 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10338 41 100 1 5624.79 2004-11-22 00:00:00 Shipped 4 11 2004 Planes 157 S18_1662 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Medium +10351 39 99.52 1 3881.28 2004-12-03 00:00:00 Shipped 4 12 2004 Planes 157 S18_1662 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10373 28 57.55 4 1611.4 2005-01-31 00:00:00 Shipped 1 1 2005 Planes 157 S18_1662 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 25 54.57 7 1364.25 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 157 S18_1662 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 33 100 11 4215.09 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 157 S18_1662 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10400 34 100 1 6433.82 2005-04-01 00:00:00 Shipped 2 4 2005 Planes 157 S18_1662 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10416 24 100 14 4352.16 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 157 S18_1662 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10100 30 100 3 5151 2003-01-06 00:00:00 Shipped 1 1 2003 Vintage Cars 170 S18_1749 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10110 42 100 7 6069 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 170 S18_1749 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10124 21 100 6 2856 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 170 S18_1749 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10149 34 100 11 5375.4 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 170 S18_1749 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Medium +10162 29 100 9 5176.5 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 170 S18_1749 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10173 24 100 13 3508.8 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 170 S18_1749 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10182 44 100 10 7554.8 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 170 S18_1749 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10193 21 100 14 3141.6 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 170 S18_1749 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10204 33 100 4 5890.5 2003-12-02 00:00:00 Shipped 4 12 2003 Vintage Cars 170 S18_1749 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10214 30 100 7 5967 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 170 S18_1749 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10227 26 100 10 3712.8 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 170 S18_1749 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10241 41 100 2 7597.3 2004-04-13 00:00:00 Shipped 2 4 2004 Vintage Cars 170 S18_1749 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Large +10280 26 100 16 3668.6 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 170 S18_1749 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10288 32 100 5 5875.2 2004-09-01 00:00:00 Shipped 3 9 2004 Vintage Cars 170 S18_1749 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10302 43 100 1 7310 2003-10-06 00:00:00 Shipped 4 10 2003 Vintage Cars 170 S18_1749 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Large +10312 48 100 17 8078.4 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 170 S18_1749 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10331 44 74.04 7 3257.76 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 170 S18_1749 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10344 45 100 1 7650 2004-11-25 00:00:00 Shipped 4 11 2004 Vintage Cars 170 S18_1749 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Large +10367 37 100 3 4703.81 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 170 S18_1749 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10379 39 100 2 5399.55 2005-02-10 00:00:00 Shipped 1 2 2005 Vintage Cars 170 S18_1749 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 76 100 2 14082.8 2005-04-22 00:00:00 On Hold 2 4 2005 Vintage Cars 170 S18_1749 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Large +10420 37 100 5 5283.6 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 170 S18_1749 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10108 38 82.39 2 3130.82 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 77 S18_1889 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 43 72.38 6 3112.34 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 77 S18_1889 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10135 48 79.31 3 3806.88 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 77 S18_1889 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10147 26 82.39 3 2142.14 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 77 S18_1889 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10160 38 88.55 4 3364.9 2003-10-11 00:00:00 Shipped 4 10 2003 Classic Cars 77 S18_1889 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10170 20 63.14 2 1262.8 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 77 S18_1889 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Small +10181 22 73.92 10 1626.24 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 77 S18_1889 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10192 45 90.86 15 4088.7 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 77 S18_1889 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10203 45 85.47 4 3846.15 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 77 S18_1889 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10212 20 66.99 14 1339.8 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 77 S18_1889 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10225 47 64.68 5 3039.96 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 77 S18_1889 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10239 46 73.92 4 3400.32 2004-04-12 00:00:00 Shipped 2 4 2004 Classic Cars 77 S18_1889 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10253 23 83.93 9 1930.39 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 77 S18_1889 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10266 33 74.69 10 2464.77 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 77 S18_1889 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10278 29 90.86 10 2634.94 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 77 S18_1889 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10287 44 82.39 8 3625.16 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 77 S18_1889 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10300 41 92.4 1 3788.4 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 77 S18_1889 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10310 20 91.63 6 1832.6 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 77 S18_1889 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10321 37 78.54 14 2905.98 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 77 S18_1889 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10329 29 100 9 2954.81 2004-11-15 00:00:00 Shipped 4 11 2004 Classic Cars 77 S18_1889 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10342 55 65.45 1 3599.75 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 77 S18_1889 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10363 22 100 7 3686.54 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 77 S18_1889 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10377 31 67.76 4 2100.56 2005-02-09 00:00:00 Shipped 1 2 2005 Classic Cars 77 S18_1889 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10389 49 79.22 3 3881.78 2005-03-03 00:00:00 Shipped 1 3 2005 Classic Cars 77 S18_1889 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10405 61 73.92 4 4509.12 2005-04-14 00:00:00 Shipped 2 4 2005 Classic Cars 77 S18_1889 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Medium +10419 39 83.93 9 3273.27 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 77 S18_1889 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10109 38 100 3 4432.7 2003-03-10 00:00:00 Shipped 1 3 2003 Classic Cars 142 S18_1984 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10122 31 100 1 4100.99 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 142 S18_1984 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10136 36 100 1 5274.72 2003-07-04 00:00:00 Shipped 3 7 2003 Classic Cars 142 S18_1984 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10148 25 100 12 4232 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 142 S18_1984 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10161 48 100 11 6145.44 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 142 S18_1984 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10171 35 100 1 4680.2 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 142 S18_1984 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10181 21 100 5 3286.08 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 142 S18_1984 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 47 100 10 7421.3 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 142 S18_1984 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Large +10204 38 100 16 6432.64 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 142 S18_1984 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 41 100 9 4840.87 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 142 S18_1984 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10226 24 100 7 3892.08 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 142 S18_1984 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10240 37 100 2 5526.32 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 142 S18_1984 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10253 33 100 4 4459.62 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 142 S18_1984 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 49 100 5 6203.4 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 142 S18_1984 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10278 29 100 5 3754.05 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 142 S18_1984 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10287 24 100 3 3516.48 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 142 S18_1984 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10301 47 100 7 7488.04 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 142 S18_1984 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Large +10310 24 100 1 3448.08 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 142 S18_1984 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10321 25 100 9 3734 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 142 S18_1984 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10331 30 32.47 8 974.1 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 142 S18_1984 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10342 22 100 3 3160.74 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 142 S18_1984 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10356 27 64.69 2 1746.63 2004-12-09 00:00:00 Shipped 4 12 2004 Classic Cars 142 S18_1984 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10366 34 100 3 4207.84 2005-01-10 00:00:00 Shipped 1 1 2005 Classic Cars 142 S18_1984 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Medium +10377 36 100 6 4352.76 2005-02-09 00:00:00 Shipped 1 2 2005 Classic Cars 142 S18_1984 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10390 34 43.05 15 1463.7 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 142 S18_1984 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10406 48 100 2 7169.28 2005-04-15 00:00:00 Disputed 2 4 2005 Classic Cars 142 S18_1984 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Large +10419 34 100 4 4594.76 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 142 S18_1984 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10104 24 100 8 3457.92 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 163 S18_2238 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10115 46 100 4 7381.16 2003-04-04 00:00:00 Shipped 2 4 2003 Classic Cars 163 S18_2238 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Large +10127 45 100 10 7146.9 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 163 S18_2238 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Large +10141 39 100 4 5938.53 2003-08-01 00:00:00 Shipped 3 8 2003 Classic Cars 163 S18_2238 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10151 43 100 2 7110.91 2003-09-21 00:00:00 Shipped 3 9 2003 Classic Cars 163 S18_2238 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Large +10165 29 100 11 5032.95 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 163 S18_2238 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10176 20 100 10 3667.6 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 163 S18_2238 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10184 46 100 5 7381.16 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 163 S18_2238 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Large +10195 27 100 5 5128.11 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 163 S18_2238 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10207 44 100 6 7060.24 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 163 S18_2238 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Large +10219 43 100 1 8448.64 2004-02-10 00:00:00 Shipped 1 2 2004 Classic Cars 163 S18_2238 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Large +10230 49 100 8 7300.51 2004-03-15 00:00:00 Shipped 1 3 2004 Classic Cars 163 S18_2238 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Large +10246 40 100 4 6549.2 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 163 S18_2238 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10259 30 100 3 5697.9 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 163 S18_2238 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10271 50 100 4 9169 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 163 S18_2238 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10282 23 100 13 3238.63 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 163 S18_2238 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10292 26 100 7 4554.94 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 163 S18_2238 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10305 27 100 4 3934.44 2004-10-13 00:00:00 Shipped 4 10 2004 Classic Cars 163 S18_2238 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10314 42 100 13 5776.26 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 163 S18_2238 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10324 47 100 8 7207.45 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 163 S18_2238 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Large +10336 49 100 6 7460.74 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 163 S18_2238 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Large +10349 38 100 8 6719.54 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 163 S18_2238 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10358 20 100 10 2428 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 163 S18_2238 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10371 25 100 7 2602.25 2005-01-23 00:00:00 Shipped 1 1 2005 Classic Cars 163 S18_2238 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10382 25 88 5 2200 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 163 S18_2238 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10412 41 100 4 6712.93 2005-05-03 00:00:00 Shipped 2 5 2005 Classic Cars 163 S18_2238 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10425 28 100 3 5318.04 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 163 S18_2238 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10100 50 67.8 2 3390 2003-01-06 00:00:00 Shipped 1 1 2003 Vintage Cars 60 S18_2248 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10110 32 50.25 6 1608 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 60 S18_2248 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 42 53.88 5 2262.96 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 60 S18_2248 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10149 24 62.36 10 1496.64 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 60 S18_2248 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10162 27 69.62 8 1879.74 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 60 S18_2248 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10173 26 57.51 12 1495.26 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 60 S18_2248 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 38 61.15 9 2323.7 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 60 S18_2248 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 42 59.33 13 2491.86 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 60 S18_2248 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10204 23 71.44 3 1643.12 2003-12-02 00:00:00 Shipped 4 12 2003 Vintage Cars 60 S18_2248 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10214 21 62.96 6 1322.16 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 60 S18_2248 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10227 28 50.85 9 1423.8 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 60 S18_2248 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10241 33 72.65 1 2397.45 2004-04-13 00:00:00 Shipped 2 4 2004 Vintage Cars 60 S18_2248 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10280 25 62.96 15 1574 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 60 S18_2248 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10288 28 61.75 4 1729 2004-09-01 00:00:00 Shipped 3 9 2004 Vintage Cars 60 S18_2248 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10303 46 49.04 2 2255.84 2004-10-06 00:00:00 Shipped 4 10 2004 Vintage Cars 60 S18_2248 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10312 30 61.15 16 1834.5 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 60 S18_2248 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10332 38 84.25 9 3201.5 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 60 S18_2248 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10344 40 56.91 2 2276.4 2004-11-25 00:00:00 Shipped 4 11 2004 Vintage Cars 60 S18_2248 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10367 45 100 4 8884.8 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 60 S18_2248 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Large +10379 27 49.3 1 1331.1 2005-02-10 00:00:00 Shipped 1 2 2005 Vintage Cars 60 S18_2248 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10407 42 72.65 1 3051.3 2005-04-22 00:00:00 On Hold 2 4 2005 Vintage Cars 60 S18_2248 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10420 36 63.57 4 2288.52 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 60 S18_2248 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10104 29 100 12 3772.61 2003-01-31 00:00:00 Shipped 1 1 2003 Trucks and Buses 122 S18_2319 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10114 39 100 3 4164.42 2003-04-01 00:00:00 Shipped 2 4 2003 Trucks and Buses 122 S18_2319 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10127 45 100 14 6295.95 2003-06-03 00:00:00 Shipped 2 6 2003 Trucks and Buses 122 S18_2319 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10141 47 100 8 6287.66 2003-08-01 00:00:00 Shipped 3 8 2003 Trucks and Buses 122 S18_2319 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10151 49 100 6 5412.54 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 122 S18_2319 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10165 46 100 15 5984.14 2003-10-22 00:00:00 Shipped 4 10 2003 Trucks and Buses 122 S18_2319 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10175 48 100 4 5891.04 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 122 S18_2319 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10184 46 100 9 5984.14 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 122 S18_2319 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10195 35 100 9 3608.15 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 122 S18_2319 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10207 43 100 10 5752.54 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 122 S18_2319 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10229 26 100 4 3765.32 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 122 S18_2319 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10246 22 98.18 8 2159.96 2004-05-05 00:00:00 Shipped 2 5 2004 Trucks and Buses 122 S18_2319 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10259 34 99.41 7 3379.94 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 122 S18_2319 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10271 50 100 8 5093.5 2004-07-20 00:00:00 Shipped 3 7 2004 Trucks and Buses 122 S18_2319 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10281 48 100 4 5773.44 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 122 S18_2319 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10292 41 100 11 4528.86 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 122 S18_2319 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10305 36 100 8 4816.08 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 122 S18_2319 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10313 29 100 2 3416.78 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 122 S18_2319 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10324 33 37.48 10 1236.84 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 122 S18_2319 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10334 46 100 6 5814.86 2004-11-19 00:00:00 On Hold 4 11 2004 Trucks and Buses 122 S18_2319 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10349 38 100 7 5223.48 2004-12-01 00:00:00 Shipped 4 12 2004 Trucks and Buses 122 S18_2319 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10358 20 36.42 11 728.4 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 122 S18_2319 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10370 22 100 5 3949 2005-01-20 00:00:00 Shipped 1 1 2005 Trucks and Buses 122 S18_2319 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10383 27 100 11 3843.99 2005-02-22 00:00:00 Shipped 1 2 2005 Trucks and Buses 122 S18_2319 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10412 56 98.18 8 5498.08 2005-05-03 00:00:00 Shipped 2 5 2005 Trucks and Buses 122 S18_2319 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10425 38 99.41 7 3777.58 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 122 S18_2319 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10101 25 100 4 3782 2003-01-09 00:00:00 Shipped 1 1 2003 Vintage Cars 127 S18_2325 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10110 33 100 4 3859.68 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 127 S18_2325 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10124 42 100 3 4431.84 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 127 S18_2325 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10149 33 100 8 4950.33 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 127 S18_2325 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Medium +10162 38 100 6 4299.7 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 127 S18_2325 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10173 31 100 10 4492.83 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 127 S18_2325 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10182 20 100 7 2212 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 127 S18_2325 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 44 100 11 4642.88 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 127 S18_2325 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10204 26 100 1 3206.32 2003-12-02 00:00:00 Shipped 4 12 2003 Vintage Cars 127 S18_2325 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10214 27 100 4 3604.23 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 127 S18_2325 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10227 46 100 7 7017.76 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 127 S18_2325 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Large +10243 47 100 2 6154.18 2004-04-26 00:00:00 Shipped 2 4 2004 Vintage Cars 127 S18_2325 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10280 37 100 13 4750.8 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 127 S18_2325 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10288 31 100 2 3822.92 2004-09-01 00:00:00 Shipped 3 9 2004 Vintage Cars 127 S18_2325 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10304 24 100 17 2440.8 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 127 S18_2325 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 31 100 14 4729.36 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 127 S18_2325 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10322 50 100 6 12536.5 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 127 S18_2325 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Large +10332 35 64.69 8 2264.15 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 127 S18_2325 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10344 30 100 3 3928.2 2004-11-25 00:00:00 Shipped 4 11 2004 Vintage Cars 127 S18_2325 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10356 29 100 3 3630.22 2004-12-09 00:00:00 Shipped 4 12 2004 Vintage Cars 127 S18_2325 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10367 27 100 5 4196.07 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 127 S18_2325 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10380 40 100 10 4931.6 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 127 S18_2325 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 31 98.99 16 3068.69 2005-03-04 00:00:00 Shipped 1 3 2005 Vintage Cars 127 S18_2325 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10409 6 100 2 785.64 2005-04-23 00:00:00 Shipped 2 4 2005 Vintage Cars 127 S18_2325 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10420 45 100 2 4977 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 127 S18_2325 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10103 22 54.09 2 1189.98 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 60 S18_2432 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10114 45 68.67 6 3090.15 2003-04-01 00:00:00 Shipped 2 4 2003 Trucks and Buses 60 S18_2432 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10126 43 65.02 2 2795.86 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 60 S18_2432 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10140 46 61.99 2 2851.54 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 60 S18_2432 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10151 39 69.28 9 2701.92 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 60 S18_2432 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10165 31 71.1 18 2204.1 2003-10-22 00:00:00 Shipped 4 10 2003 Trucks and Buses 60 S18_2432 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10175 41 69.28 7 2840.48 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 60 S18_2432 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10184 44 60.16 12 2647.04 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 60 S18_2432 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10194 45 70.49 2 3172.05 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 60 S18_2432 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10207 37 69.89 13 2585.93 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 60 S18_2432 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10217 35 61.38 2 2148.3 2004-02-04 00:00:00 Shipped 1 2 2004 Trucks and Buses 60 S18_2432 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10229 28 59.55 7 1667.4 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 60 S18_2432 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10246 30 61.99 11 1859.7 2004-05-05 00:00:00 Shipped 2 5 2004 Trucks and Buses 60 S18_2432 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10259 30 49.22 10 1476.6 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 60 S18_2432 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10271 25 69.28 11 1732 2004-07-20 00:00:00 Shipped 3 7 2004 Trucks and Buses 60 S18_2432 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10281 29 57.73 7 1674.17 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 60 S18_2432 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 26 57.73 2 1500.98 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 60 S18_2432 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10305 41 53.48 11 2192.68 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 60 S18_2432 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10313 34 52.87 5 1797.58 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 60 S18_2432 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10322 35 61.21 11 2142.35 2004-11-04 00:00:00 Shipped 4 11 2004 Trucks and Buses 60 S18_2432 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10334 34 61.38 1 2086.92 2004-11-19 00:00:00 On Hold 4 11 2004 Trucks and Buses 60 S18_2432 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10347 50 100 8 6834.5 2004-11-29 00:00:00 Shipped 4 11 2004 Trucks and Buses 60 S18_2432 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 41 61.99 7 2541.59 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 60 S18_2432 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10370 22 96.86 7 2130.92 2005-01-20 00:00:00 Shipped 1 1 2005 Trucks and Buses 60 S18_2432 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10381 35 48.62 7 1701.7 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 60 S18_2432 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10391 44 38.5 5 1694 2005-03-09 00:00:00 Shipped 1 3 2005 Trucks and Buses 60 S18_2432 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10412 47 61.99 11 2913.53 2005-05-03 00:00:00 Shipped 2 5 2005 Trucks and Buses 60 S18_2432 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10425 19 49.22 10 935.18 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 60 S18_2432 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10106 34 90.39 2 3073.26 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 84 S18_2581 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10120 29 71.81 8 2082.49 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 84 S18_2581 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10133 49 69.27 3 3394.23 2003-06-27 00:00:00 Shipped 2 6 2003 Planes 84 S18_2581 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10145 30 85.32 14 2559.6 2003-08-25 00:00:00 Shipped 3 8 2003 Planes 84 S18_2581 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10168 21 70.96 9 1490.16 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 84 S18_2581 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10210 50 76.88 7 3844 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 84 S18_2581 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10223 47 100 9 4724.91 2004-02-20 00:00:00 Shipped 1 2 2004 Planes 84 S18_2581 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10235 24 76.03 3 1824.72 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 84 S18_2581 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 27 98.84 4 2668.68 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 84 S18_2581 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10263 33 86.17 10 2843.61 2004-06-28 00:00:00 Shipped 2 6 2004 Planes 84 S18_2581 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10275 35 90.39 9 3163.65 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 84 S18_2581 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10284 31 71.81 1 2226.11 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 84 S18_2581 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10297 25 82.79 4 2069.75 2004-09-16 00:00:00 Shipped 3 9 2004 Planes 84 S18_2581 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10308 27 82.79 7 2235.33 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 84 S18_2581 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10318 31 100 9 3116.43 2004-11-02 00:00:00 Shipped 4 11 2004 Planes 84 S18_2581 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10327 45 100 8 4781.7 2004-11-10 00:00:00 Resolved 4 11 2004 Planes 84 S18_2581 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10339 27 100 2 2810.7 2004-11-23 00:00:00 Shipped 4 11 2004 Planes 84 S18_2581 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10353 27 100 1 3515.67 2004-12-04 00:00:00 Shipped 4 12 2004 Planes 84 S18_2581 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10374 42 69.27 2 2909.34 2005-02-02 00:00:00 Shipped 1 2 2005 Planes 84 S18_2581 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Small +10386 21 74.77 18 1570.17 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 84 S18_2581 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 34 76.88 15 2613.92 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 84 S18_2581 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 42 76.03 3 3193.26 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 84 S18_2581 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10416 15 98.84 4 1482.6 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 84 S18_2581 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10107 29 70.87 6 2055.23 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 60 S18_2625 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10120 46 58.15 4 2674.9 2003-04-29 00:00:00 Shipped 2 4 2003 Motorcycles 60 S18_2625 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10134 30 61.78 6 1853.4 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 60 S18_2625 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10145 30 49.67 10 1490.1 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 60 S18_2625 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10159 42 51.48 18 2162.16 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 60 S18_2625 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10168 46 61.18 5 2814.28 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 60 S18_2625 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10180 25 64.2 13 1605 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 60 S18_2625 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10188 32 65.42 5 2093.44 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 60 S18_2625 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10201 30 64.81 6 1944.3 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 60 S18_2625 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10210 40 49.67 3 1986.8 2004-01-12 00:00:00 Shipped 1 1 2004 Motorcycles 60 S18_2625 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 28 60.57 5 1695.96 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 60 S18_2625 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10236 23 55.72 2 1281.56 2004-04-03 00:00:00 Shipped 2 4 2004 Motorcycles 60 S18_2625 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10251 29 61.18 6 1774.22 2004-05-18 00:00:00 Shipped 2 5 2004 Motorcycles 60 S18_2625 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10263 34 58.75 6 1997.5 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 60 S18_2625 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10275 37 63.6 5 2353.2 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 60 S18_2625 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10285 20 49.06 10 981.2 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 60 S18_2625 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10298 32 48.46 2 1550.72 2004-09-27 00:00:00 Shipped 3 9 2004 Motorcycles 60 S18_2625 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Small +10308 34 52.09 3 1771.06 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 60 S18_2625 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10318 42 52.7 5 2213.4 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 60 S18_2625 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10329 38 100 12 5266.04 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 60 S18_2625 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10339 30 62.16 1 1864.8 2004-11-23 00:00:00 Shipped 4 11 2004 Motorcycles 60 S18_2625 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10362 23 49.67 3 1142.41 2005-01-05 00:00:00 Shipped 1 1 2005 Motorcycles 60 S18_2625 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10374 22 53.3 4 1172.6 2005-02-02 00:00:00 Shipped 1 2 2005 Motorcycles 60 S18_2625 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Small +10389 39 100 5 6981 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 60 S18_2625 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10402 55 55.72 2 3064.6 2005-04-07 00:00:00 Shipped 2 4 2005 Motorcycles 60 S18_2625 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10417 36 61.18 6 2202.48 2005-05-13 00:00:00 Disputed 2 5 2005 Motorcycles 60 S18_2625 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10101 26 100 1 3773.38 2003-01-09 00:00:00 Shipped 1 1 2003 Vintage Cars 168 S18_2795 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10110 31 100 1 5074.39 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 168 S18_2795 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10125 34 100 2 6483.46 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 168 S18_2795 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10139 41 100 8 7956.46 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 168 S18_2795 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Large +10149 23 100 5 4230.62 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 168 S18_2795 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Medium +10162 48 100 3 7209.12 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 168 S18_2795 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Large +10173 22 100 7 3452.68 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 168 S18_2795 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10182 21 100 4 3047.73 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 168 S18_2795 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10193 22 100 8 3675.32 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 168 S18_2795 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10205 40 100 3 7492.4 2003-12-03 00:00:00 Shipped 4 12 2003 Vintage Cars 168 S18_2795 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10214 50 100 1 9534.5 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 168 S18_2795 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Large +10227 29 100 4 5579.02 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 168 S18_2795 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10244 43 100 8 5950.34 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 168 S18_2795 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10255 24 100 1 3726 2004-06-04 00:00:00 Shipped 2 6 2004 Vintage Cars 168 S18_2795 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Medium +10280 22 100 10 4455 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 168 S18_2795 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10289 43 100 3 8272.34 2004-09-03 00:00:00 Shipped 3 9 2004 Vintage Cars 168 S18_2795 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Large +10304 20 100 14 3577.6 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 168 S18_2795 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10312 25 100 11 3881.25 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 168 S18_2795 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10322 36 100 2 5797.44 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 168 S18_2795 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10332 24 52.67 1 1264.08 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 168 S18_2795 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10347 21 100 6 4815.3 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 168 S18_2795 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10356 30 100 1 4462.2 2004-12-09 00:00:00 Shipped 4 12 2004 Vintage Cars 168 S18_2795 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10367 32 94.79 7 3033.28 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 168 S18_2795 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10380 21 47.18 8 990.78 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 168 S18_2795 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10390 26 78.11 7 2030.86 2005-03-04 00:00:00 Shipped 1 3 2005 Vintage Cars 168 S18_2795 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10421 35 100 1 5433.75 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 168 S18_2795 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10109 26 100 1 3157.44 2003-03-10 00:00:00 Shipped 1 3 2003 Classic Cars 132 S18_2870 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10123 46 100 3 5161.2 2003-05-20 00:00:00 Shipped 2 5 2003 Classic Cars 132 S18_2870 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Medium +10137 37 100 3 4346.76 2003-07-10 00:00:00 Shipped 3 7 2003 Classic Cars 132 S18_2870 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10148 27 100 10 3528.36 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 132 S18_2870 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10161 23 100 9 3187.8 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 132 S18_2870 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10172 39 100 7 6023.16 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 132 S18_2870 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10181 27 100 3 3884.76 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 132 S18_2870 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 38 100 8 4965.84 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 132 S18_2870 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 27 100 14 4169.88 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 132 S18_2870 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 40 100 7 4910.4 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 132 S18_2870 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10226 24 100 5 3231.36 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 132 S18_2870 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10241 44 100 12 6853.44 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 132 S18_2870 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Medium +10253 37 100 2 5177.04 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 132 S18_2870 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 20 100 3 2824.8 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 132 S18_2870 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10278 39 100 3 4324.32 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 132 S18_2870 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10287 44 100 1 5052.96 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 132 S18_2870 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10301 22 100 5 3223.44 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 132 S18_2870 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10311 43 100 10 5278.68 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 132 S18_2870 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10321 27 100 7 2851.2 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 132 S18_2870 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10331 26 64.9 10 1687.4 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 132 S18_2870 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10343 25 52.32 3 1308 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 132 S18_2870 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10366 49 100 2 6144.6 2005-01-10 00:00:00 Shipped 1 1 2005 Classic Cars 132 S18_2870 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Medium +10379 29 100 5 5127.2 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 132 S18_2870 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 41 100 12 6386.16 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 132 S18_2870 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10419 55 100 2 7695.6 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 132 S18_2870 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Large +10103 27 83.07 12 2242.89 2003-01-29 00:00:00 Shipped 1 1 2003 Vintage Cars 101 S18_2949 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10112 23 100 2 2539.89 2003-03-24 00:00:00 Shipped 1 3 2003 Vintage Cars 101 S18_2949 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10126 31 90.17 12 2795.27 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 101 S18_2949 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10139 46 100 1 5545.76 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 101 S18_2949 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10150 47 91.18 9 4285.46 2003-09-19 00:00:00 Shipped 3 9 2003 Vintage Cars 101 S18_2949 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10163 31 100 2 3329.09 2003-10-20 00:00:00 Shipped 4 10 2003 Vintage Cars 101 S18_2949 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10174 46 100 5 5592.22 2003-11-06 00:00:00 Shipped 4 11 2003 Vintage Cars 101 S18_2949 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10183 37 89.15 9 3298.55 2003-11-13 00:00:00 Shipped 4 11 2003 Vintage Cars 101 S18_2949 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10193 28 93.21 1 2609.88 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 101 S18_2949 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10206 37 90.17 7 3336.29 2003-12-05 00:00:00 Shipped 4 12 2003 Vintage Cars 101 S18_2949 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10215 49 100 4 5510.05 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 101 S18_2949 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10228 24 100 3 2504.4 2004-03-10 00:00:00 Shipped 1 3 2004 Vintage Cars 101 S18_2949 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Small +10244 30 100 1 3525.6 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 101 S18_2949 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10257 50 88.14 1 4407 2004-06-14 00:00:00 Shipped 2 6 2004 Vintage Cars 101 S18_2949 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10270 31 96.24 10 2983.44 2004-07-19 00:00:00 Shipped 3 7 2004 Vintage Cars 101 S18_2949 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10280 46 100 3 5126.24 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 101 S18_2949 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10291 47 100 12 5713.79 2004-09-08 00:00:00 Shipped 3 9 2004 Vintage Cars 101 S18_2949 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10304 46 100 7 4613.8 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 101 S18_2949 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10312 37 100 4 3711.1 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 101 S18_2949 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10322 33 100 12 3524.73 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 101 S18_2949 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10333 31 90.17 5 2795.27 2004-11-18 00:00:00 Shipped 4 11 2004 Vintage Cars 101 S18_2949 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10347 48 100 9 4814.4 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 101 S18_2949 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 41 87.13 6 3572.33 2004-12-10 00:00:00 Shipped 4 12 2004 Vintage Cars 101 S18_2949 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10369 42 100 1 4581.36 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 101 S18_2949 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10381 41 100 8 4319.76 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 101 S18_2949 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10391 32 45.25 6 1448 2005-03-09 00:00:00 Shipped 1 3 2005 Vintage Cars 101 S18_2949 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10423 10 88.14 1 881.4 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 101 S18_2949 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10103 35 57.46 14 2011.1 2003-01-29 00:00:00 Shipped 1 1 2003 Vintage Cars 62 S18_2957 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10111 28 64.33 2 1801.24 2003-03-25 00:00:00 Shipped 1 3 2003 Vintage Cars 62 S18_2957 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10126 46 73.7 14 3390.2 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 62 S18_2957 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10139 20 71.2 3 1424 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 62 S18_2957 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10150 30 49.97 11 1499.1 2003-09-19 00:00:00 Shipped 3 9 2003 Vintage Cars 62 S18_2957 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10163 48 69.96 4 3358.08 2003-10-20 00:00:00 Shipped 4 10 2003 Vintage Cars 62 S18_2957 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10173 28 53.72 2 1504.16 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 62 S18_2957 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10183 39 68.08 11 2655.12 2003-11-13 00:00:00 Shipped 4 11 2003 Vintage Cars 62 S18_2957 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10193 24 51.84 3 1244.16 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 62 S18_2957 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10206 28 67.46 9 1888.88 2003-12-05 00:00:00 Shipped 4 12 2003 Vintage Cars 62 S18_2957 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10215 31 58.71 6 1820.01 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 62 S18_2957 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Small +10228 45 63.71 5 2866.95 2004-03-10 00:00:00 Shipped 1 3 2004 Vintage Cars 62 S18_2957 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Small +10244 24 58.09 3 1394.16 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 62 S18_2957 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10257 49 53.72 3 2632.28 2004-06-14 00:00:00 Shipped 2 6 2004 Vintage Cars 62 S18_2957 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10269 32 63.08 1 2018.56 2004-07-16 00:00:00 Shipped 3 7 2004 Vintage Cars 62 S18_2957 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10280 43 68.71 5 2954.53 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 62 S18_2957 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10291 37 50.59 14 1871.83 2004-09-08 00:00:00 Shipped 3 9 2004 Vintage Cars 62 S18_2957 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10304 24 64.96 9 1559.04 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 62 S18_2957 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 35 53.72 6 1880.2 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 62 S18_2957 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10322 41 29.87 13 1224.67 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 62 S18_2957 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10332 26 100 17 2979.08 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 62 S18_2957 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10347 34 64.96 10 2208.64 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 62 S18_2957 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10357 49 70.58 5 3458.42 2004-12-10 00:00:00 Shipped 4 12 2004 Vintage Cars 62 S18_2957 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10369 28 44.21 6 1237.88 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 62 S18_2957 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10381 40 68.08 4 2723.2 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 62 S18_2957 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10392 37 59.96 3 2218.52 2005-03-10 00:00:00 Shipped 1 3 2005 Vintage Cars 62 S18_2957 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Small +10423 31 53.72 3 1665.32 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 62 S18_2957 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10106 41 83.44 18 3421.04 2003-02-17 00:00:00 Shipped 1 2 2003 Ships 86 S18_3029 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10119 21 89.46 9 1878.66 2003-04-28 00:00:00 Shipped 2 4 2003 Ships 86 S18_3029 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10130 40 96.34 2 3853.6 2003-06-16 00:00:00 Shipped 2 6 2003 Ships 86 S18_3029 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Medium +10143 46 74.84 13 3442.64 2003-08-10 00:00:00 Shipped 3 8 2003 Ships 86 S18_3029 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10155 44 79.14 11 3482.16 2003-10-06 00:00:00 Shipped 4 10 2003 Ships 86 S18_3029 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10167 46 73.12 7 3363.52 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 86 S18_3029 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10178 41 81.72 10 3350.52 2003-11-08 00:00:00 Shipped 4 11 2003 Ships 86 S18_3029 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10186 32 89.46 7 2862.72 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 86 S18_3029 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10197 46 87.74 4 4036.04 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 86 S18_3029 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10209 28 100 6 2817.92 2004-01-09 00:00:00 Shipped 1 1 2004 Ships 86 S18_3029 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10222 49 94.62 10 4636.38 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 86 S18_3029 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10248 21 73.98 1 1553.58 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 86 S18_3029 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10262 32 84.3 15 2697.6 2004-06-24 00:00:00 Cancelled 2 6 2004 Ships 86 S18_3029 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10273 34 98.06 2 3334.04 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 86 S18_3029 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10283 21 98.06 4 2059.26 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 86 S18_3029 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10296 21 96.34 13 2023.14 2004-09-15 00:00:00 Shipped 3 9 2004 Ships 86 S18_3029 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10307 31 83.44 7 2586.64 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 86 S18_3029 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10316 21 94.62 15 1987.02 2004-11-01 00:00:00 Shipped 4 11 2004 Ships 86 S18_3029 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10327 25 45.86 5 1146.5 2004-11-10 00:00:00 Resolved 4 11 2004 Ships 86 S18_3029 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10338 28 82.58 3 2312.24 2004-11-22 00:00:00 Shipped 4 11 2004 Ships 86 S18_3029 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Small +10350 43 64.97 6 2793.71 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 86 S18_3029 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10373 22 86.74 5 1908.28 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 86 S18_3029 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 37 93.01 5 3441.37 2005-03-01 00:00:00 Resolved 1 3 2005 Ships 86 S18_3029 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 28 72.26 18 2023.28 2005-03-30 00:00:00 Shipped 1 3 2005 Ships 86 S18_3029 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10400 30 74.84 7 2245.2 2005-04-01 00:00:00 Shipped 2 4 2005 Ships 86 S18_3029 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10414 44 73.98 1 3255.12 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 86 S18_3029 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10103 25 100 13 2539.5 2003-01-29 00:00:00 Shipped 1 1 2003 Vintage Cars 104 S18_3136 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10111 43 100 1 4818.15 2003-03-25 00:00:00 Shipped 1 3 2003 Vintage Cars 104 S18_3136 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10126 30 97.39 13 2921.7 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 104 S18_3136 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10139 20 90.06 2 1801.2 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 104 S18_3136 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10150 26 100 10 2804.36 2003-09-19 00:00:00 Shipped 3 9 2003 Vintage Cars 104 S18_3136 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10163 40 100 3 4900.8 2003-10-20 00:00:00 Shipped 4 10 2003 Vintage Cars 104 S18_3136 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10173 31 89.01 1 2759.31 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 104 S18_3136 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10183 22 100 10 2488.2 2003-11-13 00:00:00 Shipped 4 11 2003 Vintage Cars 104 S18_3136 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10193 23 100 2 2769.89 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 104 S18_3136 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10206 30 100 8 3581.4 2003-12-05 00:00:00 Shipped 4 12 2003 Vintage Cars 104 S18_3136 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10215 49 100 5 5285.14 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 104 S18_3136 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10228 31 100 4 3181.53 2004-03-10 00:00:00 Shipped 1 3 2004 Vintage Cars 104 S18_3136 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Medium +10244 29 100 2 3340.51 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 104 S18_3136 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10257 37 84.82 2 3138.34 2004-06-14 00:00:00 Shipped 2 6 2004 Vintage Cars 104 S18_3136 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10270 38 100 11 4775.08 2004-07-19 00:00:00 Shipped 3 7 2004 Vintage Cars 104 S18_3136 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10280 29 100 4 3006.43 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 104 S18_3136 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10291 23 100 13 2866.26 2004-09-08 00:00:00 Shipped 3 9 2004 Vintage Cars 104 S18_3136 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10304 26 85.87 8 2232.62 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 104 S18_3136 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 38 100 5 4457.02 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 104 S18_3136 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10322 48 47.04 7 2257.92 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 104 S18_3136 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10332 40 39.8 18 1592 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 104 S18_3136 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10347 45 100 11 4948.2 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 104 S18_3136 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 44 100 4 5160.76 2004-12-10 00:00:00 Shipped 4 12 2004 Vintage Cars 104 S18_3136 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10369 21 94.22 5 1978.62 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 104 S18_3136 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10381 35 100 5 4288.2 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 104 S18_3136 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10392 29 86.92 2 2520.68 2005-03-10 00:00:00 Shipped 1 3 2005 Vintage Cars 104 S18_3136 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Small +10423 21 84.82 2 1781.22 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 104 S18_3136 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10105 22 100 11 3065.04 2003-02-11 00:00:00 Shipped 1 2 2003 Vintage Cars 136 S18_3140 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10117 26 100 5 3551.34 2003-04-16 00:00:00 Shipped 2 4 2003 Vintage Cars 136 S18_3140 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10128 41 100 2 5544.02 2003-06-06 00:00:00 Shipped 2 6 2003 Vintage Cars 136 S18_3140 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10142 47 100 8 6034.33 2003-08-08 00:00:00 Shipped 3 8 2003 Vintage Cars 136 S18_3140 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10153 31 100 7 3641.57 2003-09-28 00:00:00 Shipped 3 9 2003 Vintage Cars 136 S18_3140 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10166 43 100 2 6930.74 2003-10-21 00:00:00 Shipped 4 10 2003 Vintage Cars 136 S18_3140 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10177 23 100 9 3675.63 2003-11-07 00:00:00 Shipped 4 11 2003 Vintage Cars 136 S18_3140 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Medium +10185 28 100 9 3442.04 2003-11-14 00:00:00 Shipped 4 11 2003 Vintage Cars 136 S18_3140 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10196 49 100 1 6893.81 2003-11-26 00:00:00 Shipped 4 11 2003 Vintage Cars 136 S18_3140 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10208 24 100 9 2622.48 2004-01-02 00:00:00 Shipped 1 1 2004 Vintage Cars 136 S18_3140 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10221 33 100 3 4417.38 2004-02-18 00:00:00 Shipped 1 2 2004 Vintage Cars 136 S18_3140 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10232 22 100 6 3606.02 2004-03-20 00:00:00 Shipped 1 3 2004 Vintage Cars 136 S18_3140 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10248 32 100 12 3802.56 2004-05-07 00:00:00 Cancelled 2 5 2004 Vintage Cars 136 S18_3140 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10273 40 100 13 5026.4 2004-07-21 00:00:00 Shipped 3 7 2004 Vintage Cars 136 S18_3140 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10282 43 100 1 6695.53 2004-08-20 00:00:00 Shipped 3 8 2004 Vintage Cars 136 S18_3140 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10293 24 100 4 2819.28 2004-09-09 00:00:00 Shipped 3 9 2004 Vintage Cars 136 S18_3140 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10306 32 100 9 3759.04 2004-10-14 00:00:00 Shipped 4 10 2004 Vintage Cars 136 S18_3140 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 20 100 1 2731.8 2004-10-22 00:00:00 Shipped 4 10 2004 Vintage Cars 136 S18_3140 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10325 24 69.12 9 1658.88 2004-11-05 00:00:00 Shipped 4 11 2004 Vintage Cars 136 S18_3140 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10336 48 100 12 5778.24 2004-11-20 00:00:00 Shipped 4 11 2004 Vintage Cars 136 S18_3140 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10350 44 100 1 5191.12 2004-12-02 00:00:00 Shipped 4 12 2004 Vintage Cars 136 S18_3140 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10372 28 100 3 3862.88 2005-01-26 00:00:00 Shipped 1 1 2005 Vintage Cars 136 S18_3140 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10383 24 61.52 9 1476.48 2005-02-22 00:00:00 Shipped 1 2 2005 Vintage Cars 136 S18_3140 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10396 33 100 2 5273.73 2005-03-23 00:00:00 Shipped 1 3 2005 Vintage Cars 136 S18_3140 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10414 41 100 12 4872.03 2005-05-06 00:00:00 On Hold 2 5 2005 Vintage Cars 136 S18_3140 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10104 23 100 13 4556.99 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10109 46 100 5 8257 2003-03-10 00:00:00 Shipped 1 3 2003 Classic Cars 169 S18_3232 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Large +10114 48 100 4 8209.44 2003-04-01 00:00:00 Shipped 2 4 2003 Classic Cars 169 S18_3232 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Large +10122 25 100 3 3598.5 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 169 S18_3232 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10127 22 100 15 3837.24 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 169 S18_3232 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10136 41 100 3 8331.61 2003-07-04 00:00:00 Shipped 3 7 2003 Classic Cars 169 S18_3232 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Large +10141 34 100 9 4836.5 2003-08-01 00:00:00 Shipped 3 8 2003 Classic Cars 169 S18_3232 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10148 32 100 14 5418.88 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 169 S18_3232 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10151 21 100 7 3734.01 2003-09-21 00:00:00 Shipped 3 9 2003 Classic Cars 169 S18_3232 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10160 20 100 1 3996.4 2003-10-11 00:00:00 Shipped 4 10 2003 Classic Cars 169 S18_3232 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10165 47 100 16 8754.69 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 169 S18_3232 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Large +10171 39 100 3 5481.45 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 169 S18_3232 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10175 29 100 5 4419.89 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 169 S18_3232 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10181 45 100 7 6324.75 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 169 S18_3232 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10184 28 100 10 4409.72 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 169 S18_3232 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10192 26 100 12 3918.46 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 169 S18_3232 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10195 50 100 10 7620.5 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 169 S18_3232 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Large +10203 48 100 1 8291.04 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10207 25 100 11 3937.25 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 169 S18_3232 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10212 40 100 11 5554.4 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10225 43 100 2 6407.86 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 169 S18_3232 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10229 22 100 5 4172.52 2004-03-11 00:00:00 Shipped 1 3 2004 Classic Cars 169 S18_3232 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10239 47 100 1 7083.37 2004-04-12 00:00:00 Shipped 2 4 2004 Classic Cars 169 S18_3232 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Large +10246 36 100 9 7132.68 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10253 40 100 6 6773.6 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 169 S18_3232 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10259 27 100 8 3657.69 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 169 S18_3232 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10266 29 100 7 4812.55 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 169 S18_3232 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10271 20 100 9 3928.6 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 169 S18_3232 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10278 42 100 7 6401.22 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 169 S18_3232 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10281 25 100 5 4191.25 2004-08-19 00:00:00 Shipped 3 8 2004 Classic Cars 169 S18_3232 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10287 36 100 5 5852.52 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 169 S18_3232 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10292 21 100 12 2844.87 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 169 S18_3232 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10301 23 100 9 4011.66 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 169 S18_3232 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10305 37 100 9 7455.87 2004-10-13 00:00:00 Shipped 4 10 2004 Classic Cars 169 S18_3232 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Large +10310 48 100 3 8940.96 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 169 S18_3232 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Large +10313 25 100 3 4572.25 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 169 S18_3232 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10321 33 100 11 5700.09 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 169 S18_3232 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10324 27 100 12 3155.49 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 169 S18_3232 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10331 27 100 11 4170.69 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 169 S18_3232 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10334 20 100 3 2878.8 2004-11-19 00:00:00 On Hold 4 11 2004 Classic Cars 169 S18_3232 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10342 30 100 4 5029.5 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 169 S18_3232 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10349 48 100 6 7396.8 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 169 S18_3232 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Large +10358 32 93.49 12 2991.68 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10366 34 100 1 6275.72 2005-01-10 00:00:00 Shipped 1 1 2005 Classic Cars 169 S18_3232 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Medium +10370 27 56.85 9 1534.95 2005-01-20 00:00:00 Shipped 1 1 2005 Classic Cars 169 S18_3232 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10377 39 100 3 7264.53 2005-02-09 00:00:00 Shipped 1 2 2005 Classic Cars 169 S18_3232 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Large +10383 47 100 6 6869.05 2005-02-22 00:00:00 Shipped 1 2 2005 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10394 22 100 5 3353.02 2005-03-15 00:00:00 Shipped 1 3 2005 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10405 55 100 1 8289.05 2005-04-14 00:00:00 Shipped 2 4 2005 Classic Cars 169 S18_3232 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Large +10412 60 100 9 11887.8 2005-05-03 00:00:00 Shipped 2 5 2005 Classic Cars 169 S18_3232 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10419 35 100 6 5926.9 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 169 S18_3232 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10425 28 100 8 3793.16 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 169 S18_3232 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10105 38 100 13 4330.1 2003-02-11 00:00:00 Shipped 1 2 2003 Trains 100 S18_3259 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10117 21 95.8 7 2011.8 2003-04-16 00:00:00 Shipped 2 4 2003 Trains 100 S18_3259 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10128 41 100 4 4837.18 2003-06-06 00:00:00 Shipped 2 6 2003 Trains 100 S18_3259 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10142 22 97.81 10 2151.82 2003-08-08 00:00:00 Shipped 3 8 2003 Trains 100 S18_3259 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10153 29 88.74 9 2573.46 2003-09-28 00:00:00 Shipped 3 9 2003 Trains 100 S18_3259 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10165 50 100 1 5344.5 2003-10-22 00:00:00 Shipped 4 10 2003 Trains 100 S18_3259 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10177 29 100 11 3070.52 2003-11-07 00:00:00 Shipped 4 11 2003 Trains 100 S18_3259 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Medium +10185 49 80.67 11 3952.83 2003-11-14 00:00:00 Shipped 4 11 2003 Trains 100 S18_3259 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10196 35 100 3 3564.75 2003-11-26 00:00:00 Shipped 4 11 2003 Trains 100 S18_3259 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10208 48 100 11 5614.56 2004-01-02 00:00:00 Shipped 1 1 2004 Trains 100 S18_3259 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10221 23 80.67 5 1855.41 2004-02-18 00:00:00 Shipped 1 2 2004 Trains 100 S18_3259 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10232 48 95.8 8 4598.4 2004-03-20 00:00:00 Shipped 1 3 2004 Trains 100 S18_3259 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10248 42 100 14 5082.42 2004-05-07 00:00:00 Cancelled 2 5 2004 Trains 100 S18_3259 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10273 47 100 15 5450.59 2004-07-21 00:00:00 Shipped 3 7 2004 Trains 100 S18_3259 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10282 36 100 3 4174.92 2004-08-20 00:00:00 Shipped 3 8 2004 Trains 100 S18_3259 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10293 22 100 6 2418.24 2004-09-09 00:00:00 Shipped 3 9 2004 Trains 100 S18_3259 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10306 40 91.76 11 3670.4 2004-10-14 00:00:00 Shipped 4 10 2004 Trains 100 S18_3259 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 23 100 3 2481.7 2004-10-22 00:00:00 Shipped 4 10 2004 Trains 100 S18_3259 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10326 32 100 6 3807.68 2004-11-09 00:00:00 Shipped 4 11 2004 Trains 100 S18_3259 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10336 21 100 7 2230.41 2004-11-20 00:00:00 Shipped 4 11 2004 Trains 100 S18_3259 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10350 41 93.04 2 3814.64 2004-12-02 00:00:00 Shipped 4 12 2004 Trains 100 S18_3259 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10372 25 84.71 5 2117.75 2005-01-26 00:00:00 Shipped 1 1 2005 Trains 100 S18_3259 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10383 26 100 12 3340.48 2005-02-22 00:00:00 Shipped 1 2 2005 Trains 100 S18_3259 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10396 24 89.75 4 2154 2005-03-23 00:00:00 Shipped 1 3 2005 Trains 100 S18_3259 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10414 48 100 14 5808.48 2005-05-06 00:00:00 On Hold 2 5 2005 Trains 100 S18_3259 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10108 26 68.35 9 1777.1 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 80 S18_3278 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10122 21 73.17 13 1536.57 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 80 S18_3278 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 45 78 10 3510 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 80 S18_3278 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10147 36 86.04 10 3097.44 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 80 S18_3278 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10159 21 81.21 5 1705.41 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 80 S18_3278 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 32 70.76 5 2264.32 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 80 S18_3278 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10181 30 82.82 17 2484.6 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 80 S18_3278 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10191 36 94.88 6 3415.68 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 80 S18_3278 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10203 33 86.04 11 2839.32 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 80 S18_3278 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10211 35 78 5 2730 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 80 S18_3278 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10225 37 95.69 12 3540.53 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 80 S18_3278 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10238 41 73.17 6 2999.97 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 80 S18_3278 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10252 20 76.39 2 1527.8 2004-05-26 00:00:00 Shipped 2 5 2004 Classic Cars 80 S18_3278 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10265 45 86.84 2 3907.8 2004-07-02 00:00:00 Shipped 3 7 2004 Classic Cars 80 S18_3278 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10276 38 69.96 6 2658.48 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 80 S18_3278 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Small +10287 43 70.76 15 3042.68 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 80 S18_3278 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10300 49 78.8 8 3861.2 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 80 S18_3278 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10310 27 80.41 13 2171.07 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 80 S18_3278 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10319 46 73.98 1 3403.08 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 80 S18_3278 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Medium +10329 38 59.1 10 2245.8 2004-11-15 00:00:00 Shipped 4 11 2004 Classic Cars 80 S18_3278 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10342 25 66.74 5 1668.5 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 80 S18_3278 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10363 46 60.3 10 2773.8 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 80 S18_3278 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10378 22 100 4 2464 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 80 S18_3278 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10390 40 100 9 5491.6 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 80 S18_3278 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10103 46 100 16 4791.82 2003-01-29 00:00:00 Shipped 1 1 2003 Vintage Cars 99 S18_3320 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10111 39 100 4 4178.85 2003-03-25 00:00:00 Shipped 1 3 2003 Vintage Cars 99 S18_3320 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10126 38 82.34 16 3128.92 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 99 S18_3320 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10139 30 100 5 3095.4 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 99 S18_3320 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10149 42 94.25 2 3958.5 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 99 S18_3320 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Medium +10163 43 100 6 4991.44 2003-10-20 00:00:00 Shipped 4 10 2003 Vintage Cars 99 S18_3320 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10173 29 95.24 4 2761.96 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 99 S18_3320 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 33 86.31 1 2848.23 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 99 S18_3320 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 32 79.37 5 2539.84 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 99 S18_3320 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10206 28 87.3 11 2444.4 2003-12-05 00:00:00 Shipped 4 12 2003 Vintage Cars 99 S18_3320 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10215 41 100 8 4555.92 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 99 S18_3320 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10227 33 100 1 3666.96 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 99 S18_3320 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10244 36 84.33 5 3035.88 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 99 S18_3320 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10257 26 89.29 5 2321.54 2004-06-14 00:00:00 Shipped 2 6 2004 Vintage Cars 99 S18_3320 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10280 34 100 7 3474.46 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 99 S18_3320 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10290 26 96.23 2 2501.98 2004-09-07 00:00:00 Shipped 3 9 2004 Vintage Cars 99 S18_3320 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Small +10304 38 100 11 3958.46 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 99 S18_3320 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10312 33 100 8 3535.95 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 99 S18_3320 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10323 33 91.27 2 3011.91 2004-11-05 00:00:00 Shipped 4 11 2004 Vintage Cars 99 S18_3320 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10333 46 100 2 11336.7 2004-11-18 00:00:00 Shipped 4 11 2004 Vintage Cars 99 S18_3320 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Large +10347 26 100 12 2656.94 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 99 S18_3320 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10357 25 100 3 2604.25 2004-12-10 00:00:00 Shipped 4 12 2004 Vintage Cars 99 S18_3320 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10369 45 73.08 4 3288.6 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 99 S18_3320 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10382 50 100 7 8935.5 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 99 S18_3320 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10392 36 100 1 4035.96 2005-03-10 00:00:00 Shipped 1 3 2005 Vintage Cars 99 S18_3320 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10423 21 89.29 5 1875.09 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 99 S18_3320 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10108 29 100 8 4049.56 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 146 S18_3482 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 21 100 12 2469.39 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 146 S18_3482 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 42 100 9 5432.7 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 146 S18_3482 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10147 37 100 9 4405.22 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 146 S18_3482 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10159 25 100 4 3638 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 146 S18_3482 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10169 36 100 4 4444.92 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 146 S18_3482 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10181 22 100 16 3395.48 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 146 S18_3482 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10191 23 100 5 3414.58 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 146 S18_3482 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10203 32 100 10 5127.04 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 146 S18_3482 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10211 28 100 4 3745.28 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 146 S18_3482 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10225 27 100 11 4564.08 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 146 S18_3482 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10238 49 100 5 6554.24 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 146 S18_3482 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10252 41 100 1 6749.83 2004-05-26 00:00:00 Shipped 2 5 2004 Classic Cars 146 S18_3482 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10265 49 100 1 8427.02 2004-07-02 00:00:00 Shipped 3 7 2004 Classic Cars 146 S18_3482 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Large +10276 30 100 5 3924.6 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 146 S18_3482 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10287 40 100 14 6761.6 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 146 S18_3482 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10300 23 100 7 3786.49 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 146 S18_3482 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10310 49 100 12 6266.12 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 146 S18_3482 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10320 25 100 5 3491 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 146 S18_3482 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10330 37 100 3 4405.22 2004-11-16 00:00:00 Shipped 4 11 2004 Classic Cars 146 S18_3482 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10342 55 100 7 6548.3 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 146 S18_3482 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10355 23 100 7 3177.91 2004-12-07 00:00:00 Shipped 4 12 2004 Classic Cars 146 S18_3482 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10363 24 100 11 4142.64 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 146 S18_3482 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10378 43 96.49 10 4149.07 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 146 S18_3482 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 50 100 1 7397 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 146 S18_3482 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10109 47 100 2 6241.6 2003-03-10 00:00:00 Shipped 1 3 2003 Classic Cars 141 S18_3685 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10123 34 100 4 5331.88 2003-05-20 00:00:00 Shipped 2 5 2003 Classic Cars 141 S18_3685 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Medium +10137 31 100 4 5124.3 2003-07-10 00:00:00 Shipped 3 7 2003 Classic Cars 141 S18_3685 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10148 28 100 11 3639.44 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 141 S18_3685 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10161 36 100 10 5544 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 141 S18_3685 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10172 48 100 8 5493.12 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 141 S18_3685 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10181 39 100 4 5785.26 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 141 S18_3685 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 45 100 9 5340.6 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 141 S18_3685 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 35 100 15 5735.8 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 141 S18_3685 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 45 100 8 6357.6 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 141 S18_3685 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10226 46 100 6 7343.9 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 141 S18_3685 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Large +10240 37 100 1 5959.22 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 141 S18_3685 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10253 31 100 3 4029.38 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 141 S18_3685 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 33 100 4 5035.14 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 141 S18_3685 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10278 31 100 4 4116.8 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 141 S18_3685 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10287 27 100 2 4310.55 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 141 S18_3685 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10301 39 100 6 6446.7 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 141 S18_3685 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10311 32 100 11 3616.64 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 141 S18_3685 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10321 28 100 8 4232.76 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 141 S18_3685 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10331 26 67.91 12 1765.66 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 141 S18_3685 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10343 44 84.88 2 3734.72 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 141 S18_3685 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10367 46 100 6 4808.38 2005-01-12 00:00:00 Resolved 1 1 2005 Classic Cars 141 S18_3685 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10379 32 70.83 4 2266.56 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 141 S18_3685 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10406 65 100 1 10468.9 2005-04-15 00:00:00 Disputed 2 4 2005 Classic Cars 141 S18_3685 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Large +10419 43 100 3 5589.14 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 141 S18_3685 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10108 43 67.77 12 2914.11 2003-03-03 00:00:00 Shipped 1 3 2003 Motorcycles 62 S18_3782 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10122 35 49.74 16 1740.9 2003-05-08 00:00:00 Shipped 2 5 2003 Motorcycles 62 S18_3782 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 45 50.36 13 2266.2 2003-07-02 00:00:00 Shipped 3 7 2003 Motorcycles 62 S18_3782 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10146 47 67.14 2 3155.58 2003-09-03 00:00:00 Shipped 3 9 2003 Motorcycles 62 S18_3782 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10159 21 64.66 8 1357.86 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 62 S18_3782 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 38 68.39 8 2598.82 2003-11-04 00:00:00 Shipped 4 11 2003 Motorcycles 62 S18_3782 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10180 21 50.36 3 1057.56 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 62 S18_3782 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10191 43 72.74 9 3127.82 2003-11-20 00:00:00 Shipped 4 11 2003 Motorcycles 62 S18_3782 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10211 46 54.09 8 2488.14 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 62 S18_3782 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10224 38 58.44 1 2220.72 2004-02-21 00:00:00 Shipped 1 2 2004 Motorcycles 62 S18_3782 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10237 26 52.22 1 1357.72 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 62 S18_3782 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10252 31 52.84 5 1638.04 2004-05-26 00:00:00 Shipped 2 5 2004 Motorcycles 62 S18_3782 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10264 48 54.71 3 2626.08 2004-06-30 00:00:00 Shipped 2 6 2004 Motorcycles 62 S18_3782 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10276 33 50.36 9 1661.88 2004-08-02 00:00:00 Shipped 3 8 2004 Motorcycles 62 S18_3782 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Small +10286 38 57.2 1 2173.6 2004-08-28 00:00:00 Shipped 3 8 2004 Motorcycles 62 S18_3782 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10299 39 55.95 3 2182.05 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 62 S18_3782 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10310 42 67.14 16 2819.88 2004-10-16 00:00:00 Shipped 4 10 2004 Motorcycles 62 S18_3782 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10319 44 59.06 4 2598.64 2004-11-03 00:00:00 Shipped 4 11 2004 Motorcycles 62 S18_3782 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Small +10330 29 69.63 2 2019.27 2004-11-16 00:00:00 Shipped 4 11 2004 Motorcycles 62 S18_3782 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10342 26 55.95 8 1454.7 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 62 S18_3782 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10355 31 53.47 1 1657.57 2004-12-07 00:00:00 Shipped 4 12 2004 Motorcycles 62 S18_3782 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10363 32 89.12 12 2851.84 2005-01-06 00:00:00 Shipped 1 1 2005 Motorcycles 62 S18_3782 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10378 28 100 9 4609.64 2005-02-10 00:00:00 Shipped 1 2 2005 Motorcycles 62 S18_3782 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 36 100 2 5079.96 2005-03-04 00:00:00 Shipped 1 3 2005 Motorcycles 62 S18_3782 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10403 36 52.22 1 1879.92 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 62 S18_3782 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10106 41 100 17 4774.86 2003-02-17 00:00:00 Shipped 1 2 2003 Vintage Cars 105 S18_3856 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10119 27 99.52 8 2687.04 2003-04-28 00:00:00 Shipped 2 4 2003 Vintage Cars 105 S18_3856 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10130 33 100 1 3423.75 2003-06-16 00:00:00 Shipped 2 6 2003 Vintage Cars 105 S18_3856 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Medium +10143 34 100 12 3455.76 2003-08-10 00:00:00 Shipped 3 8 2003 Vintage Cars 105 S18_3856 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10155 29 100 10 3622.97 2003-10-06 00:00:00 Shipped 4 10 2003 Vintage Cars 105 S18_3856 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10167 34 100 6 3599.58 2003-10-23 00:00:00 Cancelled 4 10 2003 Vintage Cars 105 S18_3856 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10178 48 100 9 5386.56 2003-11-08 00:00:00 Shipped 4 11 2003 Vintage Cars 105 S18_3856 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10186 46 100 6 4918.78 2003-11-14 00:00:00 Shipped 4 11 2003 Vintage Cars 105 S18_3856 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Medium +10197 22 100 3 2538.8 2003-11-26 00:00:00 Shipped 4 11 2003 Vintage Cars 105 S18_3856 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10209 20 100 5 2498.6 2004-01-09 00:00:00 Shipped 1 1 2004 Vintage Cars 105 S18_3856 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10222 45 85.75 9 3858.75 2004-02-19 00:00:00 Shipped 1 2 2004 Vintage Cars 105 S18_3856 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10249 46 100 5 5600.5 2004-05-08 00:00:00 Shipped 2 5 2004 Vintage Cars 105 S18_3856 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Medium +10262 34 100 14 4103.46 2004-06-24 00:00:00 Cancelled 2 6 2004 Vintage Cars 105 S18_3856 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10273 50 85.75 1 4287.5 2004-07-21 00:00:00 Shipped 3 7 2004 Vintage Cars 105 S18_3856 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10283 46 100 3 5795.54 2004-08-20 00:00:00 Shipped 3 8 2004 Vintage Cars 105 S18_3856 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10296 22 84.7 12 1863.4 2004-09-15 00:00:00 Shipped 3 9 2004 Vintage Cars 105 S18_3856 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10307 48 86.81 6 4166.88 2004-10-14 00:00:00 Shipped 4 10 2004 Vintage Cars 105 S18_3856 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10316 47 86.81 14 4080.07 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 105 S18_3856 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10328 34 100 6 3815.48 2004-11-12 00:00:00 Shipped 4 11 2004 Vintage Cars 105 S18_3856 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10338 45 100 2 5526.45 2004-11-22 00:00:00 Shipped 4 11 2004 Vintage Cars 105 S18_3856 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Medium +10351 20 100 2 3374.6 2004-12-03 00:00:00 Shipped 4 12 2004 Vintage Cars 105 S18_3856 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10373 50 60.49 6 3024.5 2005-01-31 00:00:00 Shipped 1 1 2005 Vintage Cars 105 S18_3856 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10386 22 57.55 6 1266.1 2005-03-01 00:00:00 Resolved 1 3 2005 Vintage Cars 105 S18_3856 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 45 100 17 4811.85 2005-03-30 00:00:00 Shipped 1 3 2005 Vintage Cars 105 S18_3856 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10400 58 100 6 7307.42 2005-04-01 00:00:00 Shipped 2 4 2005 Vintage Cars 105 S18_3856 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Large +10415 51 100 5 6209.25 2005-05-09 00:00:00 Disputed 2 5 2005 Vintage Cars 105 S18_3856 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10104 38 100 3 5348.5 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 143 S18_4027 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10117 22 100 12 2780.58 2003-04-16 00:00:00 Shipped 2 4 2003 Classic Cars 143 S18_4027 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10127 25 100 5 3447 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 143 S18_4027 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10142 24 100 15 3791.52 2003-08-08 00:00:00 Shipped 3 8 2003 Classic Cars 143 S18_4027 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10152 35 100 1 4524.1 2003-09-25 00:00:00 Shipped 3 9 2003 Classic Cars 143 S18_4027 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10165 28 100 6 3337.6 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 143 S18_4027 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10176 36 100 5 5532.12 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 143 S18_4027 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10185 39 100 16 5096.91 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 143 S18_4027 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10196 27 100 8 4537.08 2003-11-26 00:00:00 Shipped 4 11 2003 Classic Cars 143 S18_4027 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10207 40 100 1 6146.8 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 143 S18_4027 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10220 50 100 5 8258 2004-02-12 00:00:00 Shipped 1 2 2004 Classic Cars 143 S18_4027 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Large +10230 42 100 3 7238.28 2004-03-15 00:00:00 Shipped 1 3 2004 Classic Cars 143 S18_4027 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Large +10247 48 100 5 6756 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 143 S18_4027 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10272 25 100 5 3734 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 143 S18_4027 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10282 31 100 8 4674.8 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 143 S18_4027 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10292 44 100 2 7140.76 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 143 S18_4027 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Large +10306 23 100 16 3600.65 2004-10-14 00:00:00 Shipped 4 10 2004 Classic Cars 143 S18_4027 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 29 100 8 4206.74 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 143 S18_4027 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10324 49 100 13 5379.71 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 143 S18_4027 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10337 36 100 3 5679.36 2004-11-21 00:00:00 Shipped 4 11 2004 Classic Cars 143 S18_4027 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10349 34 100 5 4394.84 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 143 S18_4027 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10358 25 100 13 2528.25 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 143 S18_4027 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10372 48 100 6 7031.52 2005-01-26 00:00:00 Shipped 1 1 2005 Classic Cars 143 S18_4027 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Large +10383 38 100 1 5340.9 2005-02-22 00:00:00 Shipped 1 2 2005 Classic Cars 143 S18_4027 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10394 37 100 1 6376.58 2005-03-15 00:00:00 Shipped 1 3 2005 Classic Cars 143 S18_4027 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10413 49 100 5 6896.75 2005-05-05 00:00:00 Shipped 2 5 2005 Classic Cars 143 S18_4027 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10100 22 86.51 4 1903.22 2003-01-06 00:00:00 Shipped 1 1 2003 Vintage Cars 92 S18_4409 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10110 28 89.27 8 2499.56 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 92 S18_4409 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 36 85.59 7 3081.24 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 92 S18_4409 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10148 34 100 1 3598.22 2003-09-11 00:00:00 Shipped 3 9 2003 Vintage Cars 92 S18_4409 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10162 39 100 10 3912.09 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 92 S18_4409 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10173 21 75.46 14 1584.66 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 92 S18_4409 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 36 100 11 3942.72 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 92 S18_4409 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10193 24 97.55 15 2341.2 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 92 S18_4409 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10204 29 85.59 5 2482.11 2003-12-02 00:00:00 Shipped 4 12 2003 Vintage Cars 92 S18_4409 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10213 38 94.79 1 3602.02 2004-01-22 00:00:00 Shipped 1 1 2004 Vintage Cars 92 S18_4409 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Medium +10227 34 100 11 3566.94 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 92 S18_4409 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10241 42 90.19 3 3787.98 2004-04-13 00:00:00 Shipped 2 4 2004 Vintage Cars 92 S18_4409 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Medium +10280 35 100 17 3704.05 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 92 S18_4409 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10288 35 80.99 6 2834.65 2004-09-01 00:00:00 Shipped 3 9 2004 Vintage Cars 92 S18_4409 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10302 38 89.27 2 3392.26 2003-10-06 00:00:00 Shipped 4 10 2003 Vintage Cars 92 S18_4409 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10311 41 81.91 1 3358.31 2004-10-16 00:00:00 Shipped 4 10 2004 Vintage Cars 92 S18_4409 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10332 50 100 2 7310 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 92 S18_4409 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Large +10344 21 100 4 2203.11 2004-11-25 00:00:00 Shipped 4 11 2004 Vintage Cars 92 S18_4409 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10367 43 62.72 8 2696.96 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 92 S18_4409 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10380 32 100 1 3376.64 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 92 S18_4409 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 6 90.19 3 541.14 2005-04-22 00:00:00 On Hold 2 4 2005 Vintage Cars 92 S18_4409 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10420 66 92.95 6 6134.7 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 92 S18_4409 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10105 41 82.5 10 3382.5 2003-02-11 00:00:00 Shipped 1 2 2003 Vintage Cars 87 S18_4522 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10117 23 97.42 4 2240.66 2003-04-16 00:00:00 Shipped 2 4 2003 Vintage Cars 87 S18_4522 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10128 43 92.16 1 3962.88 2003-06-06 00:00:00 Shipped 2 6 2003 Vintage Cars 87 S18_4522 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10142 24 70.22 7 1685.28 2003-08-08 00:00:00 Shipped 3 8 2003 Vintage Cars 87 S18_4522 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10153 22 83.38 6 1834.36 2003-09-28 00:00:00 Shipped 3 9 2003 Vintage Cars 87 S18_4522 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10166 26 73.73 1 1916.98 2003-10-21 00:00:00 Shipped 4 10 2003 Vintage Cars 87 S18_4522 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10177 35 74.6 8 2611 2003-11-07 00:00:00 Shipped 4 11 2003 Vintage Cars 87 S18_4522 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Small +10185 47 77.24 8 3630.28 2003-11-14 00:00:00 Shipped 4 11 2003 Vintage Cars 87 S18_4522 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10197 50 100 14 5090.5 2003-11-26 00:00:00 Shipped 4 11 2003 Vintage Cars 87 S18_4522 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10208 45 87.77 8 3949.65 2004-01-02 00:00:00 Shipped 1 1 2004 Vintage Cars 87 S18_4522 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10221 39 89.53 2 3491.67 2004-02-18 00:00:00 Shipped 1 2 2004 Vintage Cars 87 S18_4522 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10232 23 89.53 5 2059.19 2004-03-20 00:00:00 Shipped 1 3 2004 Vintage Cars 87 S18_4522 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10248 42 75.48 11 3170.16 2004-05-07 00:00:00 Cancelled 2 5 2004 Vintage Cars 87 S18_4522 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10261 20 89.53 9 1790.6 2004-06-17 00:00:00 Shipped 2 6 2004 Vintage Cars 87 S18_4522 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10273 33 71.09 12 2345.97 2004-07-21 00:00:00 Shipped 3 7 2004 Vintage Cars 87 S18_4522 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 34 100 14 3580.88 2004-08-20 00:00:00 Shipped 3 8 2004 Vintage Cars 87 S18_4522 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10293 49 100 3 4946.06 2004-09-09 00:00:00 Shipped 3 9 2004 Vintage Cars 87 S18_4522 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Medium +10306 39 90.4 8 3525.6 2004-10-14 00:00:00 Shipped 4 10 2004 Vintage Cars 87 S18_4522 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10315 36 100 7 3602.16 2004-10-29 00:00:00 Shipped 4 10 2004 Vintage Cars 87 S18_4522 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10326 50 86.01 5 4300.5 2004-11-09 00:00:00 Shipped 4 11 2004 Vintage Cars 87 S18_4522 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10337 29 100 2 4498.19 2004-11-21 00:00:00 Shipped 4 11 2004 Vintage Cars 87 S18_4522 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10350 30 100 3 3023.1 2004-12-02 00:00:00 Shipped 4 12 2004 Vintage Cars 87 S18_4522 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10372 41 86.89 7 3562.49 2005-01-26 00:00:00 Shipped 1 1 2005 Vintage Cars 87 S18_4522 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10383 28 58.58 7 1640.24 2005-02-22 00:00:00 Shipped 1 2 2005 Vintage Cars 87 S18_4522 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10396 45 100 5 4739.4 2005-03-23 00:00:00 Shipped 1 3 2005 Vintage Cars 87 S18_4522 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10414 16 75.48 11 1207.68 2005-05-06 00:00:00 On Hold 2 5 2005 Vintage Cars 87 S18_4522 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10103 36 100 5 4228.2 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 121 S18_4600 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10114 41 100 9 4815.45 2003-04-01 00:00:00 Shipped 2 4 2003 Trucks and Buses 121 S18_4600 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10126 50 100 5 7083 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 121 S18_4600 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Large +10140 40 100 5 4601.2 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 121 S18_4600 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10150 49 100 2 6467.02 2003-09-19 00:00:00 Shipped 3 9 2003 Trucks and Buses 121 S18_4600 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10164 45 100 3 5012.55 2003-10-21 00:00:00 Resolved 4 10 2003 Trucks and Buses 121 S18_4600 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10175 47 100 10 5121.59 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 121 S18_4600 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10183 21 100 2 2441.04 2003-11-13 00:00:00 Shipped 4 11 2003 Trucks and Buses 121 S18_4600 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10194 32 100 5 4262.08 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 121 S18_4600 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10207 47 100 16 6658.02 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 121 S18_4600 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10217 38 100 5 4509.08 2004-02-04 00:00:00 Shipped 1 2 2004 Trucks and Buses 121 S18_4600 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10229 41 100 10 4716.23 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 121 S18_4600 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10245 21 100 3 2390.22 2004-05-04 00:00:00 Shipped 2 5 2004 Trucks and Buses 121 S18_4600 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Small +10259 41 100 13 4666.62 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 121 S18_4600 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10270 38 100 3 5383.08 2004-07-19 00:00:00 Shipped 3 7 2004 Trucks and Buses 121 S18_4600 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10281 25 99.29 10 2482.25 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 121 S18_4600 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 48 100 5 5288.64 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 121 S18_4600 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10305 22 99.29 14 2184.38 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 121 S18_4600 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10313 28 100 8 2881.76 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 121 S18_4600 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10323 47 100 1 6203.06 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 121 S18_4600 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10334 49 100 4 6763.47 2004-11-19 00:00:00 On Hold 4 11 2004 Trucks and Buses 121 S18_4600 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10347 45 100 4 5884.65 2004-11-29 00:00:00 Shipped 4 11 2004 Trucks and Buses 121 S18_4600 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10357 28 100 2 3559.64 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 121 S18_4600 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10370 29 57.53 6 1668.37 2005-01-20 00:00:00 Shipped 1 1 2005 Trucks and Buses 121 S18_4600 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10382 39 100 1 4890.6 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 121 S18_4600 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10411 46 100 3 5235.72 2005-05-01 00:00:00 Shipped 2 5 2005 Trucks and Buses 121 S18_4600 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10425 38 100 13 4325.16 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 121 S18_4600 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10103 41 47.29 9 1938.89 2003-01-29 00:00:00 Shipped 1 1 2003 Vintage Cars 50 S18_4668 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10113 50 49.81 3 2490.5 2003-03-26 00:00:00 Shipped 1 3 2003 Vintage Cars 50 S18_4668 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10126 43 53.83 9 2314.69 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 50 S18_4668 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10140 29 43.27 9 1254.83 2003-07-24 00:00:00 Shipped 3 7 2003 Vintage Cars 50 S18_4668 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10150 30 42.76 6 1282.8 2003-09-19 00:00:00 Shipped 3 9 2003 Vintage Cars 50 S18_4668 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10164 25 53.83 7 1345.75 2003-10-21 00:00:00 Resolved 4 10 2003 Vintage Cars 50 S18_4668 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Small +10174 49 44.78 2 2194.22 2003-11-06 00:00:00 Shipped 4 11 2003 Vintage Cars 50 S18_4668 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Small +10183 40 49.3 6 1972 2003-11-13 00:00:00 Shipped 4 11 2003 Vintage Cars 50 S18_4668 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10194 41 44.78 9 1835.98 2003-11-25 00:00:00 Shipped 4 11 2003 Vintage Cars 50 S18_4668 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10206 21 53.33 4 1119.93 2003-12-05 00:00:00 Shipped 4 12 2003 Vintage Cars 50 S18_4668 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10215 46 45.28 1 2082.88 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 50 S18_4668 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Small +10229 39 40.25 14 1569.75 2004-03-11 00:00:00 Shipped 1 3 2004 Vintage Cars 50 S18_4668 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10245 45 59.87 7 2694.15 2004-05-04 00:00:00 Shipped 2 5 2004 Vintage Cars 50 S18_4668 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Small +10258 21 59.87 4 1257.27 2004-06-15 00:00:00 Shipped 2 6 2004 Vintage Cars 50 S18_4668 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10270 44 58.36 7 2567.84 2004-07-19 00:00:00 Shipped 3 7 2004 Vintage Cars 50 S18_4668 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10281 44 59.87 14 2634.28 2004-08-19 00:00:00 Shipped 3 8 2004 Vintage Cars 50 S18_4668 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 29 51.82 9 1502.78 2004-09-08 00:00:00 Shipped 3 9 2004 Vintage Cars 50 S18_4668 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10304 34 49.3 4 1676.2 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 50 S18_4668 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 39 56.85 1 2217.15 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 50 S18_4668 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10324 38 100 6 6832.02 2004-11-05 00:00:00 Shipped 4 11 2004 Vintage Cars 50 S18_4668 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10333 24 79.86 8 1916.64 2004-11-18 00:00:00 Shipped 4 11 2004 Vintage Cars 50 S18_4668 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10348 29 100 6 7110.8 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 50 S18_4668 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Large +10358 30 100 8 5302.8 2004-12-10 00:00:00 Shipped 4 12 2004 Vintage Cars 50 S18_4668 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10370 20 100 2 2730 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 50 S18_4668 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10382 39 100 2 7827.3 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 50 S18_4668 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Large +10411 35 59.87 7 2095.45 2005-05-01 00:00:00 Shipped 2 5 2005 Vintage Cars 50 S18_4668 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10424 26 59.87 4 1556.62 2005-05-31 00:00:00 In Process 2 5 2005 Vintage Cars 50 S18_4668 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10108 44 100 11 5565.12 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 148 S18_4721 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 28 100 15 3583.16 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 148 S18_4721 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10135 31 100 12 4705.18 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 148 S18_4721 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10146 29 100 1 4444.54 2003-09-03 00:00:00 Shipped 3 9 2003 Classic Cars 148 S18_4721 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10159 32 100 7 4618.88 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 148 S18_4721 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10169 33 100 7 4910.4 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 148 S18_4721 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10180 44 100 2 5565.12 2003-11-11 00:00:00 Shipped 4 11 2003 Classic Cars 148 S18_4721 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10191 32 100 8 4237.76 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 148 S18_4721 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10211 41 100 7 5673.58 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 148 S18_4721 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10225 35 100 14 5260.15 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 148 S18_4721 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10238 44 100 8 6350.96 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 148 S18_4721 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10252 26 100 4 3559.4 2004-05-26 00:00:00 Shipped 2 5 2004 Classic Cars 148 S18_4721 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10264 20 100 2 2410.6 2004-06-30 00:00:00 Shipped 2 6 2004 Classic Cars 148 S18_4721 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10276 48 100 8 5713.92 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 148 S18_4721 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10287 34 100 17 4300.32 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 148 S18_4721 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10299 49 100 2 7947.31 2004-09-30 00:00:00 Shipped 3 9 2004 Classic Cars 148 S18_4721 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Large +10310 40 100 15 5356.8 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 148 S18_4721 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10319 45 100 3 7901.1 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 148 S18_4721 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Large +10330 50 100 4 6101 2004-11-16 00:00:00 Shipped 4 11 2004 Classic Cars 148 S18_4721 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10342 38 100 11 6276.46 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 148 S18_4721 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10355 25 100 2 4203.5 2004-12-07 00:00:00 Shipped 4 12 2004 Classic Cars 148 S18_4721 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10363 28 58.18 13 1629.04 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 148 S18_4721 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10378 49 67.14 8 3289.86 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 148 S18_4721 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 49 100 3 6862.94 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 148 S18_4721 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10110 42 61.29 9 2574.18 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 71 S18_4933 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 23 57.73 8 1327.79 2003-05-21 00:00:00 Shipped 2 5 2003 Classic Cars 71 S18_4933 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10148 29 81.25 2 2356.25 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 71 S18_4933 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10161 25 80.54 1 2013.5 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 71 S18_4933 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10173 39 71.98 15 2807.22 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 71 S18_4933 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 44 69.84 12 3072.96 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 71 S18_4933 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10193 25 76.26 16 1906.5 2003-11-21 00:00:00 Shipped 4 11 2003 Classic Cars 71 S18_4933 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10204 45 76.26 6 3431.7 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 71 S18_4933 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10213 25 83.39 2 2084.75 2004-01-22 00:00:00 Shipped 1 1 2004 Classic Cars 71 S18_4933 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10227 37 57.73 12 2136.01 2004-03-02 00:00:00 Shipped 1 3 2004 Classic Cars 71 S18_4933 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10241 30 66.99 4 2009.7 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 71 S18_4933 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10267 36 75.55 1 2719.8 2004-07-07 00:00:00 Shipped 3 7 2004 Classic Cars 71 S18_4933 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10279 26 60.58 1 1575.08 2004-08-09 00:00:00 Shipped 3 8 2004 Classic Cars 71 S18_4933 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10288 23 73.41 7 1688.43 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 71 S18_4933 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10302 23 72.7 3 1672.1 2003-10-06 00:00:00 Shipped 4 10 2003 Classic Cars 71 S18_4933 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10311 25 66.99 2 1674.75 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 71 S18_4933 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10332 21 100 3 3472.98 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 71 S18_4933 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10344 26 63.43 5 1649.18 2004-11-25 00:00:00 Shipped 4 11 2004 Classic Cars 71 S18_4933 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10367 44 85.25 9 3751 2005-01-12 00:00:00 Resolved 1 1 2005 Classic Cars 71 S18_4933 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10380 24 100 2 4536 2005-02-16 00:00:00 Shipped 1 2 2005 Classic Cars 71 S18_4933 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 66 66.99 4 4421.34 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 71 S18_4933 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10420 36 57.73 7 2078.28 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 71 S18_4933 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10110 36 85.25 13 3069 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 73 S24_1046 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10124 22 77.9 12 1713.8 2003-05-21 00:00:00 Shipped 2 5 2003 Classic Cars 73 S24_1046 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10148 25 60.26 6 1506.5 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 73 S24_1046 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10161 37 72.76 5 2692.12 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 73 S24_1046 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10172 32 75.69 3 2422.08 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 73 S24_1046 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10182 47 74.22 16 3488.34 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 73 S24_1046 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10192 37 69.82 4 2583.34 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 73 S24_1046 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10204 20 62.47 10 1249.4 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 73 S24_1046 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10212 41 82.31 3 3374.71 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 73 S24_1046 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10226 21 60.26 1 1265.46 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 73 S24_1046 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10241 22 76.43 8 1681.46 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 73 S24_1046 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10267 40 80.1 5 3204 2004-07-07 00:00:00 Shipped 3 7 2004 Classic Cars 73 S24_1046 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10279 32 74.96 5 2398.72 2004-08-09 00:00:00 Shipped 3 8 2004 Classic Cars 73 S24_1046 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10288 36 66.14 11 2381.04 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 73 S24_1046 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10301 27 72.02 1 1944.54 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 73 S24_1046 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10311 26 87.45 6 2273.7 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 73 S24_1046 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10321 30 70.55 3 2116.5 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 73 S24_1046 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10332 23 56.84 4 1307.32 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 73 S24_1046 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10344 29 59.53 7 1726.37 2004-11-25 00:00:00 Shipped 4 11 2004 Classic Cars 73 S24_1046 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10367 21 60.37 10 1267.77 2005-01-12 00:00:00 Resolved 1 1 2005 Classic Cars 73 S24_1046 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10380 34 100 3 3441.82 2005-02-16 00:00:00 Shipped 1 2 2005 Classic Cars 73 S24_1046 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 26 76.43 8 1987.18 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 73 S24_1046 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10420 60 64.67 11 3880.2 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 73 S24_1046 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10104 35 55.49 6 1942.15 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 57 S24_1444 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10115 47 69.36 2 3259.92 2003-04-04 00:00:00 Shipped 2 4 2003 Classic Cars 57 S24_1444 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10127 20 60.69 8 1213.8 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 57 S24_1444 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10141 20 54.33 2 1086.6 2003-08-01 00:00:00 Shipped 3 8 2003 Classic Cars 57 S24_1444 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10152 25 65.31 4 1632.75 2003-09-25 00:00:00 Shipped 3 9 2003 Classic Cars 57 S24_1444 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Small +10165 25 69.36 9 1734 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 57 S24_1444 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10176 27 68.78 8 1857.06 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 57 S24_1444 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10184 31 60.11 3 1863.41 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 57 S24_1444 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10195 44 66.47 3 2924.68 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 57 S24_1444 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10207 49 46.82 4 2294.18 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 57 S24_1444 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10220 26 56.07 8 1457.82 2004-02-12 00:00:00 Shipped 1 2 2004 Classic Cars 57 S24_1444 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10230 36 54.33 6 1955.88 2004-03-15 00:00:00 Shipped 1 3 2004 Classic Cars 57 S24_1444 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10246 44 52.6 2 2314.4 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 57 S24_1444 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10259 28 46.82 1 1310.96 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 57 S24_1444 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10271 45 64.74 2 2913.3 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 57 S24_1444 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10282 29 46.82 11 1357.78 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 57 S24_1444 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10292 40 53.75 5 2150 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 57 S24_1444 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10305 45 61.85 2 2783.25 2004-10-13 00:00:00 Shipped 4 10 2004 Classic Cars 57 S24_1444 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10314 44 53.18 11 2339.92 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 57 S24_1444 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10324 25 69.16 14 1729 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 57 S24_1444 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10336 45 100 4 5972.4 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 57 S24_1444 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10349 48 47.4 4 2275.2 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 57 S24_1444 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10358 44 60.76 14 2673.44 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 57 S24_1444 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10371 25 97.27 12 2431.75 2005-01-23 00:00:00 Shipped 1 1 2005 Classic Cars 57 S24_1444 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10383 22 91.76 2 2018.72 2005-02-22 00:00:00 Shipped 1 2 2005 Classic Cars 57 S24_1444 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10394 31 50.29 2 1558.99 2005-03-15 00:00:00 Shipped 1 3 2005 Classic Cars 57 S24_1444 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10412 21 52.6 2 1104.6 2005-05-03 00:00:00 Shipped 2 5 2005 Classic Cars 57 S24_1444 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10425 55 46.82 1 2575.1 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 57 S24_1444 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10107 25 100 3 2845.75 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 112 S24_1578 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10120 35 98.05 1 3431.75 2003-04-29 00:00:00 Shipped 2 4 2003 Motorcycles 112 S24_1578 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10134 35 93.54 3 3273.9 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 112 S24_1578 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10145 43 95.8 7 4119.4 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 112 S24_1578 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10159 44 100 15 5355.68 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 112 S24_1578 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10168 50 100 2 5747.5 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 112 S24_1578 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10180 48 100 10 5355.36 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 112 S24_1578 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10188 25 100 2 2535.75 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 112 S24_1578 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10201 39 100 3 4351.23 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 112 S24_1578 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10211 25 90.16 15 2254 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 112 S24_1578 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10223 32 91.29 2 2921.28 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 112 S24_1578 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10237 20 100 8 2299 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 112 S24_1578 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10251 26 100 3 2637.18 2004-05-18 00:00:00 Shipped 2 5 2004 Motorcycles 112 S24_1578 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10263 42 100 3 4307.52 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 112 S24_1578 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10275 21 100 2 2153.76 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 112 S24_1578 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10285 34 100 7 3716.88 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 112 S24_1578 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10299 47 100 10 5455.76 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 112 S24_1578 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10309 21 100 6 2650.62 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 112 S24_1578 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10318 48 100 2 6437.28 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 112 S24_1578 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10329 30 87.78 7 2633.4 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 112 S24_1578 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10339 27 84.39 10 2278.53 2004-11-23 00:00:00 Shipped 4 11 2004 Motorcycles 112 S24_1578 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10362 50 96.92 2 4846 2005-01-05 00:00:00 Shipped 1 1 2005 Motorcycles 112 S24_1578 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10374 38 100 6 4197.1 2005-02-02 00:00:00 Shipped 1 2 2005 Motorcycles 112 S24_1578 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10389 45 100 1 4597.65 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 112 S24_1578 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10403 46 100 8 5287.7 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 112 S24_1578 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10417 35 100 3 3550.05 2005-05-13 00:00:00 Disputed 2 5 2005 Motorcycles 112 S24_1578 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10110 29 59.37 15 1721.73 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 50 S24_1628 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10123 50 59.87 1 2993.5 2003-05-20 00:00:00 Shipped 2 5 2003 Classic Cars 50 S24_1628 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Small +10137 26 49.81 1 1295.06 2003-07-10 00:00:00 Shipped 3 7 2003 Classic Cars 50 S24_1628 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10148 47 56.85 8 2671.95 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 50 S24_1628 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10161 23 53.33 7 1226.59 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 50 S24_1628 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10172 34 42.76 5 1453.84 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 50 S24_1628 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10181 34 53.83 1 1830.22 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 50 S24_1628 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10192 47 53.83 6 2530.01 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 50 S24_1628 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10204 45 49.81 12 2241.45 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 50 S24_1628 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10212 45 53.33 5 2399.85 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 50 S24_1628 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10226 36 43.27 3 1557.72 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 50 S24_1628 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10241 21 40.25 10 845.25 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 50 S24_1628 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10266 28 48.3 1 1352.4 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 50 S24_1628 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10278 35 45.28 1 1584.8 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 50 S24_1628 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10288 50 52.32 13 2616 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 50 S24_1628 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10301 22 51.32 3 1129.04 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 50 S24_1628 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10311 45 49.3 8 2218.5 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 50 S24_1628 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10321 48 42.26 5 2028.48 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 50 S24_1628 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10332 20 87.96 5 1759.2 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 50 S24_1628 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10343 27 36.21 6 977.67 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 50 S24_1628 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10367 38 38.5 11 1463 2005-01-12 00:00:00 Resolved 1 1 2005 Classic Cars 50 S24_1628 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10379 32 100 3 3970.56 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 50 S24_1628 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 64 40.25 10 2576 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 50 S24_1628 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10420 37 60.37 13 2233.69 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 50 S24_1628 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10106 28 88.63 4 2481.64 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 109 S24_1785 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10120 39 100 10 4651.53 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 109 S24_1785 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10133 41 94.1 5 3858.1 2003-06-27 00:00:00 Shipped 2 6 2003 Planes 109 S24_1785 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10145 40 87.54 16 3501.6 2003-08-25 00:00:00 Shipped 3 8 2003 Planes 109 S24_1785 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10168 49 100 11 6433.7 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 109 S24_1785 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10210 27 98.48 9 2658.96 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 109 S24_1785 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 34 100 11 3608.76 2004-02-20 00:00:00 Shipped 1 2 2004 Planes 109 S24_1785 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10235 23 96.29 5 2214.67 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 109 S24_1785 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 31 88.63 6 2747.53 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 109 S24_1785 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10262 34 97.38 1 3310.92 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 109 S24_1785 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10275 25 95.2 11 2380 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 109 S24_1785 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10284 22 100 3 2310.88 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 109 S24_1785 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10297 32 100 6 4061.76 2004-09-16 00:00:00 Shipped 3 9 2004 Planes 109 S24_1785 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Medium +10308 31 100 9 3493.7 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 109 S24_1785 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10316 25 100 1 2872.25 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 109 S24_1785 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 47 87.54 14 4114.38 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 109 S24_1785 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10339 21 50.65 7 1063.65 2004-11-23 00:00:00 Shipped 4 11 2004 Planes 109 S24_1785 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10353 28 71.73 2 2008.44 2004-12-04 00:00:00 Shipped 4 12 2004 Planes 109 S24_1785 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10374 46 94.1 3 4328.6 2005-02-02 00:00:00 Shipped 1 2 2005 Planes 109 S24_1785 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Medium +10386 33 41.71 11 1376.43 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 109 S24_1785 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 43 100 16 5552.16 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 109 S24_1785 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10401 38 96.29 5 3659.02 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 109 S24_1785 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10416 47 88.63 6 4165.61 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 109 S24_1785 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10101 45 31.2 3 1404 2003-01-09 00:00:00 Shipped 1 1 2003 Vintage Cars 33 S24_1937 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10110 20 35.51 3 710.2 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 33 S24_1937 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 45 37.84 2 1702.8 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 33 S24_1937 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10149 36 33.19 7 1194.84 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 33 S24_1937 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10162 37 27.22 5 1007.14 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 33 S24_1937 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10173 31 31.53 9 977.43 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 33 S24_1937 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 39 36.84 6 1436.76 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 33 S24_1937 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 26 29.21 10 759.46 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 33 S24_1937 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10205 32 37.17 5 1189.44 2003-12-03 00:00:00 Shipped 4 12 2003 Vintage Cars 33 S24_1937 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10214 20 34.19 3 683.8 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 33 S24_1937 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10227 42 29.21 6 1226.82 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 33 S24_1937 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10243 33 29.54 1 974.82 2004-04-26 00:00:00 Shipped 2 4 2004 Vintage Cars 33 S24_1937 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10280 20 28.88 12 577.6 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 33 S24_1937 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10288 29 38.17 1 1106.93 2004-09-01 00:00:00 Shipped 3 9 2004 Vintage Cars 33 S24_1937 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10304 23 30.2 16 694.6 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 33 S24_1937 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 39 29.54 13 1152.06 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 33 S24_1937 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10322 20 100 3 2624 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 33 S24_1937 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10332 45 81.91 6 3685.95 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 33 S24_1937 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10344 20 35.18 6 703.6 2004-11-25 00:00:00 Shipped 4 11 2004 Vintage Cars 33 S24_1937 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10356 48 100 5 9720 2004-12-09 00:00:00 Shipped 4 12 2004 Vintage Cars 33 S24_1937 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Large +10367 23 36.29 13 834.67 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 33 S24_1937 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10380 32 70.56 4 2257.92 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 33 S24_1937 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10391 33 100 8 8344.71 2005-03-09 00:00:00 Shipped 1 3 2005 Vintage Cars 33 S24_1937 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Large +10409 61 29.54 1 1801.94 2005-04-23 00:00:00 Shipped 2 4 2005 Vintage Cars 33 S24_1937 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10420 45 26.88 1 1209.6 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 33 S24_1937 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10107 38 83.03 7 3155.14 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 76 S24_2000 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10120 34 83.79 5 2848.86 2003-04-29 00:00:00 Shipped 2 4 2003 Motorcycles 76 S24_2000 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10134 43 83.03 7 3570.29 2003-07-01 00:00:00 Shipped 3 7 2003 Motorcycles 76 S24_2000 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10145 47 83.03 11 3902.41 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 76 S24_2000 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10158 22 67.03 1 1474.66 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 76 S24_2000 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10168 29 75.41 6 2186.89 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 76 S24_2000 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10180 28 68.55 14 1919.4 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 76 S24_2000 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10188 40 91.4 6 3656 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 76 S24_2000 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10201 25 73.88 7 1847 2003-12-01 00:00:00 Shipped 4 12 2003 Motorcycles 76 S24_2000 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10210 30 61.7 4 1851 2004-01-12 00:00:00 Shipped 1 1 2004 Motorcycles 76 S24_2000 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 38 69.31 6 2633.78 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 76 S24_2000 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10236 36 87.6 3 3153.6 2004-04-03 00:00:00 Shipped 2 4 2004 Motorcycles 76 S24_2000 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10250 32 87.6 1 2803.2 2004-05-11 00:00:00 Shipped 2 5 2004 Motorcycles 76 S24_2000 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10263 37 62.46 7 2311.02 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 76 S24_2000 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10275 30 79.98 6 2399.4 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 76 S24_2000 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10285 39 70.08 11 2733.12 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 76 S24_2000 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10297 32 65.51 1 2096.32 2004-09-16 00:00:00 Shipped 3 9 2004 Motorcycles 76 S24_2000 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10308 47 63.22 4 2971.34 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 76 S24_2000 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10318 26 86.83 6 2257.58 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 76 S24_2000 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10329 37 94.43 4 3493.91 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 76 S24_2000 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10340 55 79.98 8 4398.9 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 76 S24_2000 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10363 21 100 8 3595.62 2005-01-06 00:00:00 Shipped 1 1 2005 Motorcycles 76 S24_2000 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10375 23 100 9 2443.29 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 76 S24_2000 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10389 49 81.4 2 3988.6 2005-03-03 00:00:00 Shipped 1 3 2005 Motorcycles 76 S24_2000 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10402 59 87.6 3 5168.4 2005-04-07 00:00:00 Shipped 2 4 2005 Motorcycles 76 S24_2000 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10416 32 87.6 1 2803.2 2005-05-10 00:00:00 Shipped 2 5 2005 Motorcycles 76 S24_2000 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10105 43 100 9 6341.21 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 122 S24_2011 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10117 41 100 3 5189.78 2003-04-16 00:00:00 Shipped 2 4 2003 Ships 122 S24_2011 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10129 45 100 9 6027.75 2003-06-12 00:00:00 Shipped 2 6 2003 Ships 122 S24_2011 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10142 33 100 6 3366 2003-08-08 00:00:00 Shipped 3 8 2003 Ships 122 S24_2011 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10153 40 100 5 5456.4 2003-09-28 00:00:00 Shipped 3 9 2003 Ships 122 S24_2011 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10167 33 100 16 3812.16 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 122 S24_2011 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10177 50 100 7 6083 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 122 S24_2011 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Medium +10185 30 100 7 3170.7 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 122 S24_2011 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10197 41 100 13 4534.6 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 122 S24_2011 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10208 35 100 7 4301.15 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 122 S24_2011 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10221 49 100 1 6804.63 2004-02-18 00:00:00 Shipped 1 2 2004 Ships 122 S24_2011 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10232 46 100 4 5652.94 2004-03-20 00:00:00 Shipped 1 3 2004 Ships 122 S24_2011 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10248 48 100 10 6960.48 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 122 S24_2011 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10261 36 100 8 4512.6 2004-06-17 00:00:00 Shipped 2 6 2004 Ships 122 S24_2011 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10273 22 100 11 2784.76 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 122 S24_2011 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 42 100 13 5316.36 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 122 S24_2011 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10293 21 100 2 2941.89 2004-09-09 00:00:00 Shipped 3 9 2004 Ships 122 S24_2011 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10306 29 100 7 3207.4 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 122 S24_2011 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10315 35 100 6 4215.05 2004-10-29 00:00:00 Shipped 4 10 2004 Ships 122 S24_2011 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10326 41 100 4 4333.29 2004-11-09 00:00:00 Shipped 4 11 2004 Ships 122 S24_2011 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10337 29 71.97 4 2087.13 2004-11-21 00:00:00 Shipped 4 11 2004 Ships 122 S24_2011 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10350 34 50.33 7 1711.22 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 122 S24_2011 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10372 37 100 8 3910.53 2005-01-26 00:00:00 Shipped 1 1 2005 Ships 122 S24_2011 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10384 28 80.54 3 2255.12 2005-02-23 00:00:00 Shipped 1 2 2005 Ships 122 S24_2011 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10396 49 100 6 5720.75 2005-03-23 00:00:00 Shipped 1 3 2005 Ships 122 S24_2011 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10414 23 100 10 3335.23 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 122 S24_2011 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10101 46 53.76 2 2472.96 2003-01-09 00:00:00 Shipped 1 1 2003 Vintage Cars 44 S24_2022 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10110 39 44.35 2 1729.65 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 44 S24_2022 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 22 45.25 1 995.5 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 44 S24_2022 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10149 49 49.28 6 2414.72 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 44 S24_2022 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10162 43 36.29 4 1560.47 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 44 S24_2022 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10173 27 41.22 8 1112.94 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 44 S24_2022 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 31 36.74 5 1138.94 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 44 S24_2022 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 20 50.62 9 1012.4 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 44 S24_2022 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10205 24 38.08 4 913.92 2003-12-03 00:00:00 Shipped 4 12 2003 Vintage Cars 44 S24_2022 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10214 49 47.94 2 2349.06 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 44 S24_2022 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10227 24 48.38 5 1161.12 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 44 S24_2022 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10244 39 45.25 9 1764.75 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 44 S24_2022 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10255 37 45.7 2 1690.9 2004-06-04 00:00:00 Shipped 2 6 2004 Vintage Cars 44 S24_2022 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10280 45 47.49 11 2137.05 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 44 S24_2022 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10289 45 48.38 4 2177.1 2004-09-03 00:00:00 Shipped 3 9 2004 Vintage Cars 44 S24_2022 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10304 44 39.42 15 1734.48 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 44 S24_2022 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10312 23 37.63 12 865.49 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 44 S24_2022 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10322 30 100 4 3500.1 2004-11-04 00:00:00 Shipped 4 11 2004 Vintage Cars 44 S24_2022 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10332 26 85.52 10 2223.52 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 44 S24_2022 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10345 43 53.76 1 2311.68 2004-11-25 00:00:00 Shipped 4 11 2004 Vintage Cars 44 S24_2022 Atelier graphique 40.32.2555 54, rue Royale \N Nantes \N 44000 France EMEA Schmitt Carine Small +10356 26 31.86 7 828.36 2004-12-09 00:00:00 Shipped 4 12 2004 Vintage Cars 44 S24_2022 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Small +10367 28 30.59 12 856.52 2005-01-12 00:00:00 Resolved 1 1 2005 Vintage Cars 44 S24_2022 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10380 27 68.35 5 1845.45 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 44 S24_2022 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10391 24 100 1 4042.08 2005-03-09 00:00:00 Shipped 1 3 2005 Vintage Cars 44 S24_2022 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10421 40 45.7 2 1828 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 44 S24_2022 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10103 36 100 1 3680.28 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 127 S24_2300 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10114 21 100 5 2925.09 2003-04-01 00:00:00 Shipped 2 4 2003 Trucks and Buses 127 S24_2300 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10126 27 100 1 3415.77 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 127 S24_2300 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10140 47 100 1 5105.14 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 127 S24_2300 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10151 42 100 8 5098.8 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 127 S24_2300 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10165 32 100 17 4661.76 2003-10-22 00:00:00 Shipped 4 10 2003 Trucks and Buses 127 S24_2300 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10175 28 100 6 2969.96 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 127 S24_2300 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10184 24 100 11 3496.32 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 127 S24_2300 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10194 49 100 1 5760.93 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 127 S24_2300 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10207 46 100 12 6819.04 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 127 S24_2300 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10217 28 100 1 3148.88 2004-02-04 00:00:00 Shipped 1 2 2004 Trucks and Buses 127 S24_2300 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10229 48 100 6 5704.32 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 127 S24_2300 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10246 29 100 10 3520.6 2004-05-05 00:00:00 Shipped 2 5 2004 Trucks and Buses 127 S24_2300 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10259 47 100 9 5285.62 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 127 S24_2300 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10271 43 100 10 5605.05 2004-07-20 00:00:00 Shipped 3 7 2004 Trucks and Buses 127 S24_2300 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10281 25 100 6 2779.5 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 127 S24_2300 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 48 100 1 5398.08 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 127 S24_2300 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10305 24 100 10 3189.6 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 127 S24_2300 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10313 42 100 4 5581.8 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 127 S24_2300 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10324 31 100 2 3820.44 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 127 S24_2300 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10334 42 100 5 5528.04 2004-11-19 00:00:00 On Hold 4 11 2004 Trucks and Buses 127 S24_2300 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10348 37 100 1 5981.42 2004-11-01 00:00:00 Shipped 4 11 2004 Trucks and Buses 127 S24_2300 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10358 41 100 7 5684.65 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 127 S24_2300 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10371 20 100 5 3449.4 2005-01-23 00:00:00 Shipped 1 1 2005 Trucks and Buses 127 S24_2300 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10382 20 100 3 2654.4 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 127 S24_2300 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10412 70 100 10 8498 2005-05-03 00:00:00 Shipped 2 5 2005 Trucks and Buses 127 S24_2300 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Large +10425 49 100 9 5510.54 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 127 S24_2300 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10108 35 58.87 15 2060.45 2003-03-03 00:00:00 Shipped 1 3 2003 Motorcycles 69 S24_2360 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10121 32 76.88 2 2460.16 2003-05-07 00:00:00 Shipped 2 5 2003 Motorcycles 69 S24_2360 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10135 29 61.64 16 1787.56 2003-07-02 00:00:00 Shipped 3 7 2003 Motorcycles 69 S24_2360 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10145 27 60.95 3 1645.65 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 69 S24_2360 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10159 27 80.34 11 2169.18 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 69 S24_2360 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 38 74.11 11 2816.18 2003-11-04 00:00:00 Shipped 4 11 2003 Motorcycles 69 S24_2360 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10180 35 72.03 6 2521.05 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 69 S24_2360 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10190 42 76.19 3 3199.98 2003-11-19 00:00:00 Shipped 4 11 2003 Motorcycles 69 S24_2360 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10211 21 63.72 11 1338.12 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 69 S24_2360 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10224 37 80.34 4 2972.58 2004-02-21 00:00:00 Shipped 1 2 2004 Motorcycles 69 S24_2360 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10237 26 79.65 4 2070.9 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 69 S24_2360 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10252 47 65.8 8 3092.6 2004-05-26 00:00:00 Shipped 2 5 2004 Motorcycles 69 S24_2360 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10264 37 65.1 6 2408.7 2004-06-30 00:00:00 Shipped 2 6 2004 Motorcycles 69 S24_2360 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10276 46 75.49 12 3472.54 2004-08-02 00:00:00 Shipped 3 8 2004 Motorcycles 69 S24_2360 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10285 38 59.56 3 2263.28 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 69 S24_2360 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10299 33 66.49 6 2194.17 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 69 S24_2360 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10309 24 56.1 2 1346.4 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 69 S24_2360 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10319 31 81.73 7 2533.63 2004-11-03 00:00:00 Shipped 4 11 2004 Motorcycles 69 S24_2360 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Small +10330 42 81.03 1 3403.26 2004-11-16 00:00:00 Shipped 4 11 2004 Motorcycles 69 S24_2360 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10341 32 100 6 3307.2 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 69 S24_2360 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10355 41 70.65 3 2896.65 2004-12-07 00:00:00 Shipped 4 12 2004 Motorcycles 69 S24_2360 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10363 43 61.23 14 2632.89 2005-01-06 00:00:00 Shipped 1 1 2005 Motorcycles 69 S24_2360 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10375 20 100 14 2046 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 69 S24_2360 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10390 35 65.13 4 2279.55 2005-03-04 00:00:00 Shipped 1 3 2005 Motorcycles 69 S24_2360 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10403 27 79.65 4 2150.55 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 69 S24_2360 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10110 43 78.15 11 3360.45 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 90 S24_2766 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10124 32 72.7 10 2326.4 2003-05-21 00:00:00 Shipped 2 5 2003 Classic Cars 90 S24_2766 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10148 21 73.6 4 1545.6 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 90 S24_2766 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10161 20 100 3 2144.6 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 90 S24_2766 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10172 22 74.51 1 1639.22 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 90 S24_2766 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10182 36 73.6 14 2649.6 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 90 S24_2766 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10192 46 83.6 2 3845.6 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 90 S24_2766 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 47 96.32 8 4527.04 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 90 S24_2766 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 45 88.14 1 3966.3 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 90 S24_2766 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10227 47 88.14 14 4142.58 2004-03-02 00:00:00 Shipped 1 3 2004 Classic Cars 90 S24_2766 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10241 47 94.5 6 4441.5 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 90 S24_2766 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Medium +10267 38 87.24 3 3315.12 2004-07-07 00:00:00 Shipped 3 7 2004 Classic Cars 90 S24_2766 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10279 49 79.97 3 3918.53 2004-08-09 00:00:00 Shipped 3 8 2004 Classic Cars 90 S24_2766 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10288 35 80.87 9 2830.45 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 90 S24_2766 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10302 49 100 5 5298.86 2003-10-06 00:00:00 Shipped 4 10 2003 Classic Cars 90 S24_2766 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10311 28 93.6 4 2620.8 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 90 S24_2766 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10321 30 72.7 1 2181 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 90 S24_2766 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10332 39 86.72 7 3382.08 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 90 S24_2766 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10346 25 100 1 2876.75 2004-11-29 00:00:00 Shipped 4 11 2004 Classic Cars 90 S24_2766 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10368 40 100 2 4107.2 2005-01-19 00:00:00 Shipped 1 1 2005 Classic Cars 90 S24_2766 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10380 36 37.5 6 1350 2005-02-16 00:00:00 Shipped 1 2 2005 Classic Cars 90 S24_2766 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10407 76 94.5 6 7182 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 90 S24_2766 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Large +10420 39 100 9 3933.93 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 90 S24_2766 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10104 44 39.6 10 1742.4 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 35 S24_2840 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10114 24 30.06 1 721.44 2003-04-01 00:00:00 Shipped 2 4 2003 Classic Cars 35 S24_2840 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10127 39 38.19 12 1489.41 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 35 S24_2840 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10141 21 42.43 6 891.03 2003-08-01 00:00:00 Shipped 3 8 2003 Classic Cars 35 S24_2840 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10151 30 40.31 4 1209.3 2003-09-21 00:00:00 Shipped 3 9 2003 Classic Cars 35 S24_2840 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10165 27 31.82 13 859.14 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 35 S24_2840 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10175 37 31.12 2 1151.44 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 35 S24_2840 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10184 42 31.82 7 1336.44 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 35 S24_2840 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10195 32 28.29 7 905.28 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 35 S24_2840 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10207 42 29.7 8 1247.4 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 35 S24_2840 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10219 21 40.31 3 846.51 2004-02-10 00:00:00 Shipped 1 2 2004 Classic Cars 35 S24_2840 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10229 33 32.88 2 1085.04 2004-03-11 00:00:00 Shipped 1 3 2004 Classic Cars 35 S24_2840 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10246 49 36.07 6 1767.43 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 35 S24_2840 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10259 31 33.24 5 1030.44 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 35 S24_2840 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10271 38 41.72 6 1585.36 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 35 S24_2840 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10281 20 40.66 2 813.2 2004-08-19 00:00:00 Shipped 3 8 2004 Classic Cars 35 S24_2840 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10292 39 30.06 9 1172.34 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 35 S24_2840 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10305 48 31.47 6 1510.56 2004-10-13 00:00:00 Shipped 4 10 2004 Classic Cars 35 S24_2840 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10314 39 37.13 15 1448.07 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 35 S24_2840 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10324 30 100 9 3338.1 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 35 S24_2840 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10335 33 37.13 2 1225.29 2004-11-19 00:00:00 Shipped 4 11 2004 Classic Cars 35 S24_2840 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10349 36 37.13 3 1336.68 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 35 S24_2840 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10358 36 82.94 4 2985.84 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 35 S24_2840 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10371 45 100 8 5545.8 2005-01-23 00:00:00 Shipped 1 1 2005 Classic Cars 35 S24_2840 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10383 40 100 3 6089.6 2005-02-22 00:00:00 Shipped 1 2 2005 Classic Cars 35 S24_2840 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10394 46 38.9 6 1789.4 2005-03-15 00:00:00 Shipped 1 3 2005 Classic Cars 35 S24_2840 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10412 30 36.07 6 1082.1 2005-05-03 00:00:00 Shipped 2 5 2005 Classic Cars 35 S24_2840 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10425 31 33.24 5 1030.44 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 35 S24_2840 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10106 49 74.68 13 3659.32 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 68 S24_2841 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10119 41 59.6 4 2443.6 2003-04-28 00:00:00 Shipped 2 4 2003 Planes 68 S24_2841 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10131 35 67.14 5 2349.9 2003-06-16 00:00:00 Shipped 2 6 2003 Planes 68 S24_2841 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10143 27 60.97 8 1646.19 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 68 S24_2841 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 23 72.62 6 1670.26 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 68 S24_2841 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10167 21 69.88 2 1467.48 2003-10-23 00:00:00 Cancelled 4 10 2003 Planes 68 S24_2841 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10178 34 80.84 5 2748.56 2003-11-08 00:00:00 Shipped 4 11 2003 Planes 68 S24_2841 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10186 22 69.2 2 1522.4 2003-11-14 00:00:00 Shipped 4 11 2003 Planes 68 S24_2841 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10198 48 67.82 5 3255.36 2003-11-27 00:00:00 Shipped 4 11 2003 Planes 68 S24_2841 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10209 43 82.21 1 3535.03 2004-01-09 00:00:00 Shipped 1 1 2004 Planes 68 S24_2841 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10222 32 81.53 5 2608.96 2004-02-19 00:00:00 Shipped 1 2 2004 Planes 68 S24_2841 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10249 20 67.82 1 1356.4 2004-05-08 00:00:00 Shipped 2 5 2004 Planes 68 S24_2841 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Small +10262 24 67.14 10 1611.36 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 68 S24_2841 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10274 40 65.08 2 2603.2 2004-07-21 00:00:00 Shipped 3 7 2004 Planes 68 S24_2841 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10284 30 73.99 12 2219.7 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 68 S24_2841 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 21 71.25 8 1496.25 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 68 S24_2841 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10307 25 75.36 2 1884 2004-10-14 00:00:00 Shipped 4 10 2004 Planes 68 S24_2841 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10316 34 63.71 10 2166.14 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 68 S24_2841 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 48 58.92 1 2828.16 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 68 S24_2841 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10339 55 100 12 6214.45 2004-11-23 00:00:00 Shipped 4 11 2004 Planes 68 S24_2841 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10351 25 74.68 5 1867 2004-12-03 00:00:00 Shipped 4 12 2004 Planes 68 S24_2841 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10373 38 70.44 7 2676.72 2005-01-31 00:00:00 Shipped 1 1 2005 Planes 68 S24_2841 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 39 55.96 1 2182.44 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 68 S24_2841 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 28 57.55 3 1611.4 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 68 S24_2841 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10400 24 61.66 2 1479.84 2005-04-01 00:00:00 Shipped 2 4 2005 Planes 68 S24_2841 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10415 21 67.82 1 1424.22 2005-05-09 00:00:00 Disputed 2 5 2005 Planes 68 S24_2841 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10110 46 100 10 5942.28 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 117 S24_2887 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10124 25 93.95 9 2348.75 2003-05-21 00:00:00 Shipped 2 5 2003 Classic Cars 117 S24_2887 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10148 34 100 3 4392.12 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 117 S24_2887 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10161 25 100 2 2759.75 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 117 S24_2887 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10173 23 100 16 2728.03 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 117 S24_2887 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 20 100 13 2395.8 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 117 S24_2887 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10192 23 100 1 3052.33 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 117 S24_2887 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 42 100 7 4242 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 117 S24_2887 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10213 27 100 3 2790.45 2004-01-22 00:00:00 Shipped 1 1 2004 Classic Cars 117 S24_2887 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10227 33 100 13 4340.49 2004-03-02 00:00:00 Shipped 1 3 2004 Classic Cars 117 S24_2887 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10241 28 98.65 5 2762.2 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 117 S24_2887 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10267 43 100 2 4645.72 2004-07-07 00:00:00 Shipped 3 7 2004 Classic Cars 117 S24_2887 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10279 48 100 2 5580.96 2004-08-09 00:00:00 Shipped 3 8 2004 Classic Cars 117 S24_2887 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10288 48 100 8 6539.04 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 117 S24_2887 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10302 45 100 4 5548.95 2003-10-06 00:00:00 Shipped 4 10 2003 Classic Cars 117 S24_2887 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10311 43 100 3 4595.41 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 117 S24_2887 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10332 44 42.26 11 1859.44 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 117 S24_2887 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10346 24 87.24 5 2093.76 2004-11-29 00:00:00 Shipped 4 11 2004 Classic Cars 117 S24_2887 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10368 31 100 5 4223.13 2005-01-19 00:00:00 Shipped 1 1 2005 Classic Cars 117 S24_2887 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10380 44 36.29 7 1596.76 2005-02-16 00:00:00 Shipped 1 2 2005 Classic Cars 117 S24_2887 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10407 59 98.65 5 5820.35 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 117 S24_2887 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10420 55 96.3 8 5296.5 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 117 S24_2887 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10109 29 32.1 6 930.9 2003-03-10 00:00:00 Shipped 1 3 2003 Classic Cars 37 S24_2972 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10122 39 30.96 4 1207.44 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 37 S24_2972 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 20 35.87 1 717.4 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 37 S24_2972 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10147 25 42.67 1 1066.75 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 37 S24_2972 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10160 42 37 2 1554 2003-10-11 00:00:00 Shipped 4 10 2003 Classic Cars 37 S24_2972 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10171 36 35.49 4 1277.64 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 37 S24_2972 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10181 37 42.67 8 1578.79 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 37 S24_2972 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10192 30 30.59 13 917.7 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 37 S24_2972 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10203 21 37 2 777 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 37 S24_2972 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10212 34 43.42 12 1476.28 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 37 S24_2972 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10225 42 36.63 3 1538.46 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 37 S24_2972 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10239 20 44.56 2 891.2 2004-04-12 00:00:00 Shipped 2 4 2004 Classic Cars 37 S24_2972 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10253 40 42.67 7 1706.8 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 37 S24_2972 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10266 34 40.4 8 1373.6 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 37 S24_2972 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10278 31 38.89 8 1205.59 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 37 S24_2972 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10287 36 39.65 6 1427.4 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 37 S24_2972 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10301 48 34.36 10 1649.28 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 37 S24_2972 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10310 33 41.91 4 1383.03 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 37 S24_2972 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10321 37 33.23 12 1229.51 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 37 S24_2972 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10331 27 42.24 13 1140.48 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 37 S24_2972 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Small +10342 39 40.4 9 1575.6 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 37 S24_2972 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10355 36 38.52 4 1386.72 2004-12-07 00:00:00 Shipped 4 12 2004 Classic Cars 37 S24_2972 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10367 36 100 2 5018.4 2005-01-12 00:00:00 Resolved 1 1 2005 Classic Cars 37 S24_2972 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10378 41 100 7 5856.85 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 37 S24_2972 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 37 100 5 4894.73 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 37 S24_2972 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10405 47 44.56 2 2094.32 2005-04-14 00:00:00 Shipped 2 4 2005 Classic Cars 37 S24_2972 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10419 15 42.67 7 640.05 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 37 S24_2972 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10105 44 72.58 4 3193.52 2003-02-11 00:00:00 Shipped 1 2 2003 Vintage Cars 88 S24_3151 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10119 35 87.62 13 3066.7 2003-04-28 00:00:00 Shipped 2 4 2003 Vintage Cars 88 S24_3151 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10129 41 94.71 4 3883.11 2003-06-12 00:00:00 Shipped 2 6 2003 Vintage Cars 88 S24_3151 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10142 49 98.25 1 4814.25 2003-08-08 00:00:00 Shipped 3 8 2003 Vintage Cars 88 S24_3151 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10154 31 91.17 2 2826.27 2003-10-02 00:00:00 Shipped 4 10 2003 Vintage Cars 88 S24_3151 Boards & Toys Co. 3105552373 4097 Douglas Av. \N Glendale CA 92561 USA \N Young Leslie Small +10167 20 79.66 11 1593.2 2003-10-23 00:00:00 Cancelled 4 10 2003 Vintage Cars 88 S24_3151 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10177 45 72.58 2 3266.1 2003-11-07 00:00:00 Shipped 4 11 2003 Vintage Cars 88 S24_3151 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Medium +10185 33 74.35 2 2453.55 2003-11-14 00:00:00 Shipped 4 11 2003 Vintage Cars 88 S24_3151 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10197 47 83.2 8 3910.4 2003-11-26 00:00:00 Shipped 4 11 2003 Vintage Cars 88 S24_3151 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10208 20 89.4 2 1788 2004-01-02 00:00:00 Shipped 1 1 2004 Vintage Cars 88 S24_3151 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10222 47 70.81 14 3328.07 2004-02-19 00:00:00 Shipped 1 2 2004 Vintage Cars 88 S24_3151 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10233 40 94.71 2 3788.4 2004-03-29 00:00:00 Shipped 1 3 2004 Vintage Cars 88 S24_3151 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10248 30 100 5 3053.7 2004-05-07 00:00:00 Cancelled 2 5 2004 Vintage Cars 88 S24_3151 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10261 22 91.17 3 2005.74 2004-06-17 00:00:00 Shipped 2 6 2004 Vintage Cars 88 S24_3151 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10273 27 100 6 2796.12 2004-07-21 00:00:00 Shipped 3 7 2004 Vintage Cars 88 S24_3151 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 34 92.94 8 3159.96 2004-08-20 00:00:00 Shipped 3 8 2004 Vintage Cars 88 S24_3151 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10295 46 84.97 3 3908.62 2004-09-10 00:00:00 Shipped 3 9 2004 Vintage Cars 88 S24_3151 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10306 31 84.08 2 2606.48 2004-10-14 00:00:00 Shipped 4 10 2004 Vintage Cars 88 S24_3151 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10315 24 86.74 1 2081.76 2004-10-29 00:00:00 Shipped 4 10 2004 Vintage Cars 88 S24_3151 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10326 41 85.85 3 3519.85 2004-11-09 00:00:00 Shipped 4 11 2004 Vintage Cars 88 S24_3151 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Medium +10339 55 100 13 10758 2004-11-23 00:00:00 Shipped 4 11 2004 Vintage Cars 88 S24_3151 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Large +10350 30 100 9 3021 2004-12-02 00:00:00 Shipped 4 12 2004 Vintage Cars 88 S24_3151 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10373 33 57.32 12 1891.56 2005-01-31 00:00:00 Shipped 1 1 2005 Vintage Cars 88 S24_3151 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10384 43 97.87 2 4208.41 2005-02-23 00:00:00 Shipped 1 2 2005 Vintage Cars 88 S24_3151 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10396 27 83.2 7 2246.4 2005-03-23 00:00:00 Shipped 1 3 2005 Vintage Cars 88 S24_3151 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10414 60 100 5 6107.4 2005-05-06 00:00:00 On Hold 2 5 2005 Vintage Cars 88 S24_3151 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10110 27 73.62 12 1987.74 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 85 S24_3191 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 49 83.04 11 4068.96 2003-05-21 00:00:00 Shipped 2 5 2003 Classic Cars 85 S24_3191 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10148 31 73.62 5 2282.22 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 85 S24_3191 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10161 20 77.05 4 1541 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 85 S24_3191 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10172 24 81.33 2 1951.92 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 85 S24_3191 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10182 33 94.17 15 3107.61 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 85 S24_3191 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10192 32 72.77 3 2328.64 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 85 S24_3191 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10204 40 79.62 9 3184.8 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 85 S24_3191 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 27 79.62 2 2149.74 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 85 S24_3191 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10227 40 79.62 15 3184.8 2004-03-02 00:00:00 Shipped 1 3 2004 Classic Cars 85 S24_3191 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10241 26 81.33 7 2114.58 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 85 S24_3191 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10267 44 96.74 4 4256.56 2004-07-07 00:00:00 Shipped 3 7 2004 Classic Cars 85 S24_3191 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10279 33 71.06 4 2344.98 2004-08-09 00:00:00 Shipped 3 8 2004 Classic Cars 85 S24_3191 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10288 34 68.49 10 2328.66 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 85 S24_3191 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10302 48 74.48 6 3575.04 2003-10-06 00:00:00 Shipped 4 10 2003 Classic Cars 85 S24_3191 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10311 25 83.04 5 2076 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 85 S24_3191 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10321 39 84.75 2 3305.25 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 85 S24_3191 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10332 45 34.19 12 1538.55 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 85 S24_3191 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10346 24 100 2 3325.92 2004-11-29 00:00:00 Shipped 4 11 2004 Classic Cars 85 S24_3191 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10368 46 79.62 1 3662.52 2005-01-19 00:00:00 Shipped 1 1 2005 Classic Cars 85 S24_3191 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10380 44 79.06 9 3478.64 2005-02-16 00:00:00 Shipped 1 2 2005 Classic Cars 85 S24_3191 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 13 81.33 7 1057.29 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 85 S24_3191 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10420 35 96.74 10 3385.9 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 85 S24_3191 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10108 30 63.07 5 1892.1 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 61 S24_3371 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10122 34 50.21 9 1707.14 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 61 S24_3371 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 27 66.13 6 1785.51 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 61 S24_3371 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10147 30 68.58 6 2057.4 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 61 S24_3371 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10159 50 69.8 1 3490 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 61 S24_3371 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10169 34 50.21 1 1707.14 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 61 S24_3371 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10181 23 65.52 13 1506.96 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 61 S24_3371 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Small +10191 48 60.01 2 2880.48 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 61 S24_3371 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10203 34 64.9 7 2206.6 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 61 S24_3371 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10211 48 48.98 1 2351.04 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 61 S24_3371 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10225 24 50.21 8 1205.04 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 61 S24_3371 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10238 47 62.45 2 2935.15 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 61 S24_3371 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10253 24 52.66 12 1263.84 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 61 S24_3371 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10266 47 62.45 13 2935.15 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 61 S24_3371 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10276 20 61.23 2 1224.6 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 61 S24_3371 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Small +10287 20 67.97 11 1359.4 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 61 S24_3371 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Small +10300 31 58.78 4 1822.18 2003-10-04 00:00:00 Shipped 4 10 2003 Classic Cars 61 S24_3371 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10310 38 56.94 9 2163.72 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 61 S24_3371 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10320 26 61.23 2 1591.98 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 61 S24_3371 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10331 25 100 9 3078.5 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 61 S24_3371 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10342 48 62.45 10 2997.6 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 61 S24_3371 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10355 44 62.45 6 2747.8 2004-12-07 00:00:00 Shipped 4 12 2004 Classic Cars 61 S24_3371 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10363 21 100 15 2447.76 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 61 S24_3371 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10378 46 41.54 6 1910.84 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 61 S24_3371 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10390 46 52.84 6 2430.64 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 61 S24_3371 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10419 55 52.66 12 2896.3 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 61 S24_3371 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10106 31 52.6 14 1630.6 2003-02-17 00:00:00 Shipped 1 2 2003 Vintage Cars 65 S24_3420 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10119 20 72.98 5 1459.6 2003-04-28 00:00:00 Shipped 2 4 2003 Vintage Cars 65 S24_3420 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10131 29 59.18 6 1716.22 2003-06-16 00:00:00 Shipped 2 6 2003 Vintage Cars 65 S24_3420 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10143 33 77.59 9 2560.47 2003-08-10 00:00:00 Shipped 3 8 2003 Vintage Cars 65 S24_3420 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 34 55.89 7 1900.26 2003-10-06 00:00:00 Shipped 4 10 2003 Vintage Cars 65 S24_3420 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10167 32 63.12 3 2019.84 2003-10-23 00:00:00 Cancelled 4 10 2003 Vintage Cars 65 S24_3420 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10178 27 73.64 6 1988.28 2003-11-08 00:00:00 Shipped 4 11 2003 Vintage Cars 65 S24_3420 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10186 21 69.04 3 1449.84 2003-11-14 00:00:00 Shipped 4 11 2003 Vintage Cars 65 S24_3420 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10198 27 71.67 6 1935.09 2003-11-27 00:00:00 Shipped 4 11 2003 Vintage Cars 65 S24_3420 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10209 36 77.59 2 2793.24 2004-01-09 00:00:00 Shipped 1 1 2004 Vintage Cars 65 S24_3420 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10222 43 70.35 6 3025.05 2004-02-19 00:00:00 Shipped 1 2 2004 Vintage Cars 65 S24_3420 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10249 25 69.7 2 1742.5 2004-05-08 00:00:00 Shipped 2 5 2004 Vintage Cars 65 S24_3420 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Small +10262 46 70.35 11 3236.1 2004-06-24 00:00:00 Cancelled 2 6 2004 Vintage Cars 65 S24_3420 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10274 24 72.33 3 1735.92 2004-07-21 00:00:00 Shipped 3 7 2004 Vintage Cars 65 S24_3420 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10284 39 71.67 13 2795.13 2004-08-21 00:00:00 Shipped 3 8 2004 Vintage Cars 65 S24_3420 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 31 53.92 9 1671.52 2004-09-15 00:00:00 Shipped 3 9 2004 Vintage Cars 65 S24_3420 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10307 22 71.67 3 1576.74 2004-10-14 00:00:00 Shipped 4 10 2004 Vintage Cars 65 S24_3420 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10316 47 76.93 11 3615.71 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 65 S24_3420 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10328 20 72.98 2 1459.6 2004-11-12 00:00:00 Shipped 4 11 2004 Vintage Cars 65 S24_3420 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10339 29 99.69 14 2891.01 2004-11-23 00:00:00 Shipped 4 11 2004 Vintage Cars 65 S24_3420 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10351 38 68.38 4 2598.44 2004-12-03 00:00:00 Shipped 4 12 2004 Vintage Cars 65 S24_3420 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10361 34 100 6 3871.92 2004-12-17 00:00:00 Shipped 4 12 2004 Vintage Cars 65 S24_3420 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10373 46 66 11 3036 2005-01-31 00:00:00 Shipped 1 1 2005 Vintage Cars 65 S24_3420 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10386 35 63.76 9 2231.6 2005-03-01 00:00:00 Resolved 1 3 2005 Vintage Cars 65 S24_3420 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 34 71.67 13 2436.78 2005-03-30 00:00:00 Shipped 1 3 2005 Vintage Cars 65 S24_3420 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10400 38 57.2 3 2173.6 2005-04-01 00:00:00 Shipped 2 4 2005 Vintage Cars 65 S24_3420 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10415 18 69.7 2 1254.6 2005-05-09 00:00:00 Disputed 2 5 2005 Vintage Cars 65 S24_3420 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10110 37 100 14 3724.42 2003-03-18 00:00:00 Shipped 1 3 2003 Classic Cars 107 S24_3432 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10124 43 100 13 5203 2003-05-21 00:00:00 Shipped 2 5 2003 Classic Cars 107 S24_3432 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10148 27 100 7 3469.5 2003-09-11 00:00:00 Shipped 3 9 2003 Classic Cars 107 S24_3432 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10161 30 100 6 3148.2 2003-10-17 00:00:00 Shipped 4 10 2003 Classic Cars 107 S24_3432 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10172 22 98.51 4 2167.22 2003-11-05 00:00:00 Shipped 4 11 2003 Classic Cars 107 S24_3432 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10182 49 100 17 6244.07 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 107 S24_3432 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10192 46 100 5 5566 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 107 S24_3432 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10204 48 91.02 11 4368.96 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 107 S24_3432 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10212 46 87.81 4 4039.26 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 107 S24_3432 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10226 48 92.09 2 4420.32 2004-02-26 00:00:00 Shipped 1 2 2004 Classic Cars 107 S24_3432 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10241 27 86.73 9 2341.71 2004-04-13 00:00:00 Shipped 2 4 2004 Classic Cars 107 S24_3432 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Small +10267 43 100 6 5110.98 2004-07-07 00:00:00 Shipped 3 7 2004 Classic Cars 107 S24_3432 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10279 48 100 6 6168 2004-08-09 00:00:00 Shipped 3 8 2004 Classic Cars 107 S24_3432 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10288 41 100 12 4873.26 2004-09-01 00:00:00 Shipped 3 9 2004 Classic Cars 107 S24_3432 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10301 22 96.37 2 2120.14 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 107 S24_3432 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10311 46 92.09 7 4236.14 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 107 S24_3432 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10321 21 89.95 4 1888.95 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 107 S24_3432 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Small +10332 31 37.18 13 1152.58 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 107 S24_3432 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10346 26 95.88 6 2492.88 2004-11-29 00:00:00 Shipped 4 11 2004 Classic Cars 107 S24_3432 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10368 20 99.58 4 1991.6 2005-01-19 00:00:00 Shipped 1 1 2005 Classic Cars 107 S24_3432 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10380 34 100 11 3953.18 2005-02-16 00:00:00 Shipped 1 2 2005 Classic Cars 107 S24_3432 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10407 43 86.73 9 3729.39 2005-04-22 00:00:00 On Hold 2 4 2005 Classic Cars 107 S24_3432 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10420 26 100 12 2617.16 2005-05-29 00:00:00 In Process 2 5 2005 Classic Cars 107 S24_3432 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10105 50 79.67 1 3983.5 2003-02-11 00:00:00 Shipped 1 2 2003 Vintage Cars 83 S24_3816 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10119 35 90.57 10 3169.95 2003-04-28 00:00:00 Shipped 2 4 2003 Vintage Cars 83 S24_3816 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10129 50 77.99 1 3899.5 2003-06-12 00:00:00 Shipped 2 6 2003 Vintage Cars 83 S24_3816 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10143 23 80.51 14 1851.73 2003-08-10 00:00:00 Shipped 3 8 2003 Vintage Cars 83 S24_3816 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 37 67.93 12 2513.41 2003-10-06 00:00:00 Shipped 4 10 2003 Vintage Cars 83 S24_3816 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10167 29 83.86 8 2431.94 2003-10-23 00:00:00 Cancelled 4 10 2003 Vintage Cars 83 S24_3816 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10178 21 72.12 11 1514.52 2003-11-08 00:00:00 Shipped 4 11 2003 Vintage Cars 83 S24_3816 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10186 36 85.54 8 3079.44 2003-11-14 00:00:00 Shipped 4 11 2003 Vintage Cars 83 S24_3816 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Medium +10197 22 86.38 5 1900.36 2003-11-26 00:00:00 Shipped 4 11 2003 Vintage Cars 83 S24_3816 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10209 22 89.73 7 1974.06 2004-01-09 00:00:00 Shipped 1 1 2004 Vintage Cars 83 S24_3816 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10222 46 80.51 11 3703.46 2004-02-19 00:00:00 Shipped 1 2 2004 Vintage Cars 83 S24_3816 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10248 23 76.31 2 1755.13 2004-05-07 00:00:00 Cancelled 2 5 2004 Vintage Cars 83 S24_3816 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10262 49 87.21 16 4273.29 2004-06-24 00:00:00 Cancelled 2 6 2004 Vintage Cars 83 S24_3816 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10273 48 83.02 3 3984.96 2004-07-21 00:00:00 Shipped 3 7 2004 Vintage Cars 83 S24_3816 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10283 33 72.96 5 2407.68 2004-08-20 00:00:00 Shipped 3 8 2004 Vintage Cars 83 S24_3816 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10296 22 77.15 14 1697.3 2004-09-15 00:00:00 Shipped 3 9 2004 Vintage Cars 83 S24_3816 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10307 22 91.41 8 2011.02 2004-10-14 00:00:00 Shipped 4 10 2004 Vintage Cars 83 S24_3816 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10316 25 92.25 16 2306.25 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 83 S24_3816 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10326 20 92.25 2 1845 2004-11-09 00:00:00 Shipped 4 11 2004 Vintage Cars 83 S24_3816 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10339 42 59.36 16 2493.12 2004-11-23 00:00:00 Shipped 4 11 2004 Vintage Cars 83 S24_3816 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10350 25 60.34 10 1508.5 2004-12-02 00:00:00 Shipped 4 12 2004 Vintage Cars 83 S24_3816 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10373 23 100 10 2394.3 2005-01-31 00:00:00 Shipped 1 1 2005 Vintage Cars 83 S24_3816 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10385 37 85.54 2 3164.98 2005-02-28 00:00:00 Shipped 1 2 2005 Vintage Cars 83 S24_3816 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10396 37 90.57 8 3351.09 2005-03-23 00:00:00 Shipped 1 3 2005 Vintage Cars 83 S24_3816 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10400 42 72.96 8 3064.32 2005-04-01 00:00:00 Shipped 2 4 2005 Vintage Cars 83 S24_3816 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10414 51 76.31 2 3891.81 2005-05-06 00:00:00 On Hold 2 5 2005 Vintage Cars 83 S24_3816 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10108 40 100 1 5448.8 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 140 S24_3856 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10122 43 100 5 5494.97 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 140 S24_3856 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Medium +10135 47 100 2 6336.07 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 140 S24_3856 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10147 23 100 2 2906.97 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 140 S24_3856 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10160 35 100 3 4767.7 2003-10-11 00:00:00 Shipped 4 10 2003 Classic Cars 140 S24_3856 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Medium +10170 34 100 1 3819.56 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 140 S24_3856 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10181 25 100 9 3861.75 2003-11-12 00:00:00 Shipped 4 11 2003 Classic Cars 140 S24_3856 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10192 45 100 14 6319.35 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 140 S24_3856 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Medium +10203 47 100 3 6996.42 2003-12-02 00:00:00 Shipped 4 12 2003 Classic Cars 140 S24_3856 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10212 49 100 13 6949.67 2004-01-16 00:00:00 Shipped 1 1 2004 Classic Cars 140 S24_3856 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10225 40 100 4 4550 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 140 S24_3856 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10239 29 100 3 4479.63 2004-04-12 00:00:00 Shipped 2 4 2004 Classic Cars 140 S24_3856 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10253 39 100 8 5148 2004-06-01 00:00:00 Cancelled 2 6 2004 Classic Cars 140 S24_3856 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10266 24 100 9 2932.08 2004-07-06 00:00:00 Shipped 3 7 2004 Classic Cars 140 S24_3856 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10278 25 100 9 3159.75 2004-08-06 00:00:00 Shipped 3 8 2004 Classic Cars 140 S24_3856 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Medium +10287 36 100 7 4297.32 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 140 S24_3856 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10301 50 100 11 7723.5 2003-10-05 00:00:00 Shipped 4 10 2003 Classic Cars 140 S24_3856 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Large +10310 45 100 5 5497.65 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 140 S24_3856 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10321 26 100 13 4052.88 2004-11-04 00:00:00 Shipped 4 11 2004 Classic Cars 140 S24_3856 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10331 21 100 1 3135.93 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 140 S24_3856 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10342 42 100 6 5013.54 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 140 S24_3856 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10355 32 100 8 5302.72 2004-12-07 00:00:00 Shipped 4 12 2004 Classic Cars 140 S24_3856 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10363 31 94.58 1 2931.98 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 140 S24_3856 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10378 33 53.27 3 1757.91 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 140 S24_3856 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10390 45 100 8 6763.05 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 140 S24_3856 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10405 76 100 3 11739.7 2005-04-14 00:00:00 Shipped 2 4 2005 Classic Cars 140 S24_3856 Mini Caravy 88.60.1555 24, place Kluber \N Strasbourg \N 67000 France EMEA Citeaux Frederique Large +10419 70 100 8 9240 2005-05-17 00:00:00 Shipped 2 5 2005 Classic Cars 140 S24_3856 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Large +10106 50 64.83 11 3241.5 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 68 S24_3949 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10119 28 70.29 2 1968.12 2003-04-28 00:00:00 Shipped 2 4 2003 Planes 68 S24_3949 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10131 50 81.89 3 4094.5 2003-06-16 00:00:00 Shipped 2 6 2003 Planes 68 S24_3949 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10143 28 66.19 6 1853.32 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 68 S24_3949 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 44 77.11 4 3392.84 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 68 S24_3949 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10168 27 73.02 18 1971.54 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 68 S24_3949 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10178 30 72.33 3 2169.9 2003-11-08 00:00:00 Shipped 4 11 2003 Planes 68 S24_3949 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10198 43 66.19 3 2846.17 2003-11-27 00:00:00 Shipped 4 11 2003 Planes 68 S24_3949 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10210 29 69.6 16 2018.4 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 68 S24_3949 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10222 48 56.64 3 2718.72 2004-02-19 00:00:00 Shipped 1 2 2004 Planes 68 S24_3949 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10235 33 60.05 12 1981.65 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 68 S24_3949 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 40 75.06 13 3002.4 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 68 S24_3949 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10262 48 61.42 8 2948.16 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 68 S24_3949 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10275 41 81.89 18 3357.49 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 68 S24_3949 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10284 21 55.96 10 1175.16 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 68 S24_3949 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 32 71.65 6 2292.8 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 68 S24_3949 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10308 43 76.43 16 3286.49 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 68 S24_3949 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10316 30 77.79 8 2333.7 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 68 S24_3949 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 35 76.43 3 2675.05 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 68 S24_3949 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10339 45 96.92 11 4361.4 2004-11-23 00:00:00 Shipped 4 11 2004 Planes 68 S24_3949 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10351 34 59.37 3 2018.58 2004-12-03 00:00:00 Shipped 4 12 2004 Planes 68 S24_3949 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10361 26 100 7 3710.98 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 68 S24_3949 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10373 39 73 13 2847 2005-01-31 00:00:00 Shipped 1 1 2005 Planes 68 S24_3949 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 41 73.32 12 3006.12 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 68 S24_3949 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 41 68.24 2 2797.84 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 68 S24_3949 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 64 60.05 12 3843.2 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 68 S24_3949 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10416 18 75.06 13 1351.08 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 68 S24_3949 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10100 49 34.47 1 1689.03 2003-01-06 00:00:00 Shipped 1 1 2003 Vintage Cars 41 S24_3969 Online Diecast Creations Co. 6035558647 2304 Long Airport Avenue \N Nashua NH 62005 USA \N Young Valarie Small +10110 48 34.47 5 1654.56 2003-03-18 00:00:00 Shipped 1 3 2003 Vintage Cars 41 S24_3969 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10124 46 33.23 4 1528.58 2003-05-21 00:00:00 Shipped 2 5 2003 Vintage Cars 41 S24_3969 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10149 26 38.98 9 1013.48 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 41 S24_3969 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10162 37 38.98 7 1442.26 2003-10-18 00:00:00 Shipped 4 10 2003 Vintage Cars 41 S24_3969 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10173 35 33.23 11 1163.05 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 41 S24_3969 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10182 23 42.26 8 971.98 2003-11-12 00:00:00 Shipped 4 11 2003 Vintage Cars 41 S24_3969 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10193 22 41.03 12 902.66 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 41 S24_3969 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10204 39 33.23 2 1295.97 2003-12-02 00:00:00 Shipped 4 12 2003 Vintage Cars 41 S24_3969 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10214 44 34.88 5 1534.72 2004-01-26 00:00:00 Shipped 1 1 2004 Vintage Cars 41 S24_3969 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10227 27 43.9 8 1185.3 2004-03-02 00:00:00 Shipped 1 3 2004 Vintage Cars 41 S24_3969 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10242 46 36.93 1 1698.78 2004-04-20 00:00:00 Shipped 2 4 2004 Vintage Cars 41 S24_3969 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Small +10280 33 41.85 14 1381.05 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 41 S24_3969 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10288 33 40.62 3 1340.46 2004-09-01 00:00:00 Shipped 3 9 2004 Vintage Cars 41 S24_3969 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10303 24 40.21 1 965.04 2004-10-06 00:00:00 Shipped 4 10 2004 Vintage Cars 41 S24_3969 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10312 31 35.29 15 1093.99 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 41 S24_3969 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10332 41 77.24 14 3166.84 2004-11-17 00:00:00 Shipped 4 11 2004 Vintage Cars 41 S24_3969 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10346 22 97.44 4 2143.68 2004-11-29 00:00:00 Shipped 4 11 2004 Vintage Cars 41 S24_3969 Signal Gift Stores 7025551838 8489 Strong St. \N Las Vegas NV 83030 USA \N King Sue Small +10368 46 37.34 3 1717.64 2005-01-19 00:00:00 Shipped 1 1 2005 Vintage Cars 41 S24_3969 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10380 43 95.03 12 4086.29 2005-02-16 00:00:00 Shipped 1 2 2005 Vintage Cars 41 S24_3969 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10408 15 36.93 1 553.95 2005-04-22 00:00:00 Shipped 2 4 2005 Vintage Cars 41 S24_3969 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10420 15 43.49 3 652.35 2005-05-29 00:00:00 In Process 2 5 2005 Vintage Cars 41 S24_3969 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10104 26 100 5 2921.62 2003-01-31 00:00:00 Shipped 1 1 2003 Classic Cars 118 S24_4048 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10115 44 100 1 5568.64 2003-04-04 00:00:00 Shipped 2 4 2003 Classic Cars 118 S24_4048 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10127 20 96.99 7 1939.8 2003-06-03 00:00:00 Shipped 2 6 2003 Classic Cars 118 S24_4048 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10141 40 94.62 1 3784.8 2003-08-01 00:00:00 Shipped 3 8 2003 Classic Cars 118 S24_4048 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10152 23 100 3 2802.09 2003-09-25 00:00:00 Shipped 3 9 2003 Classic Cars 118 S24_4048 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Small +10165 24 99.36 8 2384.64 2003-10-22 00:00:00 Shipped 4 10 2003 Classic Cars 118 S24_4048 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10176 29 100 7 2915.66 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 118 S24_4048 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10184 49 100 2 5795.72 2003-11-14 00:00:00 Shipped 4 11 2003 Classic Cars 118 S24_4048 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10195 34 100 2 3699.88 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 118 S24_4048 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10207 28 100 3 2980.6 2003-12-09 00:00:00 Shipped 4 12 2003 Classic Cars 118 S24_4048 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10220 37 100 7 5032.74 2004-02-12 00:00:00 Shipped 1 2 2004 Classic Cars 118 S24_4048 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Medium +10230 45 100 5 4737.15 2004-03-15 00:00:00 Shipped 1 3 2004 Classic Cars 118 S24_4048 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10246 46 100 1 6311.2 2004-05-05 00:00:00 Shipped 2 5 2004 Classic Cars 118 S24_4048 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10271 22 100 1 3070.54 2004-07-20 00:00:00 Shipped 3 7 2004 Classic Cars 118 S24_4048 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10282 39 100 10 4797.39 2004-08-20 00:00:00 Shipped 3 8 2004 Classic Cars 118 S24_4048 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10292 27 100 4 3832.38 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 118 S24_4048 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10305 36 100 1 4641.48 2004-10-13 00:00:00 Shipped 4 10 2004 Classic Cars 118 S24_4048 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10314 38 100 10 4000.26 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 118 S24_4048 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10325 44 100 5 5325.76 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 118 S24_4048 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10336 31 100 5 4618.69 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 118 S24_4048 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10349 23 100 2 3182.97 2004-12-01 00:00:00 Shipped 4 12 2004 Classic Cars 118 S24_4048 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10359 22 100 7 2603.04 2004-12-15 00:00:00 Shipped 4 12 2004 Classic Cars 118 S24_4048 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10371 28 50.32 9 1408.96 2005-01-23 00:00:00 Shipped 1 1 2005 Classic Cars 118 S24_4048 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10383 21 93.91 4 1972.11 2005-02-22 00:00:00 Shipped 1 2 2005 Classic Cars 118 S24_4048 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10394 37 100 7 5207.75 2005-03-15 00:00:00 Shipped 1 3 2005 Classic Cars 118 S24_4048 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10412 31 100 1 4253.2 2005-05-03 00:00:00 Shipped 2 5 2005 Classic Cars 118 S24_4048 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10103 25 100 15 2873 2003-01-29 00:00:00 Shipped 1 1 2003 Vintage Cars 97 S24_4258 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10111 26 86.68 3 2253.68 2003-03-25 00:00:00 Shipped 1 3 2003 Vintage Cars 97 S24_4258 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10126 34 100 15 3576.12 2003-05-28 00:00:00 Shipped 2 5 2003 Vintage Cars 97 S24_4258 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10139 29 100 4 3276.13 2003-07-16 00:00:00 Shipped 3 7 2003 Vintage Cars 97 S24_4258 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10149 20 90.57 1 1811.4 2003-09-12 00:00:00 Shipped 3 9 2003 Vintage Cars 97 S24_4258 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10163 42 91.55 5 3845.1 2003-10-20 00:00:00 Shipped 4 10 2003 Vintage Cars 97 S24_4258 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10173 22 100 3 2571.14 2003-11-05 00:00:00 Shipped 4 11 2003 Vintage Cars 97 S24_4258 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10183 47 100 12 5035.11 2003-11-13 00:00:00 Shipped 4 11 2003 Vintage Cars 97 S24_4258 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10193 20 100 4 2279 2003-11-21 00:00:00 Shipped 4 11 2003 Vintage Cars 97 S24_4258 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10206 33 97.39 10 3213.87 2003-12-05 00:00:00 Shipped 4 12 2003 Vintage Cars 97 S24_4258 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10215 39 90.57 7 3532.23 2004-01-29 00:00:00 Shipped 1 1 2004 Vintage Cars 97 S24_4258 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10228 33 100 6 3406.59 2004-03-10 00:00:00 Shipped 1 3 2004 Vintage Cars 97 S24_4258 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Medium +10244 40 86.68 4 3467.2 2004-04-29 00:00:00 Shipped 2 4 2004 Vintage Cars 97 S24_4258 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10257 46 78.89 4 3628.94 2004-06-14 00:00:00 Shipped 2 6 2004 Vintage Cars 97 S24_4258 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10269 48 97.39 2 4674.72 2004-07-16 00:00:00 Shipped 3 7 2004 Vintage Cars 97 S24_4258 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10280 21 78.89 6 1656.69 2004-08-17 00:00:00 Shipped 3 8 2004 Vintage Cars 97 S24_4258 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10290 45 100 1 5171.4 2004-09-07 00:00:00 Shipped 3 9 2004 Vintage Cars 97 S24_4258 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Medium +10304 33 100 10 3342.57 2004-10-11 00:00:00 Shipped 4 10 2004 Vintage Cars 97 S24_4258 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10312 44 100 7 4884.88 2004-10-21 00:00:00 Shipped 4 10 2004 Vintage Cars 97 S24_4258 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10324 33 100 3 6267.69 2004-11-05 00:00:00 Shipped 4 11 2004 Vintage Cars 97 S24_4258 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10333 39 100 1 4424.16 2004-11-18 00:00:00 Shipped 4 11 2004 Vintage Cars 97 S24_4258 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Medium +10348 39 50.31 2 1962.09 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 97 S24_4258 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10358 41 100 6 6847 2004-12-10 00:00:00 Shipped 4 12 2004 Vintage Cars 97 S24_4258 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10369 40 86.92 3 3476.8 2005-01-20 00:00:00 Shipped 1 1 2005 Vintage Cars 97 S24_4258 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Medium +10382 33 100 4 4592.61 2005-02-17 00:00:00 Shipped 1 2 2005 Vintage Cars 97 S24_4258 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10423 28 78.89 4 2208.92 2005-05-30 00:00:00 In Process 2 5 2005 Vintage Cars 97 S24_4258 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10106 26 63.76 3 1657.76 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 72 S24_4278 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10120 29 85.49 9 2479.21 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 72 S24_4278 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10133 46 77.52 4 3565.92 2003-06-27 00:00:00 Shipped 2 6 2003 Planes 72 S24_4278 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10145 33 84.77 15 2797.41 2003-08-25 00:00:00 Shipped 3 8 2003 Planes 72 S24_4278 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10168 48 78.25 10 3756 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 72 S24_4278 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10210 40 71 8 2840 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 72 S24_4278 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 23 74.62 10 1716.26 2004-02-20 00:00:00 Shipped 1 2 2004 Planes 72 S24_4278 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10235 40 81.14 4 3245.6 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 72 S24_4278 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10250 37 74.62 5 2760.94 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 72 S24_4278 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10263 24 75.35 11 1808.4 2004-06-28 00:00:00 Shipped 2 6 2004 Planes 72 S24_4278 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10275 27 62.31 10 1682.37 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 72 S24_4278 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10284 21 71 2 1491 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 72 S24_4278 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10297 23 72.45 5 1666.35 2004-09-16 00:00:00 Shipped 3 9 2004 Planes 72 S24_4278 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10308 44 83.32 8 3666.08 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 72 S24_4278 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10317 35 83.32 1 2916.2 2004-11-02 00:00:00 Shipped 4 11 2004 Planes 72 S24_4278 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10328 43 60.86 4 2616.98 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 72 S24_4278 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10340 40 84.77 1 3390.8 2004-11-24 00:00:00 Shipped 4 11 2004 Planes 72 S24_4278 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10353 35 89.9 3 3146.5 2004-12-04 00:00:00 Shipped 4 12 2004 Planes 72 S24_4278 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10361 25 62.46 1 1561.5 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 72 S24_4278 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10375 43 100 2 10039.6 2005-02-03 00:00:00 Shipped 1 2 2005 Planes 72 S24_4278 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Large +10386 50 63.34 8 3167 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 72 S24_4278 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 45 78.25 14 3521.25 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 72 S24_4278 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10401 52 81.14 4 4219.28 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 72 S24_4278 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10416 48 74.62 5 3581.76 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 72 S24_4278 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10108 31 68.71 10 2130.01 2003-03-03 00:00:00 Shipped 1 3 2003 Classic Cars 80 S24_4620 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10122 29 71.14 14 2063.06 2003-05-08 00:00:00 Shipped 2 5 2003 Classic Cars 80 S24_4620 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 23 87.31 11 2008.13 2003-07-02 00:00:00 Shipped 3 7 2003 Classic Cars 80 S24_4620 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10147 31 64.67 11 2004.77 2003-09-05 00:00:00 Shipped 3 9 2003 Classic Cars 80 S24_4620 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10159 23 67.1 6 1543.3 2003-10-10 00:00:00 Shipped 4 10 2003 Classic Cars 80 S24_4620 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 24 94.58 6 2269.92 2003-11-04 00:00:00 Shipped 4 11 2003 Classic Cars 80 S24_4620 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10180 28 71.14 1 1991.92 2003-11-11 00:00:00 Shipped 4 11 2003 Classic Cars 80 S24_4620 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10191 44 66.29 7 2916.76 2003-11-20 00:00:00 Shipped 4 11 2003 Classic Cars 80 S24_4620 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10211 22 92.16 6 2027.52 2004-01-15 00:00:00 Shipped 1 1 2004 Classic Cars 80 S24_4620 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10225 46 70.33 13 3235.18 2004-02-22 00:00:00 Shipped 1 2 2004 Classic Cars 80 S24_4620 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10238 22 93.77 7 2062.94 2004-04-09 00:00:00 Shipped 2 4 2004 Classic Cars 80 S24_4620 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10252 38 87.31 3 3317.78 2004-05-26 00:00:00 Shipped 2 5 2004 Classic Cars 80 S24_4620 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10264 47 83.27 1 3913.69 2004-06-30 00:00:00 Shipped 2 6 2004 Classic Cars 80 S24_4620 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10276 48 75.18 7 3608.64 2004-08-02 00:00:00 Shipped 3 8 2004 Classic Cars 80 S24_4620 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10287 40 88.12 16 3524.8 2004-08-30 00:00:00 Shipped 3 8 2004 Classic Cars 80 S24_4620 Vida Sport, Ltd 0897-034555 Grenzacherweg 237 \N Gensve \N 1203 Switzerland EMEA Holz Michael Medium +10299 32 80.84 1 2586.88 2004-09-30 00:00:00 Shipped 3 9 2004 Classic Cars 80 S24_4620 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10310 49 97.01 14 4753.49 2004-10-16 00:00:00 Shipped 4 10 2004 Classic Cars 80 S24_4620 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Medium +10319 43 85.69 2 3684.67 2004-11-03 00:00:00 Shipped 4 11 2004 Classic Cars 80 S24_4620 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Medium +10331 41 100 2 5715.4 2004-11-17 00:00:00 Shipped 4 11 2004 Classic Cars 80 S24_4620 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10343 30 100 1 3098.7 2004-11-24 00:00:00 Shipped 4 11 2004 Classic Cars 80 S24_4620 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10355 28 95.39 9 2670.92 2004-12-07 00:00:00 Shipped 4 12 2004 Classic Cars 80 S24_4620 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10363 43 100 9 5154.41 2005-01-06 00:00:00 Shipped 1 1 2005 Classic Cars 80 S24_4620 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10378 41 100 2 4894.17 2005-02-10 00:00:00 Shipped 1 2 2005 Classic Cars 80 S24_4620 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 30 82.42 10 2472.6 2005-03-04 00:00:00 Shipped 1 3 2005 Classic Cars 80 S24_4620 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10103 31 100 3 3224.31 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 96 S32_1268 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10114 32 100 7 3667.52 2003-04-01 00:00:00 Shipped 2 4 2003 Trucks and Buses 96 S32_1268 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10126 43 96.31 3 4141.33 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 96 S32_1268 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10140 26 100 3 2829.58 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 96 S32_1268 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10151 27 100 10 3068.55 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 96 S32_1268 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10164 24 100 1 2634.96 2003-10-21 00:00:00 Resolved 4 10 2003 Trucks and Buses 96 S32_1268 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Small +10175 22 100 8 2436.72 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 96 S32_1268 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10184 46 100 13 4607.36 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 96 S32_1268 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10194 37 97.27 3 3598.99 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 96 S32_1268 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10207 49 80.9 14 3964.1 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 96 S32_1268 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Medium +10217 21 100 3 2244.9 2004-02-04 00:00:00 Shipped 1 2 2004 Trucks and Buses 96 S32_1268 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10229 25 100 8 2793 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 96 S32_1268 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10245 37 100 1 4133.64 2004-05-04 00:00:00 Shipped 2 5 2004 Trucks and Buses 96 S32_1268 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10259 45 86.68 11 3900.6 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 96 S32_1268 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10270 32 85.72 1 2743.04 2004-07-19 00:00:00 Shipped 3 7 2004 Trucks and Buses 96 S32_1268 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10281 29 82.83 8 2402.07 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 96 S32_1268 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 26 83.79 3 2178.54 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 96 S32_1268 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10305 28 100 12 3155.04 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 96 S32_1268 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10313 27 87.64 6 2366.28 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 96 S32_1268 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10324 20 98.18 11 1963.6 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 96 S32_1268 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10335 44 100 1 4746.28 2004-11-19 00:00:00 Shipped 4 11 2004 Trucks and Buses 96 S32_1268 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10348 42 100 3 6386.94 2004-11-01 00:00:00 Shipped 4 11 2004 Trucks and Buses 96 S32_1268 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10358 41 100 1 4428 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 96 S32_1268 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10371 26 100 1 4044.04 2005-01-23 00:00:00 Shipped 1 1 2005 Trucks and Buses 96 S32_1268 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10382 26 100 6 2708.42 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 96 S32_1268 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10411 26 100 1 2904.72 2005-05-01 00:00:00 Shipped 2 5 2005 Trucks and Buses 96 S32_1268 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10425 41 86.68 11 3553.88 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 96 S32_1268 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10107 20 92.9 8 1858 2003-02-24 00:00:00 Shipped 1 2 2003 Motorcycles 99 S32_1374 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10120 22 100 6 2461.36 2003-04-29 00:00:00 Shipped 2 4 2003 Motorcycles 99 S32_1374 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10133 23 100 1 2642.01 2003-06-27 00:00:00 Shipped 2 6 2003 Motorcycles 99 S32_1374 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10145 33 93.9 12 3098.7 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 99 S32_1374 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10168 28 100 7 3244.36 2003-10-28 00:00:00 Shipped 4 10 2003 Motorcycles 99 S32_1374 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10188 44 98.89 7 4351.16 2003-11-18 00:00:00 Shipped 4 11 2003 Motorcycles 99 S32_1374 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10210 46 79.91 5 3675.86 2004-01-12 00:00:00 Shipped 1 1 2004 Motorcycles 99 S32_1374 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Medium +10223 21 100 7 2475.27 2004-02-20 00:00:00 Shipped 1 2 2004 Motorcycles 99 S32_1374 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10235 41 100 1 4177.49 2004-04-02 00:00:00 Shipped 2 4 2004 Motorcycles 99 S32_1374 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10250 31 100 2 3282.28 2004-05-11 00:00:00 Shipped 2 5 2004 Motorcycles 99 S32_1374 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10263 31 79.91 8 2477.21 2004-06-28 00:00:00 Shipped 2 6 2004 Motorcycles 99 S32_1374 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10275 23 81.91 7 1883.93 2004-07-23 00:00:00 Shipped 3 7 2004 Motorcycles 99 S32_1374 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10285 37 98.89 12 3658.93 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 99 S32_1374 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10297 26 100 2 2856.88 2004-09-16 00:00:00 Shipped 3 9 2004 Motorcycles 99 S32_1374 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10308 24 79.91 5 1917.84 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 99 S32_1374 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10318 47 100 7 5305.36 2004-11-02 00:00:00 Shipped 4 11 2004 Motorcycles 99 S32_1374 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Medium +10329 45 63.91 11 2875.95 2004-11-15 00:00:00 Shipped 4 11 2004 Motorcycles 99 S32_1374 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10340 55 100 2 6482.85 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 99 S32_1374 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10353 46 81.17 5 3733.82 2004-12-04 00:00:00 Shipped 4 12 2004 Motorcycles 99 S32_1374 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10363 50 100 2 6576.5 2005-01-06 00:00:00 Shipped 1 1 2005 Motorcycles 99 S32_1374 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10375 37 100 3 6353.27 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 99 S32_1374 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10387 44 94.9 1 4175.6 2005-03-02 00:00:00 Shipped 1 3 2005 Motorcycles 99 S32_1374 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10401 49 100 1 4992.61 2005-04-03 00:00:00 On Hold 2 4 2005 Motorcycles 99 S32_1374 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10416 45 100 2 4764.6 2005-05-10 00:00:00 Shipped 2 5 2005 Motorcycles 99 S32_1374 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10108 27 43.45 13 1173.15 2003-03-03 00:00:00 Shipped 1 3 2003 Motorcycles 40 S32_2206 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10122 31 44.66 17 1384.46 2003-05-08 00:00:00 Shipped 2 5 2003 Motorcycles 40 S32_2206 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10135 33 40.23 14 1327.59 2003-07-02 00:00:00 Shipped 3 7 2003 Motorcycles 40 S32_2206 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10145 31 35.8 1 1109.8 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 40 S32_2206 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10159 35 35.4 9 1239 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 40 S32_2206 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 26 39.83 9 1035.58 2003-11-04 00:00:00 Shipped 4 11 2003 Motorcycles 40 S32_2206 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Small +10180 34 45.46 4 1545.64 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 40 S32_2206 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10190 46 32.99 1 1517.54 2003-11-19 00:00:00 Shipped 4 11 2003 Motorcycles 40 S32_2206 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10211 41 42.24 9 1731.84 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 40 S32_2206 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10224 43 39.43 2 1695.49 2004-02-21 00:00:00 Shipped 1 2 2004 Motorcycles 40 S32_2206 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10237 26 40.23 2 1045.98 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 40 S32_2206 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10252 36 48.28 6 1738.08 2004-05-26 00:00:00 Shipped 2 5 2004 Motorcycles 40 S32_2206 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10264 20 32.59 4 651.8 2004-06-30 00:00:00 Shipped 2 6 2004 Motorcycles 40 S32_2206 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10276 27 36.61 10 988.47 2004-08-02 00:00:00 Shipped 3 8 2004 Motorcycles 40 S32_2206 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Small +10285 37 41.03 1 1518.11 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 40 S32_2206 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10299 24 42.24 4 1013.76 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 40 S32_2206 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10310 36 43.05 17 1549.8 2004-10-16 00:00:00 Shipped 4 10 2004 Motorcycles 40 S32_2206 Toms Spezialitten, Ltd 0221-5554327 Mehrheimerstr. 369 \N Koln \N 50739 Germany EMEA Pfalzheim Henriette Small +10319 29 38.22 5 1108.38 2004-11-03 00:00:00 Shipped 4 11 2004 Motorcycles 40 S32_2206 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Small +10331 28 100 3 4102.56 2004-11-17 00:00:00 Shipped 4 11 2004 Motorcycles 40 S32_2206 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10343 29 100 5 3713.16 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 40 S32_2206 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10355 38 39.83 10 1513.54 2004-12-07 00:00:00 Shipped 4 12 2004 Motorcycles 40 S32_2206 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10364 48 48.28 1 2317.44 2005-01-06 00:00:00 Shipped 1 1 2005 Motorcycles 40 S32_2206 Marseille Mini Autos 91.24.4555 12, rue des Bouchers \N Marseille \N 13008 France EMEA Lebihan Laurence Small +10378 40 82.46 1 3298.4 2005-02-10 00:00:00 Shipped 1 2 2005 Motorcycles 40 S32_2206 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10390 41 44.56 11 1826.96 2005-03-04 00:00:00 Shipped 1 3 2005 Motorcycles 40 S32_2206 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10403 30 40.23 2 1206.9 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 40 S32_2206 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10104 35 47.62 11 1666.7 2003-01-31 00:00:00 Shipped 1 1 2003 Trucks and Buses 54 S32_2509 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10114 28 55.73 2 1560.44 2003-04-01 00:00:00 Shipped 2 4 2003 Trucks and Buses 54 S32_2509 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10127 45 51.95 13 2337.75 2003-06-03 00:00:00 Shipped 2 6 2003 Trucks and Buses 54 S32_2509 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10141 24 45.99 7 1103.76 2003-08-01 00:00:00 Shipped 3 8 2003 Trucks and Buses 54 S32_2509 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10151 41 63.85 5 2617.85 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 54 S32_2509 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10165 48 45.99 14 2207.52 2003-10-22 00:00:00 Shipped 4 10 2003 Trucks and Buses 54 S32_2509 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10175 50 63.31 3 3165.5 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 54 S32_2509 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10184 33 62.77 8 2071.41 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 54 S32_2509 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10195 32 43.29 8 1385.28 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 54 S32_2509 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10207 27 60.06 9 1621.62 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 54 S32_2509 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10219 35 55.19 4 1931.65 2004-02-10 00:00:00 Shipped 1 2 2004 Trucks and Buses 54 S32_2509 Signal Collectibles Ltd. 4155554312 2793 Furth Circle \N Brisbane CA 94217 USA \N Taylor Sue Small +10229 23 54.11 3 1244.53 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 54 S32_2509 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10246 35 48.7 7 1704.5 2004-05-05 00:00:00 Shipped 2 5 2004 Trucks and Buses 54 S32_2509 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10259 40 43.83 6 1753.2 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 54 S32_2509 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10271 35 47.62 7 1666.7 2004-07-20 00:00:00 Shipped 3 7 2004 Trucks and Buses 54 S32_2509 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10281 31 55.19 3 1710.89 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 54 S32_2509 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10292 50 46.53 10 2326.5 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 54 S32_2509 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10305 40 57.9 7 2316 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 54 S32_2509 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10313 38 45.45 1 1727.1 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 54 S32_2509 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10325 38 100 3 8844.12 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 54 S32_2509 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Large +10335 40 60.6 3 2424 2004-11-19 00:00:00 Shipped 4 11 2004 Trucks and Buses 54 S32_2509 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10349 33 46.53 1 1535.49 2004-12-01 00:00:00 Shipped 4 12 2004 Trucks and Buses 54 S32_2509 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10359 36 100 3 6358.68 2004-12-15 00:00:00 Shipped 4 12 2004 Trucks and Buses 54 S32_2509 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10371 20 66.47 2 1329.4 2005-01-23 00:00:00 Shipped 1 1 2005 Trucks and Buses 54 S32_2509 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10383 32 53.18 5 1701.76 2005-02-22 00:00:00 Shipped 1 2 2005 Trucks and Buses 54 S32_2509 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10394 36 62.77 3 2259.72 2005-03-15 00:00:00 Shipped 1 3 2005 Trucks and Buses 54 S32_2509 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10412 19 48.7 7 925.3 2005-05-03 00:00:00 Shipped 2 5 2005 Trucks and Buses 54 S32_2509 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10425 11 43.83 6 482.13 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 54 S32_2509 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10104 49 65.87 4 3227.63 2003-01-31 00:00:00 Shipped 1 1 2003 Trains 62 S32_3207 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10116 27 63.38 1 1711.26 2003-04-11 00:00:00 Shipped 2 4 2003 Trains 62 S32_3207 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Small +10127 29 70.84 6 2054.36 2003-06-03 00:00:00 Shipped 2 6 2003 Trains 62 S32_3207 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Small +10142 42 74.57 16 3131.94 2003-08-08 00:00:00 Shipped 3 8 2003 Trains 62 S32_3207 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10152 33 50.95 2 1681.35 2003-09-25 00:00:00 Shipped 3 9 2003 Trains 62 S32_3207 Australian Gift Network, Co 61-7-3844-6555 31 Duncan St. West End \N South Brisbane Queensland 4101 Australia APAC Calaghan Tony Small +10165 44 53.44 7 2351.36 2003-10-22 00:00:00 Shipped 4 10 2003 Trains 62 S32_3207 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10176 22 64 6 1408 2003-11-06 00:00:00 Shipped 4 11 2003 Trains 62 S32_3207 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10184 48 50.95 1 2445.6 2003-11-14 00:00:00 Shipped 4 11 2003 Trains 62 S32_3207 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Small +10195 33 54.68 1 1804.44 2003-11-25 00:00:00 Shipped 4 11 2003 Trains 62 S32_3207 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10207 45 56.55 2 2544.75 2003-12-09 00:00:00 Shipped 4 12 2003 Trains 62 S32_3207 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10220 20 52.82 6 1056.4 2004-02-12 00:00:00 Shipped 1 2 2004 Trains 62 S32_3207 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10230 46 60.9 4 2801.4 2004-03-15 00:00:00 Shipped 1 3 2004 Trains 62 S32_3207 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10247 40 49.71 6 1988.4 2004-05-05 00:00:00 Shipped 2 5 2004 Trains 62 S32_3207 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Small +10272 45 64.63 6 2908.35 2004-07-20 00:00:00 Shipped 3 7 2004 Trains 62 S32_3207 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10282 36 59.65 9 2147.4 2004-08-20 00:00:00 Shipped 3 8 2004 Trains 62 S32_3207 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10292 31 67.73 3 2099.63 2004-09-08 00:00:00 Shipped 3 9 2004 Trains 62 S32_3207 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10306 46 50.33 17 2315.18 2004-10-14 00:00:00 Shipped 4 10 2004 Trains 62 S32_3207 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10314 35 66.49 9 2327.15 2004-10-22 00:00:00 Shipped 4 10 2004 Trains 62 S32_3207 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10325 28 100 2 5377.4 2004-11-05 00:00:00 Shipped 4 11 2004 Trains 62 S32_3207 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10336 31 84.71 9 2626.01 2004-11-20 00:00:00 Shipped 4 11 2004 Trains 62 S32_3207 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Small +10350 27 100 14 4406.4 2004-12-02 00:00:00 Shipped 4 12 2004 Trains 62 S32_3207 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10359 22 100 1 4301.22 2004-12-15 00:00:00 Shipped 4 12 2004 Trains 62 S32_3207 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10371 30 99.55 11 2986.5 2005-01-23 00:00:00 Shipped 1 1 2005 Trains 62 S32_3207 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10383 44 36.07 8 1587.08 2005-02-22 00:00:00 Shipped 1 2 2005 Trains 62 S32_3207 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10394 30 60.28 4 1808.4 2005-03-15 00:00:00 Shipped 1 3 2005 Trains 62 S32_3207 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10413 24 49.71 6 1193.04 2005-05-05 00:00:00 Shipped 2 5 2005 Trains 62 S32_3207 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Small +10103 45 75.63 7 3403.35 2003-01-29 00:00:00 Shipped 1 1 2003 Trucks and Buses 64 S32_3522 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10113 23 68.52 1 1575.96 2003-03-26 00:00:00 Shipped 1 3 2003 Trucks and Buses 64 S32_3522 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10126 26 62.7 7 1630.2 2003-05-28 00:00:00 Shipped 2 5 2003 Trucks and Buses 64 S32_3522 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10140 28 60.76 7 1701.28 2003-07-24 00:00:00 Shipped 3 7 2003 Trucks and Buses 64 S32_3522 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10150 49 58.18 4 2850.82 2003-09-19 00:00:00 Shipped 3 9 2003 Trucks and Buses 64 S32_3522 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10164 49 54.94 5 2692.06 2003-10-21 00:00:00 Resolved 4 10 2003 Trucks and Buses 64 S32_3522 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Small +10175 29 74.98 12 2174.42 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 64 S32_3522 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10183 49 64.64 4 3167.36 2003-11-13 00:00:00 Shipped 4 11 2003 Trucks and Buses 64 S32_3522 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10194 39 54.94 7 2142.66 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 64 S32_3522 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10206 36 58.82 2 2117.52 2003-12-05 00:00:00 Shipped 4 12 2003 Trucks and Buses 64 S32_3522 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10217 39 62.05 7 2419.95 2004-02-04 00:00:00 Shipped 1 2 2004 Trucks and Buses 64 S32_3522 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10229 30 73.04 12 2191.2 2004-03-11 00:00:00 Shipped 1 3 2004 Trucks and Buses 64 S32_3522 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10245 44 69.16 5 3043.04 2004-05-04 00:00:00 Shipped 2 5 2004 Trucks and Buses 64 S32_3522 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10258 20 61.41 2 1228.2 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 64 S32_3522 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10270 21 63.35 5 1330.35 2004-07-19 00:00:00 Shipped 3 7 2004 Trucks and Buses 64 S32_3522 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10281 36 77.57 12 2792.52 2004-08-19 00:00:00 Shipped 3 8 2004 Trucks and Buses 64 S32_3522 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 32 71.75 7 2296 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 64 S32_3522 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10304 36 73.04 2 2629.44 2004-10-11 00:00:00 Shipped 4 10 2004 Trucks and Buses 64 S32_3522 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Small +10313 34 56.24 10 1912.16 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 64 S32_3522 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10324 48 100 4 8209.44 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 64 S32_3522 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Large +10333 33 73.69 4 2431.77 2004-11-18 00:00:00 Shipped 4 11 2004 Trucks and Buses 64 S32_3522 Mini Wheels Co. 6505555787 5557 North Pendale Street \N San Francisco CA \N USA \N Murphy Julie Small +10348 31 100 5 3139.99 2004-11-01 00:00:00 Shipped 4 11 2004 Trucks and Buses 64 S32_3522 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10358 36 100 2 5669.64 2004-12-10 00:00:00 Shipped 4 12 2004 Trucks and Buses 64 S32_3522 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10370 25 100 3 3160.25 2005-01-20 00:00:00 Shipped 1 1 2005 Trucks and Buses 64 S32_3522 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10382 48 100 8 6799.68 2005-02-17 00:00:00 Shipped 1 2 2005 Trucks and Buses 64 S32_3522 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10411 27 69.16 5 1867.32 2005-05-01 00:00:00 Shipped 2 5 2005 Trucks and Buses 64 S32_3522 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10424 44 61.41 2 2702.04 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 64 S32_3522 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10106 33 72.92 5 2406.36 2003-02-17 00:00:00 Shipped 1 2 2003 Vintage Cars 68 S32_4289 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10120 29 72.23 11 2094.67 2003-04-29 00:00:00 Shipped 2 4 2003 Vintage Cars 68 S32_4289 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10133 49 57.1 6 2797.9 2003-06-27 00:00:00 Shipped 2 6 2003 Vintage Cars 68 S32_4289 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10144 20 81.86 1 1637.2 2003-08-13 00:00:00 Shipped 3 8 2003 Vintage Cars 68 S32_4289 Royale Belge (071) 23 67 2555 Boulevard Tirou, 255 \N Charleroi \N B-6000 Belgium EMEA Cartrain Pascale Small +10168 31 73.61 12 2281.91 2003-10-28 00:00:00 Shipped 4 10 2003 Vintage Cars 68 S32_4289 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10210 39 59.16 10 2307.24 2004-01-12 00:00:00 Shipped 1 1 2004 Vintage Cars 68 S32_4289 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 20 66.04 12 1320.8 2004-02-20 00:00:00 Shipped 1 2 2004 Vintage Cars 68 S32_4289 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10235 34 77.73 6 2642.82 2004-04-02 00:00:00 Shipped 2 4 2004 Vintage Cars 68 S32_4289 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 50 61.22 7 3061 2004-05-11 00:00:00 Shipped 2 5 2004 Vintage Cars 68 S32_4289 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10262 40 79.11 2 3164.4 2004-06-24 00:00:00 Cancelled 2 6 2004 Vintage Cars 68 S32_4289 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10275 28 63.97 12 1791.16 2004-07-23 00:00:00 Shipped 3 7 2004 Vintage Cars 68 S32_4289 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10284 50 81.86 4 4093 2004-08-21 00:00:00 Shipped 3 8 2004 Vintage Cars 68 S32_4289 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10297 28 79.8 7 2234.4 2004-09-16 00:00:00 Shipped 3 9 2004 Vintage Cars 68 S32_4289 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10308 46 66.04 10 3037.84 2004-10-15 00:00:00 Shipped 4 10 2004 Vintage Cars 68 S32_4289 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10316 24 59.16 2 1419.84 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 68 S32_4289 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 24 81.17 5 1948.08 2004-11-12 00:00:00 Shipped 4 11 2004 Vintage Cars 68 S32_4289 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10340 39 59.16 3 2307.24 2004-11-24 00:00:00 Shipped 4 11 2004 Vintage Cars 68 S32_4289 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10353 40 44.51 7 1780.4 2004-12-04 00:00:00 Shipped 4 12 2004 Vintage Cars 68 S32_4289 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10361 49 72.33 2 3544.17 2004-12-17 00:00:00 Shipped 4 12 2004 Vintage Cars 68 S32_4289 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10375 44 82.26 4 3619.44 2005-02-03 00:00:00 Shipped 1 2 2005 Vintage Cars 68 S32_4289 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10388 35 100 8 3918.95 2005-03-03 00:00:00 Shipped 1 3 2005 Vintage Cars 68 S32_4289 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10398 22 67.41 4 1483.02 2005-03-30 00:00:00 Shipped 1 3 2005 Vintage Cars 68 S32_4289 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 62 77.73 6 4819.26 2005-04-03 00:00:00 On Hold 2 4 2005 Vintage Cars 68 S32_4289 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Medium +10416 26 61.22 7 1591.72 2005-05-10 00:00:00 Shipped 2 5 2005 Vintage Cars 68 S32_4289 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10108 31 100 16 3669.78 2003-03-03 00:00:00 Shipped 1 3 2003 Motorcycles 102 S32_4485 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10121 25 86.74 3 2168.5 2003-05-07 00:00:00 Shipped 2 5 2003 Motorcycles 102 S32_4485 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10135 30 89.8 17 2694 2003-07-02 00:00:00 Shipped 3 7 2003 Motorcycles 102 S32_4485 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10145 27 100 4 3251.34 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 102 S32_4485 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10159 23 100 12 2347.15 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 102 S32_4485 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 34 100 12 3920.88 2003-11-04 00:00:00 Shipped 4 11 2003 Motorcycles 102 S32_4485 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10180 22 100 7 2514.6 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 102 S32_4485 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10190 42 85.72 4 3600.24 2003-11-19 00:00:00 Shipped 4 11 2003 Motorcycles 102 S32_4485 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10211 37 100 12 4040.03 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 102 S32_4485 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10224 30 100 5 3336.9 2004-02-21 00:00:00 Shipped 1 2 2004 Motorcycles 102 S32_4485 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10237 27 100 5 3113.64 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 102 S32_4485 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10252 25 100 9 2832 2004-05-26 00:00:00 Shipped 2 5 2004 Motorcycles 102 S32_4485 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Small +10264 34 97.97 7 3330.98 2004-06-30 00:00:00 Shipped 2 6 2004 Motorcycles 102 S32_4485 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10276 38 100 13 4304.64 2004-08-02 00:00:00 Shipped 3 8 2004 Motorcycles 102 S32_4485 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10285 26 100 4 2600.26 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 102 S32_4485 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Small +10299 38 100 7 4382.16 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 102 S32_4485 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10309 50 84.7 3 4235 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 102 S32_4485 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10319 22 100 8 2626.8 2004-11-03 00:00:00 Shipped 4 11 2004 Motorcycles 102 S32_4485 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Small +10331 32 100 4 5026.56 2004-11-17 00:00:00 Shipped 4 11 2004 Motorcycles 102 S32_4485 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10341 31 71.02 4 2201.62 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 102 S32_4485 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10355 40 100 5 4326.8 2004-12-07 00:00:00 Shipped 4 12 2004 Motorcycles 102 S32_4485 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10365 22 100 3 3425.18 2005-01-07 00:00:00 Shipped 1 1 2005 Motorcycles 102 S32_4485 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10375 41 100 15 4701.88 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 102 S32_4485 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10390 45 48.98 12 2204.1 2005-03-04 00:00:00 Shipped 1 3 2005 Motorcycles 102 S32_4485 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10403 45 100 5 5189.4 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 102 S32_4485 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Medium +10106 39 40.15 6 1565.85 2003-02-17 00:00:00 Shipped 1 2 2003 Vintage Cars 43 S50_1341 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10120 49 50.62 12 2480.38 2003-04-29 00:00:00 Shipped 2 4 2003 Vintage Cars 43 S50_1341 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10133 27 50.19 7 1355.13 2003-06-27 00:00:00 Shipped 2 6 2003 Vintage Cars 43 S50_1341 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10143 34 36.66 1 1246.44 2003-08-10 00:00:00 Shipped 3 8 2003 Vintage Cars 43 S50_1341 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10156 20 41.02 1 820.4 2003-10-08 00:00:00 Shipped 4 10 2003 Vintage Cars 43 S50_1341 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10168 48 51.93 13 2492.64 2003-10-28 00:00:00 Shipped 4 10 2003 Vintage Cars 43 S50_1341 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10199 29 38.4 1 1113.6 2003-12-01 00:00:00 Shipped 4 12 2003 Vintage Cars 43 S50_1341 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Small +10210 43 41.02 11 1763.86 2004-01-12 00:00:00 Shipped 1 1 2004 Vintage Cars 43 S50_1341 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 41 46.26 13 1896.66 2004-02-20 00:00:00 Shipped 1 2 2004 Vintage Cars 43 S50_1341 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10235 41 35.35 7 1449.35 2004-04-02 00:00:00 Shipped 2 4 2004 Vintage Cars 43 S50_1341 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 36 51.93 8 1869.48 2004-05-11 00:00:00 Shipped 2 5 2004 Vintage Cars 43 S50_1341 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10262 49 37.97 3 1860.53 2004-06-24 00:00:00 Cancelled 2 6 2004 Vintage Cars 43 S50_1341 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10275 38 45.39 13 1724.82 2004-07-23 00:00:00 Shipped 3 7 2004 Vintage Cars 43 S50_1341 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10284 33 51.93 5 1713.69 2004-08-21 00:00:00 Shipped 3 8 2004 Vintage Cars 43 S50_1341 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 26 48.44 1 1259.44 2004-09-15 00:00:00 Shipped 3 9 2004 Vintage Cars 43 S50_1341 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10308 47 43.64 11 2051.08 2004-10-15 00:00:00 Shipped 4 10 2004 Vintage Cars 43 S50_1341 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10316 34 47.57 3 1617.38 2004-11-01 00:00:00 Shipped 4 11 2004 Vintage Cars 43 S50_1341 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 34 51.93 7 1765.62 2004-11-12 00:00:00 Shipped 4 11 2004 Vintage Cars 43 S50_1341 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10340 40 50.62 4 2024.8 2004-11-24 00:00:00 Shipped 4 11 2004 Vintage Cars 43 S50_1341 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10353 40 82.21 8 3288.4 2004-12-04 00:00:00 Shipped 4 12 2004 Vintage Cars 43 S50_1341 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10361 33 82.59 3 2725.47 2004-12-17 00:00:00 Shipped 4 12 2004 Vintage Cars 43 S50_1341 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10375 49 65.8 5 3224.2 2005-02-03 00:00:00 Shipped 1 2 2005 Vintage Cars 43 S50_1341 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10388 27 100 1 3211.38 2005-03-03 00:00:00 Shipped 1 3 2005 Vintage Cars 43 S50_1341 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10398 49 36.66 5 1796.34 2005-03-30 00:00:00 Shipped 1 3 2005 Vintage Cars 43 S50_1341 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 56 35.35 7 1979.6 2005-04-03 00:00:00 On Hold 2 4 2005 Vintage Cars 43 S50_1341 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10416 37 51.93 8 1921.41 2005-05-10 00:00:00 Shipped 2 5 2005 Vintage Cars 43 S50_1341 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10104 33 100 7 3705.24 2003-01-31 00:00:00 Shipped 1 1 2003 Trucks and Buses 115 S50_1392 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10115 27 100 3 2843.91 2003-04-04 00:00:00 Shipped 2 4 2003 Trucks and Buses 115 S50_1392 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10127 46 100 9 6176.42 2003-06-03 00:00:00 Shipped 2 6 2003 Trucks and Buses 115 S50_1392 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10141 44 100 3 5500.44 2003-08-01 00:00:00 Shipped 3 8 2003 Trucks and Buses 115 S50_1392 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10151 26 100 1 3220.1 2003-09-21 00:00:00 Shipped 3 9 2003 Trucks and Buses 115 S50_1392 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10165 48 94.92 10 4556.16 2003-10-22 00:00:00 Shipped 4 10 2003 Trucks and Buses 115 S50_1392 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10176 23 100 9 3114.89 2003-11-06 00:00:00 Shipped 4 11 2003 Trucks and Buses 115 S50_1392 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10184 45 100 4 4948.2 2003-11-14 00:00:00 Shipped 4 11 2003 Trucks and Buses 115 S50_1392 Iberia Gift Imports, Corp. (95) 555 82 82 C/ Romero, 33 \N Sevilla \N 41101 Spain EMEA Roel Jose Pedro Medium +10195 49 100 4 5161.17 2003-11-25 00:00:00 Shipped 4 11 2003 Trucks and Buses 115 S50_1392 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10207 28 94.92 5 2657.76 2003-12-09 00:00:00 Shipped 4 12 2003 Trucks and Buses 115 S50_1392 Diecast Collectables 6175552555 6251 Ingle Ln. \N Boston MA 51003 USA \N Franco Valarie Small +10220 37 100 9 3983.05 2004-02-12 00:00:00 Shipped 1 2 2004 Trucks and Buses 115 S50_1392 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Medium +10230 34 100 7 3974.94 2004-03-15 00:00:00 Shipped 1 3 2004 Trucks and Buses 115 S50_1392 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Medium +10246 22 100 3 2928.42 2004-05-05 00:00:00 Shipped 2 5 2004 Trucks and Buses 115 S50_1392 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10259 29 100 2 3054.57 2004-06-15 00:00:00 Shipped 2 6 2004 Trucks and Buses 115 S50_1392 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Medium +10271 34 98.39 3 3345.26 2004-07-20 00:00:00 Shipped 3 7 2004 Trucks and Buses 115 S50_1392 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10282 38 100 12 4310.72 2004-08-20 00:00:00 Shipped 3 8 2004 Trucks and Buses 115 S50_1392 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10292 41 100 6 4983.14 2004-09-08 00:00:00 Shipped 3 9 2004 Trucks and Buses 115 S50_1392 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10305 42 100 3 4618.32 2004-10-13 00:00:00 Shipped 4 10 2004 Trucks and Buses 115 S50_1392 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10314 28 100 12 3403.12 2004-10-22 00:00:00 Shipped 4 10 2004 Trucks and Buses 115 S50_1392 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Medium +10325 38 100 4 5190.42 2004-11-05 00:00:00 Shipped 4 11 2004 Trucks and Buses 115 S50_1392 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10336 23 100 8 3141.57 2004-11-20 00:00:00 Shipped 4 11 2004 Trucks and Buses 115 S50_1392 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10350 31 71.4 8 2213.4 2004-12-02 00:00:00 Shipped 4 12 2004 Trucks and Buses 115 S50_1392 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10359 46 100 2 4896.7 2004-12-15 00:00:00 Shipped 4 12 2004 Trucks and Buses 115 S50_1392 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10371 48 56.55 10 2714.4 2005-01-23 00:00:00 Shipped 1 1 2005 Trucks and Buses 115 S50_1392 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10383 29 100 13 3087.05 2005-02-22 00:00:00 Shipped 1 2 2005 Trucks and Buses 115 S50_1392 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10395 46 100 4 5692.96 2005-03-17 00:00:00 Shipped 1 3 2005 Trucks and Buses 115 S50_1392 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10412 26 100 3 3460.86 2005-05-03 00:00:00 Shipped 2 5 2005 Trucks and Buses 115 S50_1392 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10425 18 100 2 1895.94 2005-05-31 00:00:00 In Process 2 5 2005 Trucks and Buses 115 S50_1392 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10104 32 53.31 2 1705.92 2003-01-31 00:00:00 Shipped 1 1 2003 Trains 58 S50_1514 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10117 21 49.21 11 1033.41 2003-04-16 00:00:00 Shipped 2 4 2003 Trains 58 S50_1514 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10127 46 69.12 4 3179.52 2003-06-03 00:00:00 Shipped 2 6 2003 Trains 58 S50_1514 Muscle Machine Inc 2125557413 4092 Furth Circle Suite 400 NYC NY 10022 USA \N Young Jeff Medium +10142 42 49.79 14 2091.18 2003-08-08 00:00:00 Shipped 3 8 2003 Trains 58 S50_1514 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10153 31 57.41 13 1779.71 2003-09-28 00:00:00 Shipped 3 9 2003 Trains 58 S50_1514 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10165 38 66.78 5 2537.64 2003-10-22 00:00:00 Shipped 4 10 2003 Trains 58 S50_1514 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10176 38 64.44 4 2448.72 2003-11-06 00:00:00 Shipped 4 11 2003 Trains 58 S50_1514 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10185 20 48.62 15 972.4 2003-11-14 00:00:00 Shipped 4 11 2003 Trains 58 S50_1514 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10196 46 62.09 7 2856.14 2003-11-26 00:00:00 Shipped 4 11 2003 Trains 58 S50_1514 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Small +10208 30 65.61 15 1968.3 2004-01-02 00:00:00 Shipped 1 1 2004 Trains 58 S50_1514 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10220 30 68.54 4 2056.2 2004-02-12 00:00:00 Shipped 1 2 2004 Trains 58 S50_1514 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Small +10230 43 52.14 2 2242.02 2004-03-15 00:00:00 Shipped 1 3 2004 Trains 58 S50_1514 Blauer See Auto, Co. +49 69 66 90 2555 Lyonerstr. 34 \N Frankfurt \N 60528 Germany EMEA Keitel Roland Small +10247 49 63.85 4 3128.65 2004-05-05 00:00:00 Shipped 2 5 2004 Trains 58 S50_1514 Suominen Souveniers +358 9 8045 555 Software Engineering Center, SEC Oy \N Espoo \N FIN-02271 Finland EMEA Suominen Kalle Medium +10272 43 56.82 4 2443.26 2004-07-20 00:00:00 Shipped 3 7 2004 Trains 58 S50_1514 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10282 37 66.78 7 2470.86 2004-08-20 00:00:00 Shipped 3 8 2004 Trains 58 S50_1514 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10292 35 55.07 1 1927.45 2004-09-08 00:00:00 Shipped 3 9 2004 Trains 58 S50_1514 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10306 34 60.34 15 2051.56 2004-10-14 00:00:00 Shipped 4 10 2004 Trains 58 S50_1514 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10314 38 61.51 7 2337.38 2004-10-22 00:00:00 Shipped 4 10 2004 Trains 58 S50_1514 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10325 44 100 7 5932.96 2004-11-05 00:00:00 Shipped 4 11 2004 Trains 58 S50_1514 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10337 21 100 6 2296.77 2004-11-21 00:00:00 Shipped 4 11 2004 Trains 58 S50_1514 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10350 44 100 17 6490.88 2004-12-02 00:00:00 Shipped 4 12 2004 Trains 58 S50_1514 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10359 25 64.93 4 1623.25 2004-12-15 00:00:00 Shipped 4 12 2004 Trains 58 S50_1514 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10372 24 58.58 9 1405.92 2005-01-26 00:00:00 Shipped 1 1 2005 Trains 58 S50_1514 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10383 38 60.06 10 2282.28 2005-02-22 00:00:00 Shipped 1 2 2005 Trains 58 S50_1514 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10395 45 100 3 8977.05 2005-03-17 00:00:00 Shipped 1 3 2005 Trains 58 S50_1514 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Large +10413 51 63.85 4 3256.35 2005-05-05 00:00:00 Shipped 2 5 2005 Trains 58 S50_1514 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10108 34 82.99 14 2821.66 2003-03-03 00:00:00 Shipped 1 3 2003 Motorcycles 81 S50_4713 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10121 44 74.85 1 3293.4 2003-05-07 00:00:00 Shipped 2 5 2003 Motorcycles 81 S50_4713 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10135 44 96 15 4224 2003-07-02 00:00:00 Shipped 3 7 2003 Motorcycles 81 S50_4713 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10145 38 81.36 2 3091.68 2003-08-25 00:00:00 Shipped 3 8 2003 Motorcycles 81 S50_4713 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Medium +10159 31 71.6 10 2219.6 2003-10-10 00:00:00 Shipped 4 10 2003 Motorcycles 81 S50_4713 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Small +10169 48 80.55 10 3866.4 2003-11-04 00:00:00 Shipped 4 11 2003 Motorcycles 81 S50_4713 Anna's Decorations, Ltd 02 9936 8555 201 Miller Street Level 15 North Sydney NSW 2060 Australia APAC O'Hara Anna Medium +10180 21 93.56 5 1964.76 2003-11-11 00:00:00 Shipped 4 11 2003 Motorcycles 81 S50_4713 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Small +10190 40 66.72 2 2668.8 2003-11-19 00:00:00 Shipped 4 11 2003 Motorcycles 81 S50_4713 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10211 40 80.55 10 3222 2004-01-15 00:00:00 Shipped 1 1 2004 Motorcycles 81 S50_4713 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10224 50 77.29 3 3864.5 2004-02-21 00:00:00 Shipped 1 2 2004 Motorcycles 81 S50_4713 Daedalus Designs Imports 20.16.1555 184, chausse de Tournai \N Lille \N 59000 France EMEA Rance Martine Medium +10237 20 68.34 3 1366.8 2004-04-05 00:00:00 Shipped 2 4 2004 Motorcycles 81 S50_4713 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Small +10252 48 72.41 7 3475.68 2004-05-26 00:00:00 Shipped 2 5 2004 Motorcycles 81 S50_4713 Auto Canal Petit (1) 47.55.6555 25, rue Lauriston \N Paris \N 75016 France EMEA Perrier Dominique Medium +10264 47 89.5 5 4206.5 2004-06-30 00:00:00 Shipped 2 6 2004 Motorcycles 81 S50_4713 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10276 21 70.78 11 1486.38 2004-08-02 00:00:00 Shipped 3 8 2004 Motorcycles 81 S50_4713 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Small +10285 39 78.92 2 3077.88 2004-08-27 00:00:00 Shipped 3 8 2004 Motorcycles 81 S50_4713 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10299 44 80.55 5 3544.2 2004-09-30 00:00:00 Shipped 3 9 2004 Motorcycles 81 S50_4713 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10309 28 88.68 1 2483.04 2004-10-15 00:00:00 Shipped 4 10 2004 Motorcycles 81 S50_4713 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Small +10319 45 77.29 6 3478.05 2004-11-03 00:00:00 Shipped 4 11 2004 Motorcycles 81 S50_4713 Microscale Inc. 2125551957 5290 North Pendale Street Suite 200 NYC NY 10022 USA \N Kuo Kee Medium +10331 20 100 5 3657.8 2004-11-17 00:00:00 Shipped 4 11 2004 Motorcycles 81 S50_4713 Motor Mint Distributors Inc. 2155559857 11328 Douglas Av. \N Philadelphia PA 71270 USA \N Hernandez Rosa Medium +10341 38 100 3 4682.36 2004-11-24 00:00:00 Shipped 4 11 2004 Motorcycles 81 S50_4713 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10356 26 100 4 3937.7 2004-12-09 00:00:00 Shipped 4 12 2004 Motorcycles 81 S50_4713 Lyon Souveniers +33 1 46 62 7555 27 rue du Colonel Pierre Avia \N Paris \N 75508 France EMEA Da Cunha Daniel Medium +10365 44 100 2 4984.32 2005-01-07 00:00:00 Shipped 1 1 2005 Motorcycles 81 S50_4713 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10375 49 100 8 5406.66 2005-02-03 00:00:00 Shipped 1 2 2005 Motorcycles 81 S50_4713 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10390 22 100 13 3491.18 2005-03-04 00:00:00 Shipped 1 3 2005 Motorcycles 81 S50_4713 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10403 31 68.34 3 2118.54 2005-04-08 00:00:00 Shipped 2 4 2005 Motorcycles 81 S50_4713 UK Collectables, Ltd. (171) 555-2282 Berkeley Gardens 12 Brewery \N Liverpool \N WX1 6LT UK EMEA Devon Elizabeth Small +10105 41 70.67 5 2897.47 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 66 S700_1138 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10119 25 76.67 14 1916.75 2003-04-28 00:00:00 Shipped 2 4 2003 Ships 66 S700_1138 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10129 31 60 5 1860 2003-06-12 00:00:00 Shipped 2 6 2003 Ships 66 S700_1138 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10142 41 64 2 2624 2003-08-08 00:00:00 Shipped 3 8 2003 Ships 66 S700_1138 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10153 43 64.67 1 2780.81 2003-09-28 00:00:00 Shipped 3 9 2003 Ships 66 S700_1138 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10167 43 75.34 12 3239.62 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 66 S700_1138 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10177 24 76 3 1824 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 66 S700_1138 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Small +10185 21 54 3 1134 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 66 S700_1138 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10197 23 64.67 9 1487.41 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 66 S700_1138 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10208 38 74.67 3 2837.46 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 66 S700_1138 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10222 31 62.67 15 1942.77 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 66 S700_1138 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10233 36 70.67 3 2544.12 2004-03-29 00:00:00 Shipped 1 3 2004 Ships 66 S700_1138 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10248 36 71.34 6 2568.24 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 66 S700_1138 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10261 34 62 4 2108 2004-06-17 00:00:00 Shipped 2 6 2004 Ships 66 S700_1138 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10273 21 65.34 7 1372.14 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 66 S700_1138 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 45 78.67 9 3540.15 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 66 S700_1138 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10295 26 75.34 4 1958.84 2004-09-10 00:00:00 Shipped 3 9 2004 Ships 66 S700_1138 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10306 50 54 3 2700 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 66 S700_1138 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10315 41 62 2 2542 2004-10-29 00:00:00 Shipped 4 10 2004 Ships 66 S700_1138 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10326 39 60 1 2340 2004-11-09 00:00:00 Shipped 4 11 2004 Ships 66 S700_1138 Volvo Model Replicas, Co 0921-12 3555 Berguvsv„gen 8 \N Lule \N S-958 22 Sweden EMEA Berglund Christina Small +10339 22 100 5 2816.44 2004-11-23 00:00:00 Shipped 4 11 2004 Ships 66 S700_1138 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10350 46 76.67 11 3526.82 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 66 S700_1138 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10373 44 100 14 4627.92 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 66 S700_1138 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10385 25 77.34 1 1933.5 2005-02-28 00:00:00 Shipped 1 2 2005 Ships 66 S700_1138 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10396 39 66.67 1 2600.13 2005-03-23 00:00:00 Shipped 1 3 2005 Ships 66 S700_1138 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10414 37 71.34 6 2639.58 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 66 S700_1138 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10106 31 100 7 3312.97 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 91 S700_1691 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10120 47 82.21 13 3863.87 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 91 S700_1691 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10133 24 77.64 8 1863.36 2003-06-27 00:00:00 Shipped 2 6 2003 Planes 91 S700_1691 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10143 36 100 2 3945.96 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 91 S700_1691 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10156 48 100 2 4954.08 2003-10-08 00:00:00 Shipped 4 10 2003 Planes 91 S700_1691 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10168 28 98.65 14 2762.2 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 91 S700_1691 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Small +10199 48 83.12 2 3989.76 2003-12-01 00:00:00 Shipped 4 12 2003 Planes 91 S700_1691 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10210 21 78.55 12 1649.55 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 91 S700_1691 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 25 100 14 2534.75 2004-02-20 00:00:00 Shipped 1 2 2004 Planes 91 S700_1691 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10235 25 100 8 2580.25 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 91 S700_1691 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 31 91.34 9 2831.54 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 91 S700_1691 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10262 40 84.03 4 3361.2 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 91 S700_1691 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10275 32 89.51 14 2864.32 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 91 S700_1691 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10284 24 83.12 6 1994.88 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 91 S700_1691 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 42 100 2 4296.6 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 91 S700_1691 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Medium +10308 21 100 12 2224.95 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 91 S700_1691 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10316 34 82.21 4 2795.14 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 91 S700_1691 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 27 100 8 2762.1 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 91 S700_1691 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10340 30 88.6 5 2658 2004-11-24 00:00:00 Shipped 4 11 2004 Planes 91 S700_1691 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10353 39 100 9 5043.87 2004-12-04 00:00:00 Shipped 4 12 2004 Planes 91 S700_1691 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10361 20 60.54 4 1210.8 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 91 S700_1691 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10375 37 81.87 6 3029.19 2005-02-03 00:00:00 Shipped 1 2 2005 Planes 91 S700_1691 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10388 46 100 2 10066.6 2005-03-03 00:00:00 Shipped 1 3 2005 Planes 91 S700_1691 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Large +10398 47 87.69 6 4121.43 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 91 S700_1691 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10401 11 100 8 1135.31 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 91 S700_1691 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10416 23 91.34 9 2100.82 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 91 S700_1691 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10105 29 70.15 12 2034.35 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 86 S700_1938 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10117 38 79.68 6 3027.84 2003-04-16 00:00:00 Shipped 2 4 2003 Ships 86 S700_1938 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10128 32 97 3 3104 2003-06-06 00:00:00 Shipped 2 6 2003 Ships 86 S700_1938 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10142 43 84.01 9 3612.43 2003-08-08 00:00:00 Shipped 3 8 2003 Ships 86 S700_1938 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10153 31 87.48 8 2711.88 2003-09-28 00:00:00 Shipped 3 9 2003 Ships 86 S700_1938 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10166 29 100 3 3013.97 2003-10-21 00:00:00 Shipped 4 10 2003 Ships 86 S700_1938 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Medium +10177 31 88.34 10 2738.54 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 86 S700_1938 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Small +10185 30 94.4 10 2832 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 86 S700_1938 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10196 50 94.4 2 4720 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 86 S700_1938 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10208 40 80.55 10 3222 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 86 S700_1938 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10221 23 97 4 2231 2004-02-18 00:00:00 Shipped 1 2 2004 Ships 86 S700_1938 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10232 26 88.34 7 2296.84 2004-03-20 00:00:00 Shipped 1 3 2004 Ships 86 S700_1938 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10248 40 100 13 4157.2 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 86 S700_1938 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10273 21 100 14 2146.2 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 86 S700_1938 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10282 43 86.61 2 3724.23 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 86 S700_1938 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10293 29 71.89 5 2084.81 2004-09-09 00:00:00 Shipped 3 9 2004 Ships 86 S700_1938 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10306 38 91.81 10 3488.78 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 86 S700_1938 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10314 23 76.22 2 1753.06 2004-10-22 00:00:00 Shipped 4 10 2004 Ships 86 S700_1938 Heintze Collectables 86 21 3555 Smagsloget 45 \N Aaarhus \N 8200 Denmark EMEA Ibsen Palle Small +10327 20 100 7 3469.2 2004-11-10 00:00:00 Resolved 4 11 2004 Ships 86 S700_1938 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10337 36 70.3 9 2530.8 2004-11-21 00:00:00 Shipped 4 11 2004 Ships 86 S700_1938 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10350 28 100 4 2924.32 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 86 S700_1938 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10372 44 100 2 4496.8 2005-01-26 00:00:00 Shipped 1 1 2005 Ships 86 S700_1938 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10384 49 100 1 6397.44 2005-02-23 00:00:00 Shipped 1 2 2005 Ships 86 S700_1938 Corporate Gift Ideas Co. 6505551386 7734 Strong St. \N San Francisco CA \N USA \N Brown Julie Medium +10397 32 80.55 5 2577.6 2005-03-28 00:00:00 Shipped 1 3 2005 Ships 86 S700_1938 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10414 34 100 13 3533.62 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 86 S700_1938 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10106 30 100 16 3177.3 2003-02-17 00:00:00 Shipped 1 2 2003 Ships 90 S700_2047 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10119 29 94.14 7 2730.06 2003-04-28 00:00:00 Shipped 2 4 2003 Ships 90 S700_2047 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10131 22 85.99 8 1891.78 2003-06-16 00:00:00 Shipped 2 6 2003 Ships 90 S700_2047 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10143 26 100 11 2612.48 2003-08-10 00:00:00 Shipped 3 8 2003 Ships 90 S700_2047 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 32 91.43 9 2925.76 2003-10-06 00:00:00 Shipped 4 10 2003 Ships 90 S700_2047 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10167 29 100 5 2940.02 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 90 S700_2047 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10178 34 96.86 8 3293.24 2003-11-08 00:00:00 Shipped 4 11 2003 Ships 90 S700_2047 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10186 24 99.57 5 2389.68 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 90 S700_2047 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10197 24 90.52 2 2172.48 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 90 S700_2047 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10209 33 88.71 4 2927.43 2004-01-09 00:00:00 Shipped 1 1 2004 Ships 90 S700_2047 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10222 26 100 8 2659.54 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 90 S700_2047 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10249 40 95.95 4 3838 2004-05-08 00:00:00 Shipped 2 5 2004 Ships 90 S700_2047 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Medium +10262 44 94.14 13 4142.16 2004-06-24 00:00:00 Cancelled 2 6 2004 Ships 90 S700_2047 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10274 24 90.52 5 2172.48 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 90 S700_2047 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10283 20 94.14 2 1882.8 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 90 S700_2047 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10296 34 100 11 3477.86 2004-09-15 00:00:00 Shipped 3 9 2004 Ships 90 S700_2047 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Medium +10307 34 97.76 5 3323.84 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 90 S700_2047 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Medium +10316 45 93.24 13 4195.8 2004-11-01 00:00:00 Shipped 4 11 2004 Ships 90 S700_2047 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10328 41 100 9 4156.58 2004-11-12 00:00:00 Shipped 4 11 2004 Ships 90 S700_2047 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10339 55 71.25 15 3918.75 2004-11-23 00:00:00 Shipped 4 11 2004 Ships 90 S700_2047 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10352 23 100 3 2352.67 2004-12-03 00:00:00 Shipped 4 12 2004 Ships 90 S700_2047 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Small +10361 24 45.39 14 1089.36 2004-12-17 00:00:00 Shipped 4 12 2004 Ships 90 S700_2047 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10373 32 84.41 15 2701.12 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 90 S700_2047 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 29 85.76 13 2487.04 2005-03-01 00:00:00 Resolved 1 3 2005 Ships 90 S700_2047 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10398 36 100 7 3910.32 2005-03-30 00:00:00 Shipped 1 3 2005 Ships 90 S700_2047 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10400 46 87.8 5 4038.8 2005-04-01 00:00:00 Shipped 2 4 2005 Ships 90 S700_2047 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10415 32 95.95 4 3070.4 2005-05-09 00:00:00 Disputed 2 5 2005 Ships 90 S700_2047 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Medium +10106 34 100 9 3763.46 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 99 S700_2466 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10120 24 100 15 2584.8 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 99 S700_2466 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10131 40 100 1 4427.6 2003-06-16 00:00:00 Shipped 2 6 2003 Planes 99 S700_2466 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10143 26 82.77 4 2152.02 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 99 S700_2466 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 20 100 2 2353.4 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 99 S700_2466 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10168 31 100 16 3431.39 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 99 S700_2466 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10178 22 87.75 1 1930.5 2003-11-08 00:00:00 Shipped 4 11 2003 Planes 99 S700_2466 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10198 42 100 1 4774.56 2003-11-27 00:00:00 Shipped 4 11 2003 Planes 99 S700_2466 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Medium +10210 26 99.72 14 2592.72 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 99 S700_2466 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10222 37 87.75 1 3246.75 2004-02-19 00:00:00 Shipped 1 2 2004 Planes 99 S700_2466 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10235 38 88.75 10 3372.5 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 99 S700_2466 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10250 35 100 11 3909.15 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 99 S700_2466 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10262 33 90.75 6 2994.75 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 99 S700_2466 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10275 39 100 16 4472.52 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 99 S700_2466 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10284 45 100 8 4576.95 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 99 S700_2466 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Medium +10296 24 100 4 2441.04 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 99 S700_2466 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10308 35 88.75 14 3106.25 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 99 S700_2466 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10316 23 100 6 2706.41 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 99 S700_2466 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 37 100 10 4021.53 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 99 S700_2466 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10340 55 87.75 7 4826.25 2004-11-24 00:00:00 Shipped 4 11 2004 Planes 99 S700_2466 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10352 49 100 2 4935.28 2004-12-03 00:00:00 Shipped 4 12 2004 Planes 99 S700_2466 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Medium +10361 26 100 9 2754.7 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 99 S700_2466 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10375 33 100 1 3856.71 2005-02-03 00:00:00 Shipped 1 2 2005 Planes 99 S700_2466 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10386 37 83.84 14 3102.08 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 99 S700_2466 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 22 86.76 8 1908.72 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 99 S700_2466 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 85 88.75 10 7543.75 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 99 S700_2466 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Large +10416 22 100 11 2457.18 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 99 S700_2466 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10105 31 65.77 3 2038.87 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 72 S700_2610 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10119 38 65.77 12 2499.26 2003-04-28 00:00:00 Shipped 2 4 2003 Ships 72 S700_2610 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10129 45 85.29 3 3838.05 2003-06-12 00:00:00 Shipped 2 6 2003 Ships 72 S700_2610 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10143 31 85.29 16 2643.99 2003-08-10 00:00:00 Shipped 3 8 2003 Ships 72 S700_2610 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10154 36 64.33 1 2315.88 2003-10-02 00:00:00 Shipped 4 10 2003 Ships 72 S700_2610 Boards & Toys Co. 3105552373 4097 Douglas Av. \N Glendale CA 92561 USA \N Young Leslie Small +10167 46 70.11 10 3225.06 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 72 S700_2610 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10177 32 76.62 1 2451.84 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 72 S700_2610 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Small +10185 39 57.82 1 2254.98 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 72 S700_2610 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10197 50 78.79 7 3939.5 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 72 S700_2610 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10208 46 74.45 1 3424.7 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 72 S700_2610 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10222 36 80.95 13 2914.2 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 72 S700_2610 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10233 29 82.4 1 2389.6 2004-03-29 00:00:00 Shipped 1 3 2004 Ships 72 S700_2610 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10248 32 75.89 4 2428.48 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 72 S700_2610 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10261 44 68.67 2 3021.48 2004-06-17 00:00:00 Shipped 2 6 2004 Ships 72 S700_2610 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10273 42 62.16 5 2610.72 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 72 S700_2610 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 47 65.77 7 3091.19 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 72 S700_2610 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10295 44 58.55 2 2576.2 2004-09-10 00:00:00 Shipped 3 9 2004 Ships 72 S700_2610 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10306 43 75.17 1 3232.31 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 72 S700_2610 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10316 48 74.45 18 3573.6 2004-11-01 00:00:00 Shipped 4 11 2004 Ships 72 S700_2610 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10327 21 96.31 1 2022.51 2004-11-10 00:00:00 Resolved 4 11 2004 Ships 72 S700_2610 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10339 50 74.35 9 3717.5 2004-11-23 00:00:00 Shipped 4 11 2004 Ships 72 S700_2610 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10350 29 75.35 12 2185.15 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 72 S700_2610 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10373 41 70.33 16 2883.53 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 72 S700_2610 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 37 100 10 5017.57 2005-03-01 00:00:00 Resolved 1 3 2005 Ships 72 S700_2610 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10397 22 66.5 4 1463 2005-03-28 00:00:00 Shipped 1 3 2005 Ships 72 S700_2610 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10414 31 75.89 4 2352.59 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 72 S700_2610 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10103 42 100 6 4460.82 2003-01-29 00:00:00 Shipped 1 1 2003 Classic Cars 101 S700_2824 Baane Mini Imports 07-98 9555 Erling Skakkes gate 78 \N Stavern \N 4110 Norway EMEA Bergulfsen Jonas Medium +10114 42 100 10 4758.18 2003-04-01 00:00:00 Shipped 2 4 2003 Classic Cars 101 S700_2824 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Medium +10126 45 100 6 4597.2 2003-05-28 00:00:00 Shipped 2 5 2003 Classic Cars 101 S700_2824 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Medium +10140 36 100 6 4114.8 2003-07-24 00:00:00 Shipped 3 7 2003 Classic Cars 101 S700_2824 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10150 20 100 3 2104 2003-09-19 00:00:00 Shipped 3 9 2003 Classic Cars 101 S700_2824 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10164 39 81.93 4 3195.27 2003-10-21 00:00:00 Resolved 4 10 2003 Classic Cars 101 S700_2824 Mini Auto Werke 7675-3555 Kirchgasse 6 \N Graz \N 8010 Austria EMEA Mendel Roland Medium +10175 42 85.98 11 3611.16 2003-11-06 00:00:00 Shipped 4 11 2003 Classic Cars 101 S700_2824 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10183 23 86.99 3 2000.77 2003-11-13 00:00:00 Shipped 4 11 2003 Classic Cars 101 S700_2824 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10194 26 89.01 6 2314.26 2003-11-25 00:00:00 Shipped 4 11 2003 Classic Cars 101 S700_2824 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10206 33 100 1 3871.89 2003-12-05 00:00:00 Shipped 4 12 2003 Classic Cars 101 S700_2824 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Medium +10217 31 88 6 2728 2004-02-04 00:00:00 Shipped 1 2 2004 Classic Cars 101 S700_2824 Handji Gifts& Co +65 224 1555 Village Close - 106 Linden Road Sandown 2nd Floor Singapore \N 69045 Singapore APAC Victorino Wendy Small +10229 50 100 11 5614 2004-03-11 00:00:00 Shipped 1 3 2004 Classic Cars 101 S700_2824 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10245 44 100 4 4628.8 2004-05-04 00:00:00 Shipped 2 5 2004 Classic Cars 101 S700_2824 Super Scale Inc. 2035559545 567 North Pendale Street \N New Haven CT 97823 USA \N Murphy Leslie Medium +10258 45 80.92 1 3641.4 2004-06-15 00:00:00 Shipped 2 6 2004 Classic Cars 101 S700_2824 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Medium +10270 46 88 4 4048 2004-07-19 00:00:00 Shipped 3 7 2004 Classic Cars 101 S700_2824 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10281 27 85.98 11 2321.46 2004-08-19 00:00:00 Shipped 3 8 2004 Classic Cars 101 S700_2824 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Small +10291 28 100 6 3256.96 2004-09-08 00:00:00 Shipped 3 9 2004 Classic Cars 101 S700_2824 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10304 40 100 1 4208 2004-10-11 00:00:00 Shipped 4 10 2004 Classic Cars 101 S700_2824 Auto Assoc. & Cie. 30.59.8555 67, avenue de l'Europe \N Versailles \N 78000 France EMEA Tonini Daniel Medium +10313 30 99.13 9 2973.9 2004-10-22 00:00:00 Shipped 4 10 2004 Classic Cars 101 S700_2824 Canadian Gift Exchange Network (604) 555-3392 1900 Oak St. \N Vancouver BC V3F 2K1 Canada \N Tannamuri Yoshi Small +10324 34 100 5 4248.3 2004-11-05 00:00:00 Shipped 4 11 2004 Classic Cars 101 S700_2824 Vitachrome Inc. 2125551500 2678 Kingston Rd. Suite 101 NYC NY 10022 USA \N Frick Michael Medium +10336 46 100 2 9558.8 2004-11-20 00:00:00 Shipped 4 11 2004 Classic Cars 101 S700_2824 La Corne D'abondance, Co. (1) 42.34.2555 265, boulevard Charonne \N Paris \N 75012 France EMEA Bertrand Marie Large +10348 32 82.83 7 2650.56 2004-11-01 00:00:00 Shipped 4 11 2004 Classic Cars 101 S700_2824 Corrida Auto Replicas, Ltd (91) 555 22 82 C/ Araquil, 67 \N Madrid \N 28023 Spain EMEA Sommer Mart¡n Small +10358 27 100 3 3761.37 2004-12-10 00:00:00 Shipped 4 12 2004 Classic Cars 101 S700_2824 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10371 34 100 3 4301.34 2005-01-23 00:00:00 Shipped 1 1 2005 Classic Cars 101 S700_2824 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10382 34 54.84 9 1864.56 2005-02-17 00:00:00 Shipped 1 2 2005 Classic Cars 101 S700_2824 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10411 34 100 4 3576.8 2005-05-01 00:00:00 Shipped 2 5 2005 Classic Cars 101 S700_2824 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10424 46 80.92 1 3722.32 2005-05-31 00:00:00 In Process 2 5 2005 Classic Cars 101 S700_2824 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10106 32 100 1 3986.56 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 118 S700_2834 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10120 24 100 7 3417.12 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 118 S700_2834 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10133 27 99.67 2 2691.09 2003-06-27 00:00:00 Shipped 2 6 2003 Planes 118 S700_2834 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10145 20 100 13 2752.6 2003-08-25 00:00:00 Shipped 3 8 2003 Planes 118 S700_2834 Toys4GrownUps.com 6265557265 78934 Hillside Dr. \N Pasadena CA 90003 USA \N Young Julie Small +10168 36 100 8 4527.72 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 118 S700_2834 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10188 29 100 8 3957.05 2003-11-18 00:00:00 Shipped 4 11 2003 Planes 118 S700_2834 Herkku Gifts +47 2267 3215 Drammen 121, PR 744 Sentrum \N Bergen \N N 5804 Norway EMEA Oeztan Veysel Medium +10210 25 100 6 2818 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 118 S700_2834 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 29 100 8 3199.86 2004-02-20 00:00:00 Shipped 1 2 2004 Planes 118 S700_2834 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10235 25 96.11 2 2402.75 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 118 S700_2834 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 44 100 3 6055.72 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 118 S700_2834 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Medium +10263 47 100 9 5465.16 2004-06-28 00:00:00 Shipped 2 6 2004 Planes 118 S700_2834 Gift Depot Inc. 2035552570 25593 South Bay Ln. \N Bridgewater CT 97562 USA \N King Julie Medium +10275 48 100 8 6378.72 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 118 S700_2834 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10285 45 100 13 5392.8 2004-08-27 00:00:00 Shipped 3 8 2004 Planes 118 S700_2834 Marta's Replicas Co. 6175558555 39323 Spinnaker Dr. \N Cambridge MA 51247 USA \N Hernandez Marta Medium +10297 35 100 3 3986.5 2004-09-16 00:00:00 Shipped 3 9 2004 Planes 118 S700_2834 Clover Collections, Co. +353 1862 1555 25 Maiden Lane Floor No. 4 Dublin \N 2 Ireland EMEA Cassidy Dean Medium +10308 31 100 6 4009.23 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 118 S700_2834 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Medium +10318 50 100 8 7119 2004-11-02 00:00:00 Shipped 4 11 2004 Planes 118 S700_2834 Diecast Classics Inc. 2155551555 7586 Pompton St. \N Allentown PA 70267 USA \N Yu Kyung Large +10328 33 100 11 4072.2 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 118 S700_2834 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10340 29 100 6 4094.51 2004-11-24 00:00:00 Shipped 4 11 2004 Planes 118 S700_2834 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10353 48 68.8 4 3302.4 2004-12-04 00:00:00 Shipped 4 12 2004 Planes 118 S700_2834 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10361 44 72.42 5 3186.48 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 118 S700_2834 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10375 25 66.73 10 1668.25 2005-02-03 00:00:00 Shipped 1 2 2005 Planes 118 S700_2834 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10388 50 100 3 7154.5 2005-03-03 00:00:00 Shipped 1 3 2005 Planes 118 S700_2834 FunGiftIdeas.com 5085552555 1785 First Street \N New Bedford MA 50553 USA \N Benitez Violeta Large +10398 23 100 9 2810.83 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 118 S700_2834 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 21 96.11 2 2018.31 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 118 S700_2834 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10416 41 100 3 5642.83 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 118 S700_2834 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Medium +10106 44 74.4 8 3273.6 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 80 S700_3167 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10120 43 76 14 3268 2003-04-29 00:00:00 Shipped 2 4 2003 Planes 80 S700_3167 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Medium +10143 28 96 3 2688 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 80 S700_3167 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 43 86.4 1 3715.2 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 80 S700_3167 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10168 48 96 15 4608 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 80 S700_3167 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10199 38 82.4 3 3131.2 2003-12-01 00:00:00 Shipped 4 12 2003 Planes 80 S700_3167 West Coast Collectables Co. 3105553722 3675 Furth Circle \N Burbank CA 94019 USA \N Thompson Steve Medium +10210 31 86.4 13 2678.4 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 80 S700_3167 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10223 26 67.2 15 1747.2 2004-02-20 00:00:00 Shipped 1 2 2004 Planes 80 S700_3167 Australian Collectors, Co. 03 9520 4555 636 St Kilda Road Level 3 Melbourne Victoria 3004 Australia APAC Ferguson Peter Small +10235 32 92 9 2944 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 80 S700_3167 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 44 67.2 10 2956.8 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 80 S700_3167 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10262 27 76 5 2052 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 80 S700_3167 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10275 43 73.6 15 3164.8 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 80 S700_3167 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10284 25 69.6 7 1740 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 80 S700_3167 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 22 80.8 3 1777.6 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 80 S700_3167 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10308 21 87.2 13 1831.2 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 80 S700_3167 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10316 48 75.2 5 3609.6 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 80 S700_3167 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10328 33 64 13 2112 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 80 S700_3167 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10341 34 100 5 3644.12 2004-11-24 00:00:00 Shipped 4 11 2004 Planes 80 S700_3167 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Medium +10353 43 81.95 6 3523.85 2004-12-04 00:00:00 Shipped 4 12 2004 Planes 80 S700_3167 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Medium +10361 44 100 10 5001.92 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 80 S700_3167 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10375 44 100 11 5208.72 2005-02-03 00:00:00 Shipped 1 2 2005 Planes 80 S700_3167 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10386 32 94.34 17 3018.88 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 80 S700_3167 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 29 65.6 10 1902.4 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 80 S700_3167 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10401 77 92 9 7084 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 80 S700_3167 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Large +10416 39 67.2 10 2620.8 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 80 S700_3167 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10105 39 81.14 6 3164.46 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 100 S700_3505 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10118 36 100 1 4219.2 2003-04-21 00:00:00 Shipped 2 4 2003 Ships 100 S700_3505 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10129 42 91.15 6 3828.3 2003-06-12 00:00:00 Shipped 2 6 2003 Ships 100 S700_3505 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Medium +10142 21 100 3 2334.99 2003-08-08 00:00:00 Shipped 3 8 2003 Ships 100 S700_3505 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10153 50 88.15 2 4407.5 2003-09-28 00:00:00 Shipped 3 9 2003 Ships 100 S700_3505 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10167 24 100 13 2812.8 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 100 S700_3505 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10177 44 92.16 4 4055.04 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 100 S700_3505 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Medium +10185 37 100 4 3891.66 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 100 S700_3505 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Medium +10197 27 92.16 10 2488.32 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 100 S700_3505 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10208 37 100 4 4447.4 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 100 S700_3505 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Medium +10222 38 100 16 4187.22 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 100 S700_3505 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10232 48 96.16 1 4615.68 2004-03-20 00:00:00 Shipped 1 3 2004 Ships 100 S700_3505 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Medium +10248 30 100 7 3245.4 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 100 S700_3505 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10261 25 88.15 5 2203.75 2004-06-17 00:00:00 Shipped 2 6 2004 Ships 100 S700_3505 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10273 40 86.15 8 3446 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 100 S700_3505 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Medium +10283 22 88.15 10 1939.3 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 100 S700_3505 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10295 34 100 5 3473.78 2004-09-10 00:00:00 Shipped 3 9 2004 Ships 100 S700_3505 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10306 32 90.15 4 2884.8 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 100 S700_3505 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10315 31 86.15 3 2670.65 2004-10-29 00:00:00 Shipped 4 10 2004 Ships 100 S700_3505 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10327 43 80 2 3440 2004-11-10 00:00:00 Resolved 4 11 2004 Ships 100 S700_3505 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10337 31 89.38 1 2770.78 2004-11-21 00:00:00 Shipped 4 11 2004 Ships 100 S700_3505 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10350 31 77.34 13 2397.54 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 100 S700_3505 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10373 34 96.34 2 3275.56 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 100 S700_3505 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10386 45 92.08 2 4143.6 2005-03-01 00:00:00 Resolved 1 3 2005 Ships 100 S700_3505 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10397 48 100 3 5192.64 2005-03-28 00:00:00 Shipped 1 3 2005 Ships 100 S700_3505 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10414 28 100 7 3029.04 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 100 S700_3505 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +10105 22 100 7 2556.18 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 99 S700_3962 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10117 45 83.42 1 3753.9 2003-04-16 00:00:00 Shipped 2 4 2003 Ships 99 S700_3962 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Medium +10129 30 85.41 7 2562.3 2003-06-12 00:00:00 Shipped 2 6 2003 Ships 99 S700_3962 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10142 38 85.41 4 3245.58 2003-08-08 00:00:00 Shipped 3 8 2003 Ships 99 S700_3962 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Medium +10153 20 100 3 2204.6 2003-09-28 00:00:00 Shipped 3 9 2003 Ships 99 S700_3962 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10167 28 100 14 3003 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 99 S700_3962 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Medium +10177 24 100 5 2526.48 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 99 S700_3962 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Small +10185 22 79.45 5 1747.9 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 99 S700_3962 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10197 35 93.35 11 3267.25 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 99 S700_3962 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Medium +10208 33 85.41 5 2818.53 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 99 S700_3962 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10222 31 95.34 17 2955.54 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 99 S700_3962 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10232 35 82.43 2 2885.05 2004-03-20 00:00:00 Shipped 1 3 2004 Ships 99 S700_3962 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10248 35 90.37 8 3162.95 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 99 S700_3962 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10261 50 81.43 6 4071.5 2004-06-17 00:00:00 Shipped 2 6 2004 Ships 99 S700_3962 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Medium +10273 26 100 9 2969.46 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 99 S700_3962 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 38 89.38 11 3396.44 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 99 S700_3962 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Medium +10294 45 100 1 4692.6 2004-09-10 00:00:00 Shipped 3 9 2004 Ships 99 S700_3962 Online Mini Collectables 6175557555 7635 Spinnaker Dr. \N Brickhaven MA 58339 USA \N Barajas Miguel Medium +10306 30 100 5 3515.7 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 99 S700_3962 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Medium +10315 37 91.37 4 3380.69 2004-10-29 00:00:00 Shipped 4 10 2004 Ships 99 S700_3962 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Medium +10327 37 86.61 3 3204.57 2004-11-10 00:00:00 Resolved 4 11 2004 Ships 99 S700_3962 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10337 36 71.89 7 2588.04 2004-11-21 00:00:00 Shipped 4 11 2004 Ships 99 S700_3962 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Small +10350 25 100 16 2854.75 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 99 S700_3962 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10373 37 100 8 4025.6 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 99 S700_3962 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10386 30 95.48 3 2864.4 2005-03-01 00:00:00 Resolved 1 3 2005 Ships 99 S700_3962 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10397 36 100 2 3789.72 2005-03-28 00:00:00 Shipped 1 3 2005 Ships 99 S700_3962 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10414 27 90.37 8 2439.99 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 99 S700_3962 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Small +10106 48 61.44 10 2949.12 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 74 S700_4002 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10119 26 59.22 1 1539.72 2003-04-28 00:00:00 Shipped 2 4 2003 Planes 74 S700_4002 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10131 26 85.13 2 2213.38 2003-06-16 00:00:00 Shipped 2 6 2003 Planes 74 S700_4002 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10143 34 85.87 5 2919.58 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 74 S700_4002 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 44 85.87 3 3778.28 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 74 S700_4002 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Medium +10168 39 82.91 17 3233.49 2003-10-28 00:00:00 Shipped 4 10 2003 Planes 74 S700_4002 Technics Stores Inc. 6505556809 9408 Furth Circle \N Burlingame CA 94217 USA \N Hirano Juri Medium +10178 45 76.25 2 3431.25 2003-11-08 00:00:00 Shipped 4 11 2003 Planes 74 S700_4002 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Medium +10198 40 63.67 2 2546.8 2003-11-27 00:00:00 Shipped 4 11 2003 Planes 74 S700_4002 Cruz & Sons Co. +63 2 555 3587 15 McCallum Street - NatWest Center #13-03 \N Makati City \N 1227 MM Philippines Japan Cruz Arnold Small +10210 42 70.33 15 2953.86 2004-01-12 00:00:00 Shipped 1 1 2004 Planes 74 S700_4002 Osaka Souveniers Co. +81 06 6342 5555 Dojima Avanza 4F, 1-6-20 Dojima, Kita-ku \N Osaka Osaka 530-0003 Japan Japan Kentary Mory Small +10222 43 74.03 2 3183.29 2004-02-19 00:00:00 Shipped 1 2 2004 Planes 74 S700_4002 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Medium +10235 34 72.55 11 2466.7 2004-04-02 00:00:00 Shipped 2 4 2004 Planes 74 S700_4002 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10250 38 62.19 12 2363.22 2004-05-11 00:00:00 Shipped 2 5 2004 Planes 74 S700_4002 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10262 35 71.07 7 2487.45 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 74 S700_4002 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10275 31 72.55 17 2249.05 2004-07-23 00:00:00 Shipped 3 7 2004 Planes 74 S700_4002 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10284 32 64.41 9 2061.12 2004-08-21 00:00:00 Shipped 3 8 2004 Planes 74 S700_4002 Norway Gifts By Mail, Co. +47 2212 1555 Drammensveien 126 A, PB 744 Sentrum \N Oslo \N N 0106 Norway EMEA Klaeboe Jan Small +10296 47 86.62 5 4071.14 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 74 S700_4002 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Medium +10308 39 68.11 15 2656.29 2004-10-15 00:00:00 Shipped 4 10 2004 Planes 74 S700_4002 Mini Classics 9145554562 3758 North Pendale Street \N White Plains NY 24067 USA \N Frick Steve Small +10316 44 62.19 7 2736.36 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 74 S700_4002 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10328 39 85.87 12 3348.93 2004-11-12 00:00:00 Shipped 4 11 2004 Planes 74 S700_4002 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Medium +10339 50 57.86 8 2893 2004-11-23 00:00:00 Shipped 4 11 2004 Planes 74 S700_4002 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10352 22 75.51 1 1661.22 2004-12-03 00:00:00 Shipped 4 12 2004 Planes 74 S700_4002 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Small +10361 35 100 11 4277.35 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 74 S700_4002 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Medium +10373 45 55.62 17 2502.9 2005-01-31 00:00:00 Shipped 1 1 2005 Planes 74 S700_4002 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 44 86.4 15 3801.6 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 74 S700_4002 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 36 87.36 12 3144.96 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 74 S700_4002 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Medium +10401 28 72.55 11 2031.4 2005-04-03 00:00:00 On Hold 2 4 2005 Planes 74 S700_4002 Tekni Collectables Inc. 2015559350 7476 Moss Rd. \N Newark NJ 94019 USA \N Brown William Small +10416 43 62.19 12 2674.17 2005-05-10 00:00:00 Shipped 2 5 2005 Planes 74 S700_4002 L'ordine Souveniers 0522-556555 Strada Provinciale 124 \N Reggio Emilia \N 42100 Italy EMEA Moroni Maurizio Small +10106 48 52.64 15 2526.72 2003-02-17 00:00:00 Shipped 1 2 2003 Planes 49 S72_1253 Rovelli Gifts 035-640555 Via Ludovico il Moro 22 \N Bergamo \N 24100 Italy EMEA Rovelli Giovanni Small +10119 28 48.17 6 1348.76 2003-04-28 00:00:00 Shipped 2 4 2003 Planes 49 S72_1253 Salzburg Collectables 6562-9555 Geislweg 14 \N Salzburg \N 5020 Austria EMEA Pipps Georg Small +10131 21 41.71 7 875.91 2003-06-16 00:00:00 Shipped 2 6 2003 Planes 49 S72_1253 Gift Ideas Corp. 2035554407 2440 Pompton St. \N Glendale CT 97561 USA \N Lewis Dan Small +10143 37 50.65 10 1874.05 2003-08-10 00:00:00 Shipped 3 8 2003 Planes 49 S72_1253 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10155 34 49.16 8 1671.44 2003-10-06 00:00:00 Shipped 4 10 2003 Planes 49 S72_1253 Toys of Finland, Co. 90-224 8555 Keskuskatu 45 \N Helsinki \N 21240 Finland EMEA Karttunen Matti Small +10167 40 41.71 4 1668.4 2003-10-23 00:00:00 Cancelled 4 10 2003 Planes 49 S72_1253 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10178 45 51.15 7 2301.75 2003-11-08 00:00:00 Shipped 4 11 2003 Planes 49 S72_1253 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10186 28 52.14 4 1459.92 2003-11-14 00:00:00 Shipped 4 11 2003 Planes 49 S72_1253 Double Decker Gift Stores, Ltd (171) 555-7555 120 Hanover Sq. \N London \N WA1 1DP UK EMEA Hardy Thomas Small +10197 29 41.71 1 1209.59 2003-11-26 00:00:00 Shipped 4 11 2003 Planes 49 S72_1253 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10209 48 44.69 3 2145.12 2004-01-09 00:00:00 Shipped 1 1 2004 Planes 49 S72_1253 Men 'R' US Retailers, Ltd. 2155554369 6047 Douglas Av. \N Los Angeles CA \N USA \N Chandler Michael Small +10222 31 45.69 7 1416.39 2004-02-19 00:00:00 Shipped 1 2 2004 Planes 49 S72_1253 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10249 32 57.61 3 1843.52 2004-05-08 00:00:00 Shipped 2 5 2004 Planes 49 S72_1253 Cambridge Collectables Co. 6175555555 4658 Baden Av. \N Cambridge MA 51247 USA \N Tseng Kyung Small +10262 21 57.11 12 1199.31 2004-06-24 00:00:00 Cancelled 2 6 2004 Planes 49 S72_1253 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10274 32 58.6 4 1875.2 2004-07-21 00:00:00 Shipped 3 7 2004 Planes 49 S72_1253 Collectables For Less Inc. 6175558555 7825 Douglas Av. \N Brickhaven MA 58339 USA \N Nelson Allen Small +10283 43 57.61 1 2477.23 2004-08-20 00:00:00 Shipped 3 8 2004 Planes 49 S72_1253 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10296 21 45.19 10 948.99 2004-09-15 00:00:00 Shipped 3 9 2004 Planes 49 S72_1253 Bavarian Collectables Imports, Co. +49 89 61 08 9555 Hansastr. 15 \N Munich \N 80686 Germany EMEA Donnermeyer Michael Small +10307 34 53.63 4 1823.42 2004-10-14 00:00:00 Shipped 4 10 2004 Planes 49 S72_1253 Classic Gift Ideas, Inc 2155554695 782 First Street \N Philadelphia PA 71270 USA \N Cervantes Francisca Small +10316 34 43.7 12 1485.8 2004-11-01 00:00:00 Shipped 4 11 2004 Planes 49 S72_1253 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10329 44 86.13 8 3789.72 2004-11-15 00:00:00 Shipped 4 11 2004 Planes 49 S72_1253 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Medium +10339 27 76.31 6 2060.37 2004-11-23 00:00:00 Shipped 4 11 2004 Planes 49 S72_1253 Tokyo Collectables, Ltd +81 3 3584 0555 2-2-8 Roppongi \N Minato-ku Tokyo 106-0032 Japan Japan Shimamura Akiko Small +10352 49 52.64 4 2579.36 2004-12-03 00:00:00 Shipped 4 12 2004 Planes 49 S72_1253 Auto-Moto Classics Inc. 6175558428 16780 Pompton St. \N Brickhaven MA 58339 USA \N Taylor Leslie Small +10361 23 95.2 12 2189.6 2004-12-17 00:00:00 Shipped 4 12 2004 Planes 49 S72_1253 Souveniers And Things Co. +61 2 9495 8555 Monitor Money Building, 815 Pacific Hwy Level 6 Chatswood NSW 2067 Australia APAC Huxley Adrian Small +10373 25 64.97 9 1624.25 2005-01-31 00:00:00 Shipped 1 1 2005 Planes 49 S72_1253 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Small +10386 50 87.15 16 4357.5 2005-03-01 00:00:00 Resolved 1 3 2005 Planes 49 S72_1253 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10398 34 40.22 1 1367.48 2005-03-30 00:00:00 Shipped 1 3 2005 Planes 49 S72_1253 Reims Collectables 26.47.1555 59 rue de l'Abbaye \N Reims \N 51100 France EMEA Henriot Paul Small +10400 20 56.12 4 1122.4 2005-04-01 00:00:00 Shipped 2 4 2005 Planes 49 S72_1253 The Sharp Gifts Warehouse 4085553659 3086 Ingle Ln. \N San Jose CA 94217 USA \N Frick Sue Small +10415 42 57.61 3 2419.62 2005-05-09 00:00:00 Disputed 2 5 2005 Planes 49 S72_1253 Australian Collectables, Ltd 61-9-3844-6555 7 Allen Street \N Glen Waverly Victoria 3150 Australia APAC Connery Sean Small +10105 25 56.78 8 1419.5 2003-02-11 00:00:00 Shipped 1 2 2003 Ships 54 S72_3212 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Small +10117 50 43.68 2 2184 2003-04-16 00:00:00 Shipped 2 4 2003 Ships 54 S72_3212 Dragon Souveniers, Ltd. +65 221 7555 Bronz Sok., Bronz Apt. 3/6 Tesvikiye \N Singapore \N 79903 Singapore Japan Natividad Eric Small +10129 32 64.97 8 2079.04 2003-06-12 00:00:00 Shipped 2 6 2003 Ships 54 S72_3212 Stylish Desk Decors, Co. (171) 555-0297 35 King George \N London \N WX3 6FW UK EMEA Brown Ann Small +10142 39 44.23 5 1724.97 2003-08-08 00:00:00 Shipped 3 8 2003 Ships 54 S72_3212 Mini Gifts Distributors Ltd. 4155551450 5677 Strong St. \N San Rafael CA 97562 USA \N Nelson Valarie Small +10153 50 60.06 4 3003 2003-09-28 00:00:00 Shipped 3 9 2003 Ships 54 S72_3212 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10167 38 48.59 15 1846.42 2003-10-23 00:00:00 Cancelled 4 10 2003 Ships 54 S72_3212 Scandinavian Gift Ideas 0695-34 6555 ?kergatan 24 \N Boras \N S-844 67 Sweden EMEA Larsson Maria Small +10177 40 50.23 6 2009.2 2003-11-07 00:00:00 Shipped 4 11 2003 Ships 54 S72_3212 CAF Imports +34 913 728 555 Merchants House, 27-30 Merchant's Quay \N Madrid \N 28023 Spain EMEA Fernandez Jesus Small +10185 28 64.43 6 1804.04 2003-11-14 00:00:00 Shipped 4 11 2003 Ships 54 S72_3212 Mini Creations Ltd. 5085559555 4575 Hillside Dr. \N New Bedford MA 50553 USA \N Tam Wing C Small +10197 42 50.23 12 2109.66 2003-11-26 00:00:00 Shipped 4 11 2003 Ships 54 S72_3212 Enaco Distributors (93) 203 4555 Rambla de Catalu¤a, 23 \N Barcelona \N 8022 Spain EMEA Saavedra Eduardo Small +10208 42 63.88 6 2682.96 2004-01-02 00:00:00 Shipped 1 1 2004 Ships 54 S72_3212 Saveley & Henriot, Co. 78.32.5555 2, rue du Commerce \N Lyon \N 69004 France EMEA Saveley Mary Small +10222 36 63.34 18 2280.24 2004-02-19 00:00:00 Shipped 1 2 2004 Ships 54 S72_3212 Collectable Mini Designs Co. 7605558146 361 Furth Circle \N San Diego CA 91217 USA \N Thompson Valarie Small +10232 24 49.69 3 1192.56 2004-03-20 00:00:00 Shipped 1 3 2004 Ships 54 S72_3212 giftsbymail.co.uk (198) 555-8888 Garden House Crowther Way \N Cowes Isle of Wight PO31 7PJ UK EMEA Bennett Helen Small +10248 23 65.52 9 1506.96 2004-05-07 00:00:00 Cancelled 2 5 2004 Ships 54 S72_3212 Land of Toys Inc. 2125557818 897 Long Airport Avenue \N NYC NY 10022 USA \N Yu Kwai Small +10261 29 50.78 7 1472.62 2004-06-17 00:00:00 Shipped 2 6 2004 Ships 54 S72_3212 Quebec Home Shopping Network (514) 555-8054 43 rue St. Laurent \N Montreal Quebec H1J 1C3 Canada \N Fresnisre Jean Small +10273 37 45.86 10 1696.82 2004-07-21 00:00:00 Shipped 3 7 2004 Ships 54 S72_3212 Petit Auto (02) 5554 67 Rue Joseph-Bens 532 \N Bruxelles \N B-1180 Belgium EMEA Dewey Catherine Small +10283 33 51.32 12 1693.56 2004-08-20 00:00:00 Shipped 3 8 2004 Ships 54 S72_3212 Royal Canadian Collectables, Ltd. (604) 555-4555 23 Tsawassen Blvd. \N Tsawassen BC T2F 8M4 Canada \N Lincoln Elizabeth Small +10293 32 60.06 1 1921.92 2004-09-09 00:00:00 Shipped 3 9 2004 Ships 54 S72_3212 Amica Models & Co. 011-4988555 Via Monte Bianco 34 \N Torino \N 10100 Italy EMEA Accorti Paolo Small +10306 35 59.51 6 2082.85 2004-10-14 00:00:00 Shipped 4 10 2004 Ships 54 S72_3212 AV Stores, Co. (171) 555-1555 Fauntleroy Circus \N Manchester \N EC2 5NT UK EMEA Ashworth Victoria Small +10315 40 55.69 5 2227.6 2004-10-29 00:00:00 Shipped 4 10 2004 Ships 54 S72_3212 La Rochelle Gifts 40.67.8555 67, rue des Cinquante Otages \N Nantes \N 44000 France EMEA Labrune Janine Small +10327 37 86.74 4 3209.38 2004-11-10 00:00:00 Resolved 4 11 2004 Ships 54 S72_3212 Danish Wholesale Imports 31 12 3555 Vinb'ltet 34 \N Kobenhavn \N 1734 Denmark EMEA Petersen Jytte Medium +10337 42 97.16 5 4080.72 2004-11-21 00:00:00 Shipped 4 11 2004 Ships 54 S72_3212 Classic Legends Inc. 2125558493 5905 Pompton St. Suite 750 NYC NY 10022 USA \N Hernandez Maria Medium +10350 20 100 15 2244.4 2004-12-02 00:00:00 Shipped 4 12 2004 Ships 54 S72_3212 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Small +10373 29 100 1 3978.51 2005-01-31 00:00:00 Shipped 1 1 2005 Ships 54 S72_3212 Oulu Toy Supplies, Inc. 981-443655 Torikatu 38 \N Oulu \N 90110 Finland EMEA Koskitalo Pirkko Medium +10386 43 100 4 5417.57 2005-03-01 00:00:00 Resolved 1 3 2005 Ships 54 S72_3212 Euro Shopping Channel (91) 555 94 44 C/ Moralzarzal, 86 \N Madrid \N 28034 Spain EMEA Freyre Diego Medium +10397 34 62.24 1 2116.16 2005-03-28 00:00:00 Shipped 1 3 2005 Ships 54 S72_3212 Alpha Cognac 61.77.6555 1 rue Alsace-Lorraine \N Toulouse \N 31000 France EMEA Roulet Annette Small +10414 47 65.52 9 3079.44 2005-05-06 00:00:00 On Hold 2 5 2005 Ships 54 S72_3212 Gifts4AllAges.com 6175559555 8616 Spinnaker Dr. \N Boston MA 51003 USA \N Yoshido Juri Medium +\. + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/sales-bi/init-pg/init.sh b/sales-bi/init-pg/init.sh new file mode 100644 index 0000000..495a0c9 --- /dev/null +++ b/sales-bi/init-pg/init.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Wait for PostgreSQL to start +until psql -c '\l'; do + echo "Waiting for PostgreSQL to start..." + sleep 1 +done + +psql -f /docker-entrypoint-initdb.d/cleaned_sales_data.sql \ No newline at end of file diff --git a/sales-bi/spicepod.yaml b/sales-bi/spicepod.yaml new file mode 100644 index 0000000..61de995 --- /dev/null +++ b/sales-bi/spicepod.yaml @@ -0,0 +1,15 @@ +version: v1beta1 +kind: Spicepod +name: sales-bi + +datasets: + - from: postgres:public.cleaned_sales_data + name: cleaned_sales_data + params: + pg_host: localhost + pg_db: postgres + pg_user: postgres + pg_pass: P0rsche911 + acceleration: + enabled: true + refresh: 10s \ No newline at end of file diff --git a/sales-bi/superset/Dockerfile b/sales-bi/superset/Dockerfile new file mode 100644 index 0000000..f199c54 --- /dev/null +++ b/sales-bi/superset/Dockerfile @@ -0,0 +1,7 @@ +FROM apache/superset +# Switching to root to install the required packages +USER root +# https://github.com/influxdata/flightsql-dbapi +RUN pip install flightsql-dbapi +# Switching back to using the `superset` user +USER superset \ No newline at end of file diff --git a/sales-bi/superset/init/init.sh b/sales-bi/superset/init/init.sh new file mode 100755 index 0000000..c2f03f9 --- /dev/null +++ b/sales-bi/superset/init/init.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +docker exec -it superset-sales-bi-demo superset fab create-admin \ + --username admin \ + --firstname Superset \ + --lastname Admin \ + --email admin@superset.com \ + --password admin + +docker exec -it superset-sales-bi-demo superset db upgrade +docker exec -it superset-sales-bi-demo superset init diff --git a/serverops/README.md b/serverops/README.md deleted file mode 100644 index 5729669..0000000 --- a/serverops/README.md +++ /dev/null @@ -1,202 +0,0 @@ -# ServerOps - -A CPU based server operations sample. - -This sample uses CPU metrics as in input to Spice.ai to recommend the best time to perform operations on a server. It pulls CPU metrics collected by [Telegraf](https://www.influxdata.com/time-series-platform/telegraf/) from [InfluxDB](https://www.influxdata.com/products/influxdb/) and uses them to determine likely times of low load. - -## Prerequisites - -This sample requires - -- [Spice.ai](https://docs.spiceai.org/getting-started/install-spiceai/) -- [Docker](https://docs.docker.com/get-docker/) (v20.10 for Linux or v18.03 for Windows/MacOS) -- [Docker Compose](https://docs.docker.com/compose/install/) -- [Powershell](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.1) - -## Collect CPU metrics - -First, ensure this `samples` repository is cloned. - -```bash -git clone https://github.com/spiceai/samples.git -``` - -Move to the `serverops` directory and start the Telegraf and InfluxDB containers to start collecting and storing metrics. - -```bash -cd samples -cd serverops -docker-compose up -``` - -You will observe Telegraf and InfluxDB start up. After both containers have started, CPU metrics will begin flowing into InfluxDB. - -## Using Spice.ai to train - -Use Spice.ai to train a model that can provide a recommendation on the best time to perform operations using these metrics. - -Example environment variables that will work with the InfluxDB container have been provided in the `set-spice-vars.sh` script. In another terminal, add them to your environment for use by the Spice.ai runtime: - -```bash -cd samples -cd serverops -source set-spice-vars.sh -``` - -Add the ServerOps pod from spicerack.org by using the CLI: - -```bash -spice add samples/ServerOps -``` - -Now, start the Spice.ai runtime: - -```bash -spice run -``` - -Once the Spice.ai runtime has loaded, open another terminal, and start training: - -```bash -cd samples -cd serverops -spice train serverops -``` - -In the Spice.ai runtime terminal, you will observe the runtime load CPU metrics and begin to train! - -## Start the server maintenance app - -While Spice.ai is training the model, start the server maintenance app that comes with this sample: - -```bash -pwsh ./serverops.ps1 -``` - -You should see output that looks like: - -``` -Server Maintenance v0.1! - -Ctrl-C to stop running - -Time to perform a maintenance run, checking to see if now is a good time to run -Recommendation to do_nothing with confidence -Recommendation has a confidence of 0. Has this pod been trained yet? -``` - -Once the pod has finished training, the output should change to show that now is a good time to run server operations or not. - -## How it works - -Spice.ai was able to use the Telegraf data stored in InfluxDB along with definitions for possible actions it can recommend to train and provide a recommendation on when to run server operations. - -Open the Pod manifest `serverops.yml` in the `spicepods` directory. - -Review the `dataspaces` section on how the data was connected. - -```yaml - -dataspaces: -- from: hostmetrics - name: cpu - data: - connector: - name: influxdb - params: - url: SPICE_INFLUXDB_URL - token: SPICE_INFLUXDB_TOKEN - org: SPICE_INFLUXDB_ORG - bucket: SPICE_INFLUXDB_BUCKET - measurement: cpu - field: usage_idle - processor: - name: flux-csv - fields: - # "usage_idle" measures the percentage of time the CPU is idle - # Higher values indicate less load - - name: usage_idle - -``` - -A Spice.ai Dataspace has two components, a Connector and a Processor. A Connector fetches data from a specific source, like a database or a file. A Processor takes the data that the Connector has fetched and transforms it into a format Spice.ai can use. This example uses the `influxdb` Connector to provide [Flux Annotated CSV](https://docs.influxdata.com/influxdb/cloud/reference/syntax/annotated-csv/) to the `flux-csv` processor. It extracts the `usage_idle` field of measurements taken from the `cpu`, where `usage_idle` refers to the percentage of time the CPU has spent in an idle state. - -In the `params` section of the InfluxDB Connector, notice the use of environment variables prefixed with `SPICE_` to pass configuration. Any environment variable with this prefix will automatically be replaced with its value by the Spice.ai runtime. - -### Actions - -The possible actions to provide as recommendations were defined in the `actions` section of the manifest. - -```yaml -actions: - - name: perform_maintenance - - name: preload_cache - - name: do_nothing -``` - -There are three Actions defined, `perform_maintenance`, `preload_cache` and `do_nothing`. Spice.ai will train using all three actions to provide a recommendation on which one to take. - -### Rewards - -Spice.ai learns which action to recommend by rewarding or penalizing an action using a Reward definition. Review the `rewards` section of the manifest: - -```yaml -training: - reward_init: | - high_cpu_usage_threshold = 10 - cpu_usage_new = 100 - new_state.hostmetrics_cpu_usage_idle - cpu_usage_prev = 100 - prev_state.hostmetrics_cpu_usage_idle - cpu_usage_delta = cpu_usage_new - cpu_usage_prev - - cpu_usage_delta_abs = cpu_usage_delta - if cpu_usage_delta_abs < 0: - cpu_usage_delta_abs *= -1 - rewards: - - reward: perform_maintenance - with: | - # Reward when cpu usage is low and stable - if cpu_usage_new < high_cpu_usage_threshold: - # The lower the cpu usage, the higher the reward - reward = high_cpu_usage_threshold - cpu_usage_new - # Add an additional reward if the cpu usage trend is stable - if cpu_usage_delta_abs < 2: - reward *= 1.5 - - else: - # Penalize performing maintenance at a time when cpu usage is high - # The higher the cpu usage, the more harsh the penalty should be - reward = high_cpu_usage_threshold - cpu_usage_new - - reward: preload_cache - with: | - # Reward when cpu usage is low and rising - # Is the cpu usage high now, and was the cpu usage low previously? - # If so, previous state was a better time to preload, - # so give a negative reward based on the change - if cpu_usage_new > high_cpu_usage_threshold and cpu_usage_delta > 25: - reward = -cpu_usage_delta - - # Reward preloading during low cpu usage - else: - reward = high_cpu_usage_threshold - cpu_usage_new - - - reward: do_nothing - with: | - # Reward doing nothing under high cpu usage - # The higher the cpu usage, the higher the reward - if cpu_usage_new > high_cpu_usage_threshold: - reward = high_cpu_usage_threshold - cpu_usage_new - # Penalize doing nothing slightly when cpu usage is low - else: - reward = -1 - # If the cpu usage trend is unstable, do not apply the penalty - if cpu_usage_delta_abs > 5: - reward = 0 -``` - -This section tells Spice.ai how to reward each action, given the state at that step. These rewards are defined by simple Python expressions that assign a value to `reward`. A higher value means Spice.ai will learn to take this action more frequently as it trains. You can use values from your Dataspaces to calculate these rewards. They can be accessed with the expression `(new_state|prev_state).(from)_(name)_(field)`. This example uses `new_state.hostmetrics_cpu_usage_idle` and `new_state.hostmetrics_cpu_usage_idle`. - -Notice the `reward_init` section. This section can be used to for common initialization tasks that will be applied to every action's reward function. In this example, a `cpu_usage_delta` variable is created to reason about the stability of the system's load from one moment to the next. - -## Next steps - -- Review the [Spice.ai documentation](https://docs.spiceai.org/reference/pod/) on the Pod manifest diff --git a/serverops/docker-compose.yaml b/serverops/docker-compose.yaml deleted file mode 100644 index cd8a3d3..0000000 --- a/serverops/docker-compose.yaml +++ /dev/null @@ -1,22 +0,0 @@ -version: "2" -services: - influxdb: - image: influxdb:2.0 - container_name: influxdb - restart: always - ports: - - 8086:8086 - environment: - - DOCKER_INFLUXDB_INIT_MODE=setup - - DOCKER_INFLUXDB_INIT_USERNAME=my-user - - DOCKER_INFLUXDB_INIT_PASSWORD=my-password - - DOCKER_INFLUXDB_INIT_ORG=my-org - - DOCKER_INFLUXDB_INIT_BUCKET=my-bucket - - DOCKER_INFLUXDB_INIT_RETENTION=1w - - DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=my-super-secret-auth-token - telegraf: - image: telegraf:1.19.2 - container_name: telegraf - restart: always - volumes: - - ./telegraf.conf:/etc/telegraf/telegraf.conf:ro \ No newline at end of file diff --git a/serverops/serverops.ps1 b/serverops/serverops.ps1 deleted file mode 100755 index d03eea1..0000000 --- a/serverops/serverops.ps1 +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/local/bin/pwsh - -# This is a log pruning application written in Powershell that queries Spice AI -# for intelligent recommendations on when it would be a good time to prune logs. -# This application will only prune logs if the confidence is higher than 50%. -# This application checks every 5 seconds to see if we should prune the logs, however -# in a real server monitoring application this period would likely be longer. - -Write-Host "Server Ops v0.1!" -Write-Host -Write-Host "Ctrl-C to stop running" -Write-Host - -function Get-Recommendation { - try { - $response = Invoke-WebRequest -URI http://localhost:8000/api/v0.1/pods/serverops/recommendation - } - catch { - Write-Host "Unable to communicate with Spice.ai, is it running?" - return - } - - $recommendation = $response | ConvertFrom-Json - - Write-Host "Recommendation to $($recommendation.action) with confidence $($recommendation.confidence)" - - return $recommendation -} - -function Invoke-TryPerformMaintenance { - param ( - $Recommendation - ) - - if (!$Recommendation.confidence) { - Write-Host "Recommendation has a confidence of 0. Has this pod been trained yet?" - return - } - - if ($Recommendation.confidence -gt 0.5 -and $Recommendation.action -eq "perform_maintenance") { - Write-Host "Performing server maintenance now!" - } elseif ($Recommendation.confidence -gt 0.5 -and $Recommendation.action -eq "preload_cache") { - Write-Host "Preloading cache now!" - } - else { - Write-Host "Not performing any server operations" - } -} - -while ($true) { - Write-Host "Checking for a server operation recommendation" - - $recommendation = Get-Recommendation - if (!$recommendation) { - return - } - - Invoke-TryPerformMaintenance -Recommendation $recommendation - Write-Host - - Start-Sleep -Seconds 5 -} diff --git a/serverops/set-spice-vars.sh b/serverops/set-spice-vars.sh deleted file mode 100755 index 3751d89..0000000 --- a/serverops/set-spice-vars.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -export SPICE_INFLUXDB_URL=http://host.docker.internal:8086 -export SPICE_INFLUXDB_TOKEN=my-super-secret-auth-token -export SPICE_INFLUXDB_ORG=my-org -export SPICE_INFLUXDB_BUCKET=my-bucket \ No newline at end of file diff --git a/serverops/telegraf.conf b/serverops/telegraf.conf deleted file mode 100644 index 99e5803..0000000 --- a/serverops/telegraf.conf +++ /dev/null @@ -1,23 +0,0 @@ -[agent] - interval = "10s" - round_interval = true - metric_batch_size = 1000 - metric_buffer_limit = 10000 - collection_jitter = "0s" - flush_interval = "10s" - flush_jitter = "0s" - precision = "" - hostname = "" - omit_hostname = false - -[[outputs.influxdb_v2]] - urls = ["http://influxdb:8086"] - token = "my-super-secret-auth-token" - organization = "my-org" - bucket = "my-bucket" - -[[inputs.cpu]] - percpu = false - totalcpu = true - collect_cpu_time = false - report_active = false diff --git a/trader/.gitignore b/trader/.gitignore deleted file mode 100644 index 4435e21..0000000 --- a/trader/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.spice -node_modules \ No newline at end of file diff --git a/trader/README.md b/trader/README.md deleted file mode 100644 index d6afe3c..0000000 --- a/trader/README.md +++ /dev/null @@ -1,131 +0,0 @@ -# Trader - -> **NOTE** This is an example only. Nothing from Spice AI ever constitutes financial advice. - -A basic Bitcoin trading bot example using Coinbase Pro exchange data. - -Let's try an example that uses streaming Bitcoin prices to learn when to make Buy and Sell trades. - -## Requirements - -- [Node.js](https://nodejs.org/) -- [Spice.ai](https://docs.spiceai.org/getting-started/install-spiceai/) - -## Setup - -First, ensure this repository, `samples` is cloned or is opened in GitHub Codespaces. - -```bash -git clone https://github.com/spiceai/samples.git -``` - -Move to the `trader` directory and start the Spice.ai runtime. - -```bash -cd samples -cd trader -spice run -``` - -So that you can watch the Spice.ai runtime output and enter commands at the same time, open another terminal (also in the `trader` directory). - -> **Note** -> If you are using GitHub Codespaces or VS Code, then you can open a new terminal in split-view mode by clicking the 'split' button. -> ![alt](/.imgs/split_terminal.png) - -Run npm install in the new terminal to setup the sample application. - -```bash -npm install -``` - -## Run the sample application - -```bash -node main.js -``` - -You should see the following output: - -```bash -Trader - A Spice trading app -Fetching trade recommendation... -Failed to fetch recommendation. Is the Spice.ai runtime started and has a pod been added? -``` - -The application will attempt to fetch a recommendation from the Spice.ai runtime but will not find one, because we have not yet created a pod and trained it. Press Ctrl-C to stop the application and let's add a pod in the next step. - -## Get the sample pod - -In the new terminal add the Trader sample pod from [spicerack.org](https://spicerack.org): - -```bash -spice add samples/trader -``` - -> Note: The sample pod defaults to an `interval` of 30 seconds, so you will need to wait at least 30 seconds to capture enough streaming market data to start trading. - -Once enough data has been capture, you will observe the runtime starting to train! You can also manually start a training run using this command. - -```bash -spice train trader -``` - -You can view the pod training progress at: [http://localhost:8000/pods/trader](http://localhost:8000/pods/trader). - -## Recommendations - -Once the pod has trained, re-run the sample application: - -```bash -node main.js -``` - -Now you should see output with a recomendation (recommendation may differ from this quickstart as this depends on the trained model): - -```bash -Trader - A Spice trading app -Fetching trade recommendation... -Recommendation to SELL with 0.623 confidence. -Holding. -``` - -You can also fetch a recommendation directly from the API. - -```bash -curl http://localhost:8000/api/v0.1/pods/trader/recommendation -``` - -You'll see a result you can take action on immediately: - -```json -{ - "action": "buy", - "confidence": 0.9, - "start": 1607886000, - "end": 1607907600, - "tag": "latest" -} -``` - -## Observation Data - -You can also view observation data by fetching it with an API call: - -```bash -curl http://localhost:8000/api/v0.1/pods/trader/observations -``` - -## Rewards - -The trader sample uses a **rewards function file** to host action rewards which is located at `spicepods/rewards.py`. - -Try tweaking the rewards Python code and observing the effect on training. - -Learn more about rewards and reward function files in the [documentation](https://docs.spiceai.org/concepts/rewards/external/). - -## Next steps - -Congratulations! You've successfully trained a model that provides real-time recommendations for trades based on live market data and your portfolio constraints! - -Try tweaking the parameters in the pod manifest (`spicepods/trader.yaml`) to learn how the Spice.ai runtime behaves. diff --git a/trader/main.js b/trader/main.js deleted file mode 100644 index 21712f7..0000000 --- a/trader/main.js +++ /dev/null @@ -1,66 +0,0 @@ -import fetch from "node-fetch"; - -console.log("Trader - A Spice trading app"); - -/** - * Fetches a recommendation from the Spice.ai endpoint for the trader pod - * - * @returns Spice.ai Recommendation - */ -const fetchRecommendation = async () => { - console.log("Fetching trade recommendation..."); - const response = await fetch( - "http://localhost:8000/api/v0.1/pods/trader/recommendation" - ).catch((e) => {}); - - if (!response || !response.ok) { - if (response && response.status >= 500) { - console.log(`An error occurred: ${response.statusText}`); - return; - } - console.log( - "Failed to fetch recommendation. Is the Spice.ai runtime started and has a pod been added?" - ); - return; - } - - const recommendation = await response.json(); - - if (!recommendation.confidence) { - console.log( - "Recommendation has a confidence of 0. Has this pod been trained yet?" - ); - return; - } - - console.log( - `Recommendation to ${recommendation.action.toUpperCase()} with ${ - recommendation.confidence - } confidence.` - ); - - return recommendation; -}; - -/** - * Maybe prints a trade execution to the console based on the Spice.ai - * recommendation - */ -const maybeExecuteTrade = async () => { - const recommendation = await fetchRecommendation(); - if (!recommendation) { - return; - } - - if (recommendation.action != "hold" && recommendation.confidence > 0.75) { - console.log(`Submitting ${recommendation.action.toUpperCase()} order.`); - } else { - console.log("Holding."); - } -}; - -maybeExecuteTrade(); - -setInterval(async () => { - return maybeExecuteTrade(); -}, 3000); diff --git a/trader/package-lock.json b/trader/package-lock.json deleted file mode 100644 index 0d7aaa5..0000000 --- a/trader/package-lock.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "name": "trader", - "version": "0.2.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "trader", - "version": "0.2.0", - "license": "MIT", - "dependencies": { - "node-fetch": "^3.1.1" - } - }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz", - "integrity": "sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==", - "engines": { - "node": ">= 12" - } - }, - "node_modules/fetch-blob": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.4.tgz", - "integrity": "sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" - } - ], - "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, - "engines": { - "node": "^12.20 || >= 14.13" - } - }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "dependencies": { - "fetch-blob": "^3.1.2" - }, - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], - "engines": { - "node": ">=10.5.0" - } - }, - "node_modules/node-fetch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.1.1.tgz", - "integrity": "sha512-SMk+vKgU77PYotRdWzqZGTZeuFKlsJ0hu4KPviQKkfY+N3vn2MIzr0rvpnYpR8MtB3IEuhlEcuOLbGvLRlA+yg==", - "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.3", - "formdata-polyfill": "^4.0.10" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" - } - }, - "node_modules/web-streams-polyfill": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.0.tgz", - "integrity": "sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==", - "engines": { - "node": ">= 8" - } - } - }, - "dependencies": { - "data-uri-to-buffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz", - "integrity": "sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==" - }, - "fetch-blob": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.1.4.tgz", - "integrity": "sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA==", - "requires": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - } - }, - "formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "requires": { - "fetch-blob": "^3.1.2" - } - }, - "node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - }, - "node-fetch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.1.1.tgz", - "integrity": "sha512-SMk+vKgU77PYotRdWzqZGTZeuFKlsJ0hu4KPviQKkfY+N3vn2MIzr0rvpnYpR8MtB3IEuhlEcuOLbGvLRlA+yg==", - "requires": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.3", - "formdata-polyfill": "^4.0.10" - } - }, - "web-streams-polyfill": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.0.tgz", - "integrity": "sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA==" - } - } -} diff --git a/trader/package.json b/trader/package.json deleted file mode 100644 index 665cf87..0000000 --- a/trader/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "trader", - "version": "0.2.0", - "description": "A Spice trading app", - "repository": "https://github.com/spiceai/samples/trader", - "main": "main.js", - "type": "module", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "author": "Spice AI", - "license": "MIT", - "dependencies": { - "node-fetch": "^3.1.1" - } -} \ No newline at end of file