diff --git a/community/tools/firebase2graphql/.eslintignore b/community/tools/firebase2graphql/.eslintignore deleted file mode 100644 index 6810b6c0ef8..00000000000 --- a/community/tools/firebase2graphql/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -./test/db.js -test-db diff --git a/community/tools/firebase2graphql/.eslintrc b/community/tools/firebase2graphql/.eslintrc deleted file mode 100644 index fa1cbd123ec..00000000000 --- a/community/tools/firebase2graphql/.eslintrc +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": "oclif", - "rules": { - "max-params": "off", - "no-console": "off", - "max-depth": "off", - "one-var": "off", - "complexity": "off", - "unicorn/no-process-exit": "off", - "unicorn/filename-case": "off", - "no-process-exit": "off", - "no-throw-literal": "off", - "node/no-unsupported-features": "off", - "no-warning-comments": "off", - "semi": [1, "always"], - "camelcase": "off", - "guard-for-in": "off" - } -} diff --git a/community/tools/firebase2graphql/.gitattributes b/community/tools/firebase2graphql/.gitattributes deleted file mode 100644 index 391f0a4e4b0..00000000000 --- a/community/tools/firebase2graphql/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -* text=auto -*.js text eol=lf diff --git a/community/tools/firebase2graphql/.gitignore b/community/tools/firebase2graphql/.gitignore deleted file mode 100644 index 04198f3536b..00000000000 --- a/community/tools/firebase2graphql/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -*-debug.log -*-error.log -/.nyc_output -/dist -/tmp -/yarn.lock -test-db -node_modules diff --git a/community/tools/firebase2graphql/CONTRIBUTING.md b/community/tools/firebase2graphql/CONTRIBUTING.md deleted file mode 100644 index c9466ff55ee..00000000000 --- a/community/tools/firebase2graphql/CONTRIBUTING.md +++ /dev/null @@ -1,29 +0,0 @@ -# Contributing to firebase2graphql - -## Issues - -Please open an issue related to your work. Add the label `c/firebase2graphql`. - -## Local developmet - -1. Make changes and save -2. Run the executable in the `bin` directory to test your code. Treat the executable as the command. For example: - - ``` - $ bin/run --help - ``` - -## Testing - -Please run the tests before making pull requests. - -To run the tests locally, you will need an instance of [Hasura GraphQL Engine](https://github.com/hasura/graphql-engine) running. To run the tests, run the command: - -``` -$ TEST_HGE_URL=https://hge.herokuapp.com npm test -``` - -### Test data sets - -Firebase RTD being a NoSQL database, there are very few data-sets available on the web. Since the tool takes heuristic based approach to convert the data, the more data we have the better results we can achieve. If you're aware of any such data-sets, please consider adding them to the test suite (test/data-sets). - diff --git a/community/tools/firebase2graphql/README.md b/community/tools/firebase2graphql/README.md index 72133009815..1ef5855d704 100644 --- a/community/tools/firebase2graphql/README.md +++ b/community/tools/firebase2graphql/README.md @@ -1,508 +1 @@ -# Firebase to GraphQL - -A CLI tool to help you try realtime GraphQL on your firebase data. It takes data exported from firebase and imports it into Postgres via Hasura GraphQL engine. - - -[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io) -[![Version](https://img.shields.io/npm/v/firebase2graphql.svg)](https://npmjs.org/package/firebase2graphql) - -![GIF](https://graphql-engine-cdn.hasura.io/assets/firebase2graphql/demo.gif) - -## Contents - -- [Getting started](#quick-start) -- [Installation](#installation) -- [Usage](#usage) -- [Command](#command) -- [Realtime](#realtime) -- [Usage comparison](#usage-comparison---firebase-sdk-vs-graphql) -- [Authentication](#authentication) -- [Next steps](#next-steps) -- [More information](#more-information) - - [Working](#working) - - [Normalization](#normalization) - - [Automatic](#automatic) - - [Manual](#manual) - - [Duplicates](#duplicates) - - [Overwrite](#overwrite) -- [Feedback](#feedback) - - -## Quick start - -1. Quickly get the GraphQL Engine running by clicking this button: - - [![Deploy to heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/hasura/graphql-engine-heroku) - - Note the URL. It will be of the form: `https://.herokuapp.com` - - > Check [this page](https://docs.hasura.io/1.0/graphql/manual/deployment/index.html) for other deployment options - -2. Go to `Firebase console > Database > Realtime Database` and click on `Export JSON` from the options on the upper right corner - - ![firebase-export](assets/firebase-export.png) - - The exported JSON will be something like this: - - ```json - { - "Articles": { - "A1": { - "Title": "Title1", - "Body": "Body1", - "IsUnpublished": false, - "Author": { - "Name": "AName1", - "Age": 11 - }, - "Comments": { - "C1": { - "Body": "Comment1", - "Author": { - "Name": "AName2", - "Sex": "M" - }, - "Date": "22-09-2018" - }, - "C2": { - "Body": "Comment2", - "Author": { - "Name": "AName1", - "Sex": "F" - }, - "Date": "21-09-2018" - } - } - }, - "A2": { - "Title": "Title2", - "Body": "Body2", - "IsUnpublished": true, - "Author": { - "Name": "AName2", - "Age": 22 - }, - "Comments": { - "C3": { - "Body": "Comment1", - "Author": { - "Name": "AName1", - "Sex": "F" - }, - "Date": "23-09-2018" - }, - "C4": { - "Body": "Comment2", - "Author": { - "Name": "AName2", - "Sex": "M" - }, - "Date": "24-09-2018" - } - } - } - }, - "Authors": { - "AT1": { - "Name": "AName1", - "Age": 11, - "Sex": "F", - "Articles": { - "A1": { - "Title": "Title1" - } - } - }, - "AT2": { - "Name": "AName2", - "Age": 22, - "Sex": "M", - "Articles": { - "A2": { - "Title": "Title2" - } - } - } - }, - "Comments": { - "C1": { - "Body": "Comment1", - "Author": { - "Name": "AName2" - }, - "Date": "22-09-2018" - }, - "C2": { - "Body": "Comment2", - "Author": { - "Name": "AName1" - }, - "Date": "21-09-2018" - }, - "C3": { - "Body": "Comment1", - "Author": { - "Name": "AName1" - }, - "Date": "23-09-2018" - }, - "C4": { - "Body": "Comment2", - "Author": { - "Name": "AName2" - }, - "Date": "24-09-2018" - } - } - } - ``` - -4. Use the CLI to import the data: - - ``` - npx firebase2graphql https://.herokuapp.com --db=./path/to/db.json --normalize - ``` - -5. That's it. You can now go to your GraphQL Engine URL `https://.herokuapp.com` and make awesome GraphQL Queries like: - - ```graphql - query { - Authors (order_by: {Name:asc}){ - Name - Age - Sex - Articles ( - order_by: {Title:asc} - where: { - IsUnpublished: { - _eq: false - } - } - ){ - Title - Body - Comments (order_by: {Date:desc}){ - Body - Authors { - Name - } - Date - } - } - } - } - ``` - -Check out [next steps](#next-steps). - -## Installation - -```bash -npm install -g firebase2graphql -``` - -## Usage - -**Without admin secret** - -``` -firebase2graphql https://hge.herokuapp.com -d ./path/to/db.json -``` - -**With admin secret** - -``` -firebase2graphql https://hge.herokuapp.com -s -d ./path/to/db.json -``` - -## Command - -```bash -firebase2graphql URL [flags] -``` - -### Args - -* `URL`: The URL where Hasura GraphQL Engine is running - -### Options - -- `-d --db`: path to the JS file that exports your sample JSON database -- `-n --normalize`: normalize the schema while importing -- `-o --overwrite`: (experimental) overwrite tables if they already exist in database -- `-v --version`: show CLI version -- `-h, --help`: show CLI help - -## Realtime - -With Hasura, you can query the data in Postgres realtime in the form of GraphQL subscriptions. In this way, using this tool, you get exactly the same Firebase API over GraphQL while retaining the live queries feature. - -Consider this query: - -```graphql -query { - user { - id - name - email - } -} -``` - -You can convert it into a subscription by simply replacing `query` with `subscription`. - -``` -subscription { - user { - id - name - email - } -} -``` - -## Usage comparison - Firebase SDK vs GraphQL - -A typical query to do a single read from the database using [Firebase SDK](https://firebase.google.com/docs/reference/), (javascript) would look something like: - -```javascript -firebase.database().ref('/users/' + userId).once('value').then(function(snapshot) { - var username = (snapshot.val() && snapshot.val().username) || 'Anonymous'; - // ... -}); -``` - -Equivalent GraphQL Query would look like: - -```graphql -query { - users(where: {uid: {_eq: userId}}) { - uid, - username - } -} -``` - -Similarly a write into database using Firebase SDK, would look something like: - -```javascript -firebase.database().ref('users/' + userId).set({ - username: name, - email: email, - profile_picture : imageUrl - }); -``` - -And the equivalent GraphQL Mutation would look like: - -```graphql -mutation { - insert_users(objects:[{ - uid: userId - username: name, - email: email, - profile_picture: imageUrl - }]) -} -``` - -## Authentication - -Hasura can be integrated with most standard Authentication mechanisms including Firebase and Auth0. [Check out the authentication docs here](https://docs.hasura.io/1.0/graphql/manual/auth/index.html). - -## Next steps - -Once you have imported your data, it is recommended that you make it production ready. - -1. [Normalize the data](#normalization) -2. Explore the GraphQL Engine Console to play with things such as - - - [Relationships](https://docs.hasura.io/1.0/graphql/manual/schema/relationships/index.html) - - [Permissions](https://docs.hasura.io/1.0/graphql/manual/auth/index.html) - - Using SQL - - [Set up async business logic using event triggers](https://docs.hasura.io/1.0/graphql/manual/event-triggers/index.html) - - [Create new tables](https://docs.hasura.io/1.0/graphql/manual/schema/basics.html) - -3. Set appropriate permissions. GraphQL Engine comes with [fine grained control layer](https://docs.hasura.io/1.0/graphql/manual/auth/index.html) that can be integrated with any standard Auth provider. - -## More information - -### Working - -We flatten the JSON database into tables and create children tables when data nesting is detected. - -In this way, you get almost the exact API over GraphQL that you had on Firebase. - -If you use the flag `--normalize`, the CLI finds out if the children tables are duplicates of the original tables and tries to normalize the data by removing duplicates and creating respective relationships. - -### Normalization - -#### Automatic - -The CLI provides a flag called `--normalize` if you want to normalize your denormalized database. - -A lot of guess-work is done by the CLI while normalizing the database. Here are some thing you need to know: - -1. Root level tables are never deleted. So if there are some relationships that you wish to create manually, you can do so. -2. Children tables are deleted if they are detected to be duplicates of some other root or child table. -3. In case of some children tables, when the data lacks a unique identifier, an extra unique field is added. In most cases, this field gets deleted while mergine a duplicate table with the original table. - -#### Manual - -In some cases, due to inconsistent field names or due to insufficient data, the CLI might not be able to normalize your database; but it makes sure that you do not lose any data. - -In such cases, you can normalize the data yourself. Lets look at an example. - -Consider this firebase database. This is the database of the official Firebase example app: - -```json -{ - "posts" : { - "-LMbLFOAW2q6GO1bD-5g" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "My first post content\nAnd body\nANd structure", - "starCount" : 0, - "title" : "My first post", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - }, - "-LMbLIv6VKHYul7p_PZ-" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "AKsdjak\naklsdjaskldjklas\nasdklfjaklsdfjklsda\nasdklfjasklf", - "starCount" : 0, - "title" : "Whatta proaaa", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - } - }, - "user-posts" : { - "4UPmbcaqZKT2NdAAqBahXj4tHYN2" : { - "-LMbLFOAW2q6GO1bD-5g" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "My first post content\nAnd body\nANd structure", - "starCount" : 0, - "title" : "My first post", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - }, - "-LMbLIv6VKHYul7p_PZ-" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "AKsdjak\naklsdjaskldjklas\nasdklfjaklsdfjklsda\nasdklfjasklf", - "starCount" : 0, - "title" : "Whatta proaaa", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - } - } - }, - "users" : { - "4UPmbcaqZKT2NdAAqBahXj4tHYN2" : { - "email" : "rishichandrawawhal@gmail.com", - "profile_picture" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "username" : "Eena" - } - } -} -``` - -In case of this JSON, the CLI will generate the following tables: - -```sql -users ( - _id text not null primary key, - email text, - profile_picture text, - username text -) - -posts ( - _id text not null primary key, - title text, - body text, - starCount int, - author text, - authorPic text, - uid text -) - -user_posts ( - _id text not null, - _id_2 text not null, - title text, - body text, - starCount int, - author text, - authorPic text, - uid text -) -``` - -As we can see, this is not the most efficient of schemas. - -- `posts(uid)` can be a foreign key referencing `users(_id)`. `posts(author)` and `posts(authorPic)` can be deleted if `users` and `posts` are related via a foreign key. -- `user_posts` table is obsolete if `posts` and `users` tables are deleted. - -To normalize it, here are the steps you must follow: - -1. Create the following foreign key constraints: - - ```sql - ALTER TABLE "posts" ADD CONSTRAINT "posts_users__uid" FOREIGN KEY ("uid") REFERENCES "users"("_id"); - - ALTER TABLE "posts" DROP COLUMN "author", DROP COLUMN "authorPic"; - - DROP TABLE "user_posts"; - ``` - - To create them, go to the Hasura Console and run the SQL in the `Data > SQL` section. - -2. Create the relationships. In the console, go the desired table and add the relationship suggested based on the Foreign key. For example for the `posts` table in the above schema, the suggested relationship would be suggested like: - - ![suggested](assets/suggested-rel.png) - - Click on `Add`. You can name it whatever you like. Lets call it `author` in this case. - - ![added](assets/added-rel.png) - - - Similarly, add the suggested relationships for other tables as well. - - -3. Once you have created relationships, you can start making fancy GraphQL queries like: - - ```graphql - query { - users (order_by: {username:asc}){ - username - profile_picture - email - posts (where: { starCount: { _gte: 100}}){ - title - body - starCount - } - } - } - ``` - -### Duplicates - -By default, the CLI gives you almost the exact API that you originally had in Firebase (of course, over GraphQL). But in that case, some duplicate tables might be created and you might not be able to leverage the complete power of GraphQL and Postgres. - -In such cases, you have three choices: - -1. Use the API as such if you prefer the exact API. -2. Go to the UI Console and delete the duplicates and normalize the database as you feel fit. -3. Use the `--normalize` flag and rerun the migration. In this case, the CLI will detect duplicates and make appropriate relationships between root nodes. (This feature is experimental and needs more test cases to attain stability. Contributions are welcome) - - -### Overwrite - -If your database already contains tables with the same name as the root fields of your JSON database, the command will fail. If you want to overwrite the database anyway, you should provide an additional flag `--overwrite`. - -## Feedback - -This project is still in alpha and we are actively looking for feedback about how the tool can be improved. If you are facing an issue, feel free to [open one here](https://github.com/hasura/graphql-engine/issues/new). Any positive or negative feedback would be appreciated. - ---- -Maintained with :heart: by Hasura +## This project has been moved to [hasura/firebase2graphql](https://github.com/hasura/firebase2graphql) diff --git a/community/tools/firebase2graphql/assets/added-rel.png b/community/tools/firebase2graphql/assets/added-rel.png deleted file mode 100644 index 5dba1e1284b..00000000000 Binary files a/community/tools/firebase2graphql/assets/added-rel.png and /dev/null differ diff --git a/community/tools/firebase2graphql/assets/firebase-export.png b/community/tools/firebase2graphql/assets/firebase-export.png deleted file mode 100644 index fce820f8db6..00000000000 Binary files a/community/tools/firebase2graphql/assets/firebase-export.png and /dev/null differ diff --git a/community/tools/firebase2graphql/assets/suggested-rel.png b/community/tools/firebase2graphql/assets/suggested-rel.png deleted file mode 100644 index 08c96c4def9..00000000000 Binary files a/community/tools/firebase2graphql/assets/suggested-rel.png and /dev/null differ diff --git a/community/tools/firebase2graphql/bin/run b/community/tools/firebase2graphql/bin/run deleted file mode 100755 index 3425e924c80..00000000000 --- a/community/tools/firebase2graphql/bin/run +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env node - -require('../src/command').run() -.catch(require('@oclif/errors/handle')) diff --git a/community/tools/firebase2graphql/bin/run.cmd b/community/tools/firebase2graphql/bin/run.cmd deleted file mode 100644 index 968fc30758e..00000000000 --- a/community/tools/firebase2graphql/bin/run.cmd +++ /dev/null @@ -1,3 +0,0 @@ -@echo off - -node "%~dp0\run" %* diff --git a/community/tools/firebase2graphql/package-lock.json b/community/tools/firebase2graphql/package-lock.json deleted file mode 100644 index 5db865d6529..00000000000 --- a/community/tools/firebase2graphql/package-lock.json +++ /dev/null @@ -1,2420 +0,0 @@ -{ - "name": "firebase2graphql", - "version": "0.0.1-alpha1", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@cronvel/get-pixels": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@cronvel/get-pixels/-/get-pixels-3.3.1.tgz", - "integrity": "sha512-jgDb8vGPkpjRDbiYyHTI2Bna4HJysjPNSiERzBnRJjCR/YqC3u0idTae0tmNECsaZLOpAWmlK9wiIwnLGIT9Bg==", - "requires": { - "jpeg-js": "^0.1.1", - "ndarray": "^1.0.13", - "ndarray-pack": "^1.1.1", - "node-bitmap": "0.0.1", - "omggif": "^1.0.5", - "pngjs": "^2.0.0" - } - }, - "@oclif/command": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@oclif/command/-/command-1.5.0.tgz", - "integrity": "sha512-ZKvLLLCtIVNgsUXIECOz7WhTOw5j+eyG5Ly7AncJrCN2ENfFfp5BobX6Vvg3P2eL01RxZhnSXIiyJX79QLiD6Q==", - "requires": { - "@oclif/errors": "^1.1.2", - "@oclif/parser": "^3.6.0", - "debug": "^3.1.0", - "semver": "^5.5.0" - } - }, - "@oclif/config": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/@oclif/config/-/config-1.7.4.tgz", - "integrity": "sha512-vkK/9PXNsOEEdjsb7D/slclLJNvwTax7e2ApjOpnh8sYL34LcpVC9RA05ypCeoDvQiihN8ZdbMut0/AwskKAaQ==", - "requires": { - "debug": "^3.1.0", - "tslib": "^1.9.3" - } - }, - "@oclif/errors": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@oclif/errors/-/errors-1.2.0.tgz", - "integrity": "sha512-DIcWydwfESHVMwrZt3lj5qLAiX296vdfA6K7utCa2/6nmT1JgBc102iFcjpmNxUzDKBU67NKCVBPSMCBDD/1wg==", - "requires": { - "clean-stack": "^1.3.0", - "fs-extra": "^7.0.0", - "indent-string": "^3.2.0", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^3.0.1" - } - }, - "@oclif/linewrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz", - "integrity": "sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==" - }, - "@oclif/parser": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/@oclif/parser/-/parser-3.6.1.tgz", - "integrity": "sha512-H5gyGM3GaDFr1SHt7gsHfMEmt0/Q5SQYOqmtBlpofYaqiof8wdHZQAj4KY2oJpcy4tnsRJrFM3fN3GNEARBgtg==", - "requires": { - "@oclif/linewrap": "^1.0.0", - "chalk": "^2.4.1", - "tslib": "^1.9.3" - } - }, - "@oclif/plugin-help": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-2.1.1.tgz", - "integrity": "sha512-eP1Z1yQNgQX3dpvCVQkr3iYVVVGKnWmI1pWxxqPIoUHZ6rmMZtYiawmPPpO/VSouV0ml0eoJ4HBPQfZfhiF8nw==", - "requires": { - "@oclif/command": "^1.5.0", - "chalk": "^2.4.1", - "indent-string": "^3.2.0", - "lodash.template": "^4.4.0", - "string-width": "^2.1.1", - "widest-line": "^2.0.0", - "wrap-ansi": "^4.0.0" - }, - "dependencies": { - "wrap-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz", - "integrity": "sha512-uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg==", - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" - } - } - } - }, - "@oclif/screen": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@oclif/screen/-/screen-1.0.2.tgz", - "integrity": "sha512-9k2C/Oyk6OwcvyBrKbSGDfH0baI986Dn8ZDxl8viIg8shl40TSPVx+TqXExUeA0Pj02xSdXEt5YXgDFP5Opc5g==" - }, - "@types/async": { - "version": "2.0.49", - "resolved": "https://registry.npmjs.org/@types/async/-/async-2.0.49.tgz", - "integrity": "sha512-Benr3i5odUkvpFkOpzGqrltGdbSs+EVCkEBGXbuR7uT0VzhXKIkhem6PDzHdx5EonA+rfbB3QvP6aDOw5+zp5Q==", - "optional": true - }, - "@types/graphql": { - "version": "0.12.6", - "resolved": "http://registry.npmjs.org/@types/graphql/-/graphql-0.12.6.tgz", - "integrity": "sha512-wXAVyLfkG1UMkKOdMijVWFky39+OD/41KftzqfX1Oejd0Gm6dOIKjCihSVECg6X7PHjftxXmfOKA/d1H79ZfvQ==" - }, - "@types/zen-observable": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.0.tgz", - "integrity": "sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg==" - }, - "accepts": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", - "requires": { - "mime-types": "~2.1.18", - "negotiator": "0.6.1" - } - }, - "acorn": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", - "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", - "dev": true - }, - "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "dev": true, - "requires": { - "acorn": "^3.0.4" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "http://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", - "dev": true - } - } - }, - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "dev": true, - "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "ajv-keywords": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", - "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=", - "dev": true - }, - "ansi-escapes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==" - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - }, - "apollo-cache": { - "version": "1.1.17", - "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.17.tgz", - "integrity": "sha512-7sp24n2HZO4vXgTaKNomLyIfGxG4gDdDkBB0jkRzRi7HhnKmfwhiF/RCiKNbgLdrPX151INdls0KwIVliD0dHQ==", - "requires": { - "apollo-utilities": "^1.0.21" - } - }, - "apollo-cache-inmemory": { - "version": "1.2.10", - "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.2.10.tgz", - "integrity": "sha512-eBusPFVtYIuo+PIfJdAwUCQ4cs7AJ4mB7sTdXxNQCXToYw8mzE6EfHnV37kdVfBXSaa82BzE2rb/YUq/duuamw==", - "requires": { - "apollo-cache": "^1.1.17", - "apollo-utilities": "^1.0.21", - "graphql-anywhere": "^4.1.19" - } - }, - "apollo-client": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.4.2.tgz", - "integrity": "sha512-g1z23umaVSoKLj9xNl0aAnk2KBF4JeBi7MeKFc9CGTixH7TkqeQUQtxcjrC7j2h4KmDbuhOAHOFUGf8YshN+ag==", - "requires": { - "@types/async": "2.0.49", - "@types/zen-observable": "^0.8.0", - "apollo-cache": "1.1.17", - "apollo-link": "^1.0.0", - "apollo-link-dedup": "^1.0.0", - "apollo-utilities": "1.0.21", - "symbol-observable": "^1.0.2", - "zen-observable": "^0.8.0" - } - }, - "apollo-link": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.2.tgz", - "integrity": "sha512-Uk/BC09dm61DZRDSu52nGq0nFhq7mcBPTjy5EEH1eunJndtCaNXQhQz/BjkI2NdrfGI+B+i5he6YSoRBhYizdw==", - "requires": { - "@types/graphql": "0.12.6", - "apollo-utilities": "^1.0.0", - "zen-observable-ts": "^0.8.9" - } - }, - "apollo-link-dedup": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.9.tgz", - "integrity": "sha512-RbuEKpmSHVMtoREMPh2wUFTeh65q+0XPVeqgaOP/rGEAfvLyOMvX0vT2nVaejMohoMxuUnfZwpldXaDFWnlVbg==", - "requires": { - "apollo-link": "^1.2.2" - } - }, - "apollo-link-http": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.4.tgz", - "integrity": "sha512-e9Ng3HfnW00Mh3TI6DhNRfozmzQOtKgdi+qUAsHBOEcTP0PTAmb+9XpeyEEOueLyO0GXhB92HUCIhzrWMXgwyg==", - "requires": { - "apollo-link": "^1.2.2", - "apollo-link-http-common": "^0.2.4" - } - }, - "apollo-link-http-common": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.4.tgz", - "integrity": "sha512-4j6o6WoXuSPen9xh4NBaX8/vL98X1xY2cYzUEK1F8SzvHe2oFONfxJBTekwU8hnvapcuq8Qh9Uct+gelu8T10g==", - "requires": { - "apollo-link": "^1.2.2" - } - }, - "apollo-link-ws": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/apollo-link-ws/-/apollo-link-ws-1.0.8.tgz", - "integrity": "sha512-ucuGvr8CBBwCHl/Rbtyuv9Fn0FN5Qoyvy84KHtuMl2Uux2Sq+jt3bUum+pZ+hZntEd9k8M1OjrrXqRJ4PtEpyA==", - "requires": { - "apollo-link": "^1.2.2" - } - }, - "apollo-utilities": { - "version": "1.0.21", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.21.tgz", - "integrity": "sha512-ZcxELlEl+sDCYBgEMdNXJAsZtRVm8wk4HIA58bMsqYfd1DSAJQEtZ93F0GZgYNAGy3QyaoBeZtbb0/01++G8JQ==", - "requires": { - "fast-json-stable-stringify": "^2.0.0", - "fclone": "^1.0.11" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=" - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "body-parser": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", - "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.1", - "http-errors": "~1.6.2", - "iconv-lite": "0.4.19", - "on-finished": "~2.3.0", - "qs": "6.5.1", - "raw-body": "2.3.2", - "type-is": "~1.6.15" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "caller-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", - "dev": true, - "requires": { - "callsites": "^0.2.0" - } - }, - "callsites": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=", - "dev": true - }, - "cardinal": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", - "integrity": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=", - "requires": { - "ansicolors": "~0.3.2", - "redeyed": "~2.1.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", - "dev": true - }, - "circular-json": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", - "dev": true - }, - "clean-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", - "integrity": "sha1-jffHquUf02h06PjQW5GAvBGj/tc=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "clean-stack": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz", - "integrity": "sha1-noIVAa6XmYbEax1m0tQy2y/UrjE=" - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cli-ux": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/cli-ux/-/cli-ux-4.8.1.tgz", - "integrity": "sha512-ehGXI54J7A4WJOa+fe0GDxcl6xmYLQmXDHptTtsWQDqWNXFOJQJzTHaJaFVOSo7e1f/kXtfvS1sPttQqTw44BA==", - "requires": { - "@oclif/errors": "^1.2.0", - "@oclif/linewrap": "^1.0.0", - "@oclif/screen": "^1.0.2", - "ansi-styles": "^3.2.1", - "cardinal": "^2.1.1", - "chalk": "^2.4.1", - "clean-stack": "^1.3.0", - "extract-stack": "^1.0.0", - "fs-extra": "^7.0.0", - "hyperlinker": "^1.0.0", - "indent-string": "^3.2.0", - "is-wsl": "^1.1.0", - "lodash": "^4.17.10", - "password-prompt": "^1.0.7", - "semver": "^5.5.1", - "strip-ansi": "^4.0.0", - "supports-color": "^5.5.0", - "supports-hyperlinks": "^1.0.1" - } - }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "dev": true - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "dev": true - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "colors": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz", - "integrity": "sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "cross-fetch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.2.2.tgz", - "integrity": "sha1-pH/09/xxLauo9qaVoRyUhEDUVyM=", - "requires": { - "node-fetch": "2.1.2", - "whatwg-fetch": "2.0.4" - }, - "dependencies": { - "node-fetch": { - "version": "2.1.2", - "resolved": "http://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz", - "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=" - } - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "cwise-compiler": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", - "integrity": "sha1-9NZnQQ6FDToxOn0tt7HlBbsDTMU=", - "requires": { - "uniq": "^1.0.0" - } - }, - "debug": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.5.tgz", - "integrity": "sha512-D61LaDQPQkxJ5AUM2mbSJRbPkNs/TmdmOeLAi1hgDkpDfIfetSrjmWhccwtuResSwMbACjx/xXQofvM9CE/aeg==", - "requires": { - "ms": "^2.1.1" - } - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "dev": true, - "requires": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - } - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "eslint": { - "version": "4.19.1", - "resolved": "http://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz", - "integrity": "sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ==", - "dev": true, - "requires": { - "ajv": "^5.3.0", - "babel-code-frame": "^6.22.0", - "chalk": "^2.1.0", - "concat-stream": "^1.6.0", - "cross-spawn": "^5.1.0", - "debug": "^3.1.0", - "doctrine": "^2.1.0", - "eslint-scope": "^3.7.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^3.5.4", - "esquery": "^1.0.0", - "esutils": "^2.0.2", - "file-entry-cache": "^2.0.0", - "functional-red-black-tree": "^1.0.1", - "glob": "^7.1.2", - "globals": "^11.0.1", - "ignore": "^3.3.3", - "imurmurhash": "^0.1.4", - "inquirer": "^3.0.6", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.9.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.2", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.2", - "pluralize": "^7.0.0", - "progress": "^2.0.0", - "regexpp": "^1.0.1", - "require-uncached": "^1.0.3", - "semver": "^5.3.0", - "strip-ansi": "^4.0.0", - "strip-json-comments": "~2.0.1", - "table": "4.0.2", - "text-table": "~0.2.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - } - } - }, - "eslint-ast-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz", - "integrity": "sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA==", - "dev": true, - "requires": { - "lodash.get": "^4.4.2", - "lodash.zip": "^4.2.0" - } - }, - "eslint-config-oclif": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/eslint-config-oclif/-/eslint-config-oclif-1.5.1.tgz", - "integrity": "sha512-r5b8sUuF7wVosygQiuBOZem+P0kCpxeMOw8EPubfcvzMj9OHVZ6boF+a7JvQQNC++R9Pi/Sw3roQxLiAzyur1Q==", - "dev": true, - "requires": { - "eslint-config-xo-space": "^0.18.0", - "eslint-plugin-mocha": "^5.0.0", - "eslint-plugin-node": "^6.0.1", - "eslint-plugin-unicorn": "^4.0.3" - } - }, - "eslint-config-xo": { - "version": "0.20.1", - "resolved": "http://registry.npmjs.org/eslint-config-xo/-/eslint-config-xo-0.20.1.tgz", - "integrity": "sha512-bhDRezvlbYNZn8SHv0WE8aPsdPtH3sq1IU2SznyOtmRwi6e/XQkzs+Kaw1hA9Pz4xmkG796egIsFY2RD6fwUeQ==", - "dev": true - }, - "eslint-config-xo-space": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/eslint-config-xo-space/-/eslint-config-xo-space-0.18.0.tgz", - "integrity": "sha512-WtOEyZ4kvs2RDfK2bCQ24qlbJ8Izc/AfkjqD7DqKqXXih2I4brHxIoQwtgDdnbYWgFG4LuS/f6cn7zBE/JVLSw==", - "dev": true, - "requires": { - "eslint-config-xo": "^0.20.0" - } - }, - "eslint-plugin-mocha": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-5.2.0.tgz", - "integrity": "sha512-4VTX/qIoxUFRnXLNm6bEhEJyfGnGagmQzV4TWXKzkZgIYyP2FSubEdCjEFTyS/dGwSVRWCWGX7jO7BK8R0kppg==", - "dev": true, - "requires": { - "ramda": "^0.25.0" - } - }, - "eslint-plugin-node": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz", - "integrity": "sha512-Q/Cc2sW1OAISDS+Ji6lZS2KV4b7ueA/WydVWd1BECTQwVvfQy5JAi3glhINoKzoMnfnuRgNP+ZWKrGAbp3QDxw==", - "dev": true, - "requires": { - "ignore": "^3.3.6", - "minimatch": "^3.0.4", - "resolve": "^1.3.3", - "semver": "^5.4.1" - } - }, - "eslint-plugin-unicorn": { - "version": "4.0.3", - "resolved": "http://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-4.0.3.tgz", - "integrity": "sha512-F1JMyd42hx4qGhIaVdOSbDyhcxPgTy4BOzctTCkV+hqebPBUOAQn1f5AhMK2LTyiqCmKiTs8huAErbLBSWKoCQ==", - "dev": true, - "requires": { - "clean-regexp": "^1.0.0", - "eslint-ast-utils": "^1.0.0", - "import-modules": "^1.1.0", - "lodash.camelcase": "^4.1.1", - "lodash.kebabcase": "^4.0.1", - "lodash.snakecase": "^4.0.1", - "lodash.upperfirst": "^4.2.0", - "safe-regex": "^1.1.0" - } - }, - "eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", - "dev": true - }, - "espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", - "dev": true, - "requires": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "esquery": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", - "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", - "dev": true, - "requires": { - "estraverse": "^4.0.0" - } - }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", - "dev": true, - "requires": { - "estraverse": "^4.1.0" - } - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - }, - "eventemitter3": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz", - "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==" - }, - "express": { - "version": "4.16.3", - "resolved": "http://registry.npmjs.org/express/-/express-4.16.3.tgz", - "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=", - "requires": { - "accepts": "~1.3.5", - "array-flatten": "1.1.1", - "body-parser": "1.18.2", - "content-disposition": "0.5.2", - "content-type": "~1.0.4", - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.1.1", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.3", - "qs": "6.5.1", - "range-parser": "~1.2.0", - "safe-buffer": "5.1.1", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "external-editor": { - "version": "2.2.0", - "resolved": "http://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", - "dev": true, - "requires": { - "chardet": "^0.4.0", - "iconv-lite": "^0.4.17", - "tmp": "^0.0.33" - } - }, - "extract-stack": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/extract-stack/-/extract-stack-1.0.0.tgz", - "integrity": "sha1-uXrK+UQe6iMyUpYktzL8WhyBZfo=" - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", - "dev": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fclone": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/fclone/-/fclone-1.0.11.tgz", - "integrity": "sha1-EOhdo4v+p/xZk0HClu4ddyZu5kA=" - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-entry-cache": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", - "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", - "dev": true, - "requires": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" - } - }, - "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "flat-cache": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", - "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", - "dev": true, - "requires": { - "circular-json": "^0.3.1", - "del": "^2.0.2", - "graceful-fs": "^4.1.2", - "write": "^0.2.1" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - }, - "fs-extra": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.0.tgz", - "integrity": "sha512-EglNDLRpmaTWiD/qraZn6HREAEAHJcJOmxNEYwq6xeMKnVMAy3GUcFB+wXt2C6k4CNvB/mP1y/U3dzvKKj5OtQ==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "globals": { - "version": "11.7.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz", - "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==", - "dev": true - }, - "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "graphql": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-0.9.1.tgz", - "integrity": "sha1-9NFUy+wFTUpdOxvpXyNDXAmqhsg=", - "requires": { - "iterall": "1.0.3" - } - }, - "graphql-anywhere": { - "version": "4.1.19", - "resolved": "https://registry.npmjs.org/graphql-anywhere/-/graphql-anywhere-4.1.19.tgz", - "integrity": "sha512-mQlvbECzYPBcgBC9JsdM4v+DSvNmcIP+8Vwr+ij3gktbaLSE0Iza30mztuz40Jlf7ooMs+0emBZucNjLzqz7tA==", - "requires": { - "apollo-utilities": "^1.0.21" - } - }, - "graphql-config": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.1.tgz", - "integrity": "sha512-eb4FzlODifHE/Q+91QptAmkGw39wL5ToinJ2556UUsGt2drPc4tzifL+HSnHSaxiIbH8EUhc/Fa6+neinF04qA==", - "requires": { - "graphql-import": "^0.4.4", - "graphql-request": "^1.5.0", - "js-yaml": "^3.10.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.4" - } - }, - "graphql-import": { - "version": "0.4.5", - "resolved": "http://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz", - "integrity": "sha512-G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ==", - "requires": { - "lodash": "^4.17.4" - } - }, - "graphql-language-service-interface": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-interface/-/graphql-language-service-interface-1.3.2.tgz", - "integrity": "sha512-sOxFV5sBSnYtKIFHtlmAHHVdhok7CRbvCPLcuHvL4Q1RSgKRsPpeHUDKU+yCbmlonOKn/RWEKaYWrUY0Sgv70A==", - "requires": { - "graphql-config": "2.0.1", - "graphql-language-service-parser": "^1.2.2", - "graphql-language-service-types": "^1.2.2", - "graphql-language-service-utils": "^1.2.2" - } - }, - "graphql-language-service-parser": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-parser/-/graphql-language-service-parser-1.2.2.tgz", - "integrity": "sha512-38zMqJibNKeQe3GheyJtBENoXMp+qc29smiiRQtHLZcwnQfsYtu6reJZKxxwzU7XOVh3SedNH15Gf3LjWJVkiQ==", - "requires": { - "graphql-config": "2.0.1", - "graphql-language-service-types": "^1.2.2" - } - }, - "graphql-language-service-types": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-types/-/graphql-language-service-types-1.2.2.tgz", - "integrity": "sha512-WEAYYCP4jSzbz/Mw0Klc7HHMgtUHLgtaPMV6zyMMmvefCg/yBUkv7wREXKmqF1k1u9+f5ZX3dki0BMaXiwmJug==", - "requires": { - "graphql-config": "2.0.1" - } - }, - "graphql-language-service-utils": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-1.2.2.tgz", - "integrity": "sha512-98hzn1Dg3sSAiB+TuvNwWAoBrzuHs8NylkTK26TFyBjozM5wBZttp+T08OvOt+9hCFYRa43yRPrWcrs78KH9Hw==", - "requires": { - "graphql-config": "2.0.1", - "graphql-language-service-types": "^1.2.2" - } - }, - "graphql-request": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.2.tgz", - "integrity": "sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==", - "requires": { - "cross-fetch": "2.2.2" - } - }, - "graphql-tag": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.9.2.tgz", - "integrity": "sha512-qnNmof9pAqj/LUzs3lStP0Gw1qhdVCUS7Ab7+SUB6KD5aX1uqxWQRwMnOGTkhKuLvLNIs1TvNz+iS9kUGl1MhA==" - }, - "graphqurl": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/graphqurl/-/graphqurl-0.3.2.tgz", - "integrity": "sha512-v9jF389MWoDaf0zQBYbyWzOt01YxiQ3IxNm8gRwG90LzXenY4tBMfKqtQr6vKCKFjX6L+vM6GmAKD/s8u/ItqA==", - "requires": { - "@oclif/command": "^1.4.35", - "@oclif/config": "^1.6.33", - "@oclif/errors": "^1.1.2", - "@oclif/plugin-help": "^2.0.5", - "apollo-cache-inmemory": "^1.2.6", - "apollo-client": "^2.3.7", - "apollo-link": "^1.2.2", - "apollo-link-http": "^1.5.4", - "apollo-link-ws": "^1.0.8", - "cli-ux": "^4.7.3", - "express": "^4.16.3", - "graphql": "0.9.1", - "graphql-language-service-interface": "^1.2.2", - "graphql-language-service-utils": "^1.2.2", - "graphql-tag": "^2.9.2", - "node-fetch": "^2.2.0", - "opn": "^5.3.0", - "subscriptions-transport-ws": "^0.9.13", - "terminal-kit": "^1.19.2", - "ws": "^6.0.0" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "http-errors": { - "version": "1.6.3", - "resolved": "http://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "hyperlinker": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz", - "integrity": "sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==" - }, - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" - }, - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", - "dev": true - }, - "import-modules": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/import-modules/-/import-modules-1.1.0.tgz", - "integrity": "sha1-dI23nFzEK7lwHvq0JPiU5yYA6dw=", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", - "dev": true, - "requires": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^2.0.4", - "figures": "^2.0.0", - "lodash": "^4.3.0", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", - "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", - "through": "^2.3.6" - } - }, - "iota-array": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", - "integrity": "sha1-ge9X/l0FgUzVjCSDYyqZwwoOgIc=" - }, - "ipaddr.js": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", - "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=" - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", - "dev": true - }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "requires": { - "is-path-inside": "^1.0.0" - } - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true - }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", - "dev": true - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - }, - "iterall": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.0.3.tgz", - "integrity": "sha1-4LMZWPg1ATwyP/CxCUOCmsaapLc=" - }, - "jpeg-js": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.1.2.tgz", - "integrity": "sha1-E1uZLAV1yYXPoPSUoyJ+0jhYPs4=" - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - }, - "js-yaml": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", - "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "lazyness": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazyness/-/lazyness-1.0.1.tgz", - "integrity": "sha512-8NFbHnT+GkzqsZzOUxoxkW5ItkhySf2yIyzZcryg5AbfhH9NB2fXdtfpREFK1iYa/K224dmxEcZOYhVQ1KqXDw==" - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "lodash": { - "version": "4.17.10", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", - "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", - "dev": true - }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", - "dev": true - }, - "lodash.kebabcase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", - "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY=", - "dev": true - }, - "lodash.snakecase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", - "integrity": "sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40=", - "dev": true - }, - "lodash.template": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", - "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=", - "requires": { - "lodash._reinterpolate": "~3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz", - "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=", - "requires": { - "lodash._reinterpolate": "~3.0.0" - } - }, - "lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=", - "dev": true - }, - "lodash.zip": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.zip/-/lodash.zip-4.2.0.tgz", - "integrity": "sha1-7GZi5IlkCO1KtsVCo5kLcswIACA=", - "dev": true - }, - "lru-cache": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", - "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - }, - "mime-db": { - "version": "1.36.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz", - "integrity": "sha512-L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==" - }, - "mime-types": { - "version": "2.1.20", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz", - "integrity": "sha512-HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==", - "requires": { - "mime-db": "~1.36.0" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - } - }, - "moment": { - "version": "2.22.2", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz", - "integrity": "sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y=" - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true - }, - "ndarray": { - "version": "1.0.18", - "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.18.tgz", - "integrity": "sha1-tg06cyJOxVXQ+qeXEeUCRI/T95M=", - "requires": { - "iota-array": "^1.0.0", - "is-buffer": "^1.0.2" - } - }, - "ndarray-pack": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", - "integrity": "sha1-jK6+qqJNXs9w/4YCBjeXfajuWFo=", - "requires": { - "cwise-compiler": "^1.1.2", - "ndarray": "^1.0.13" - } - }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" - }, - "nextgen-events": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/nextgen-events/-/nextgen-events-1.1.0.tgz", - "integrity": "sha512-Emz5rh584fygInd3gtwP+xGyJhEnyxQa0/Xbmw8sbpXVGV/luqDnVPq1cQopYR7qg6KUlPfwWVhxrhZri1wDAw==" - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, - "node-bitmap": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", - "integrity": "sha1-GA6scAPgxwdhjvMTaPYvhLKmkJE=" - }, - "node-fetch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.0.tgz", - "integrity": "sha512-OayFWziIxiHY8bCUyLX6sTpDH8Jsbp4FfYd1j1f7vZyfgkcOnAyM4oQR16f8a0s7Gl/viMGRey8eScYk4V4EZA==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "omggif": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.9.tgz", - "integrity": "sha1-3LcCTazVDFK00wPwSALJHAV8dl8=" - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "opn": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", - "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", - "requires": { - "is-wsl": "^1.1.0" - } - }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" - }, - "password-prompt": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.0.7.tgz", - "integrity": "sha1-jid0jTQAvJyRQNWt5wXft6632Ro=", - "requires": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "pluralize": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", - "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", - "dev": true - }, - "pngjs": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-2.3.1.tgz", - "integrity": "sha1-EdHhK5y2TWPjDBQ6Mw9MH1Z9qF8=" - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "dev": true - }, - "progress": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", - "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=", - "dev": true - }, - "proxy-addr": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", - "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.8.0" - } - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" - }, - "ramda": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.25.0.tgz", - "integrity": "sha512-GXpfrYVPwx3K7RQ6aYT8KPS8XViSXUVJT1ONhoKPE9VAleW42YE+U+8VEyGWt41EnEQW7gwecYJriTI0pKoecQ==", - "dev": true - }, - "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" - }, - "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "unpipe": "1.0.0" - }, - "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" - } - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" - } - } - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "redeyed": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", - "integrity": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=", - "requires": { - "esprima": "~4.0.0" - } - }, - "regexpp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz", - "integrity": "sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==", - "dev": true - }, - "require-uncached": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", - "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", - "dev": true, - "requires": { - "caller-path": "^0.1.0", - "resolve-from": "^1.0.0" - } - }, - "resolve": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", - "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", - "dev": true, - "requires": { - "path-parse": "^1.0.5" - } - }, - "resolve-from": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=", - "dev": true - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", - "dev": true, - "requires": { - "glob": "^7.0.5" - } - }, - "run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "dev": true, - "requires": { - "is-promise": "^2.1.0" - } - }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=", - "dev": true - }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", - "dev": true, - "requires": { - "rx-lite": "*" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "semver": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", - "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==" - }, - "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "seventh": { - "version": "0.7.17", - "resolved": "https://registry.npmjs.org/seventh/-/seventh-0.7.17.tgz", - "integrity": "sha512-f4/IctiUWhktR2zA4Gj0b73opEFnnwPuQxBI0LNtpGTPL66Qep1Hkh+Z46KTxPmvzdLhStU/tV7EKgvM9IaWfA==", - "requires": { - "setimmediate": "^1.0.5" - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "slice-ansi": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", - "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - }, - "string-kit": { - "version": "0.8.12", - "resolved": "https://registry.npmjs.org/string-kit/-/string-kit-0.8.12.tgz", - "integrity": "sha512-6MhHyVsvmMDosyaEa9omhTc19ArJBpGQe2Ez6G1Gxz/TjjEhiEm3hCD5e6VVCQXTw9dVQnSg0d4fNaQPG1Zc5w==", - "requires": { - "xregexp": "^4.2.0" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "subscriptions-transport-ws": { - "version": "0.9.14", - "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.14.tgz", - "integrity": "sha512-n1+mgupVdJn1MIls1ZhSJurJjc+islp7Tv9EIaEJ3HAd9DaINneKq0KRqOYNOrvUI7orVWGomEnlIxoudjfbeA==", - "requires": { - "backo2": "^1.0.2", - "eventemitter3": "^3.1.0", - "iterall": "^1.2.1", - "symbol-observable": "^1.0.4", - "ws": "^5.2.0" - }, - "dependencies": { - "iterall": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz", - "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==" - }, - "ws": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", - "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", - "requires": { - "async-limiter": "~1.0.0" - } - } - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "supports-hyperlinks": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz", - "integrity": "sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==", - "requires": { - "has-flag": "^2.0.0", - "supports-color": "^5.0.0" - }, - "dependencies": { - "has-flag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" - } - } - }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" - }, - "table": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz", - "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==", - "dev": true, - "requires": { - "ajv": "^5.2.3", - "ajv-keywords": "^2.1.0", - "chalk": "^2.1.0", - "lodash": "^4.17.4", - "slice-ansi": "1.0.0", - "string-width": "^2.1.1" - } - }, - "terminal-kit": { - "version": "1.26.2", - "resolved": "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.26.2.tgz", - "integrity": "sha512-MQgU3EHQPNLD/45lXz0qqaVDnlVs++cKO8x8eVjdXNGEWmuFgms3OFbSJiUW2i7UgdmweqeiOBwl9VWHAMyaeA==", - "requires": { - "@cronvel/get-pixels": "^3.3.1", - "lazyness": "^1.0.1", - "ndarray": "^1.0.18", - "nextgen-events": "^1.1.0", - "seventh": "^0.7.15", - "string-kit": "^0.8.8", - "tree-kit": "^0.5.27" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "http://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tree-kit": { - "version": "0.5.27", - "resolved": "https://registry.npmjs.org/tree-kit/-/tree-kit-0.5.27.tgz", - "integrity": "sha512-0AtAzYDYaKSzeEPK3SI72lg/io5jrBxnT1gIRxEQasJycpQf5iXGh6YAl1kkh9wHmLlNRhDx0oj+GZEQHVe+cw==" - }, - "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-is": { - "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.18" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - }, - "uuid-validate": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/uuid-validate/-/uuid-validate-0.0.3.tgz", - "integrity": "sha512-Fykw5U4eZESbq739BeLvEBFRuJODfrlmjx5eJux7W817LjRaq4b7/i4t2zxQmhcX+fAj4nMfRdTzO4tmwLKn0w==" - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - }, - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "http://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - }, - "widest-line": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz", - "integrity": "sha1-AUKk6KJD+IgsAjOqDgKBqnYVInM=", - "requires": { - "string-width": "^2.1.1" - } - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - }, - "wrap-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", - "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", - "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } - }, - "ws": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.0.0.tgz", - "integrity": "sha512-c2UlYcAZp1VS8AORtpq6y4RJIkJ9dQz18W32SpR/qXGfLDZ2jU4y4wKvvZwqbi7U6gxFQTeE+urMbXU/tsDy4w==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "xregexp": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.2.0.tgz", - "integrity": "sha512-IyMa7SVe9FyT4WbQVW3b95mTLVceHhLEezQ02+QMvmIqDnKTxk0MLWIQPSW2MXAr1zQb+9yvwYhcyQULneh3wA==" - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - }, - "zen-observable": { - "version": "0.8.9", - "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.9.tgz", - "integrity": "sha512-Y9kPzjGvIZ5jchSlqlCpBW3I82zBBL4z+ulXDRVA1NwsKzjt5kwAi+gOYIy0htNkfuehGZZtP5mRXHRV6TjDWw==" - }, - "zen-observable-ts": { - "version": "0.8.9", - "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.9.tgz", - "integrity": "sha512-KJz2O8FxbAdAU5CSc8qZ1K2WYEJb1HxS6XDRF+hOJ1rOYcg6eTMmS9xYHCXzqZZzKw6BbXWyF4UpwSsBQnHJeA==", - "requires": { - "zen-observable": "^0.8.0" - } - } - } -} diff --git a/community/tools/firebase2graphql/package.json b/community/tools/firebase2graphql/package.json deleted file mode 100644 index fdecedbc137..00000000000 --- a/community/tools/firebase2graphql/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "firebase2graphql", - "description": "A CLI tool to get GraphQL over Firebase data dump", - "version": "0.0.2", - "author": "Hasura", - "bin": { - "firebase2graphql": "./bin/run", - "f2g": "./bin/run" - }, - "bugs": "https://github.com/hasura/graphql-engine/issues?q=is%3Aissue+is%3Aopen+label%3Ac%2Ffirebase2graphql", - "dependencies": { - "@oclif/command": "^1.4.35", - "@oclif/config": "^1.6.33", - "@oclif/errors": "^1.1.2", - "@oclif/plugin-help": "^2.0.5", - "cli-ux": "^4.7.3", - "colors": "^1.3.2", - "graphqurl": "^0.3.2", - "moment": "^2.22.2", - "node-fetch": "^2.2.0", - "uuid": "^3.3.2", - "uuid-validate": "0.0.3" - }, - "devDependencies": { - "eslint": "^4.19.1", - "eslint-config-oclif": "^1.5.1" - }, - "engines": { - "node": ">=8.0.0" - }, - "files": [ - "/bin", - "/src" - ], - "homepage": "https://github.com/wawhal/graphql-engine/tree/master/community/tools/firebase2graphql", - "keywords": [ - "oclif", - "cli", - "graphql", - "grapql-engine", - "json", - "firebase" - ], - "license": "MIT", - "main": "src/command.js", - "oclif": { - "bin": "firebase2graphql" - }, - "repository": "hasura/graphql-engine", - "scripts": { - "eslint": "eslint .", - "eslintfix": "eslint . --fix", - "posttest": "npm run eslint", - "test": "cd test && ./test.sh" - }, - "pre-commit": [ - "eslintfix" - ] -} diff --git a/community/tools/firebase2graphql/src/command.js b/community/tools/firebase2graphql/src/command.js deleted file mode 100644 index 122de10fc23..00000000000 --- a/community/tools/firebase2graphql/src/command.js +++ /dev/null @@ -1,133 +0,0 @@ -const {Command, flags} = require('@oclif/command'); -const fetch = require('node-fetch'); -const {CLIError} = require('@oclif/errors'); -const throwError = require('./error'); -const {spinnerStart, spinnerStop} = require('./log'); -const resolve = require('path').resolve; -const importData = require('./import/import'); - -class Firebase2GraphQL extends Command { - async run() { - const {args, flags} = this.parse(Firebase2GraphQL); - const {url} = args; - if (!url) { - throw new CLIError('endpoint is required: \'firebase2graphql \''); - } - const {db, overwrite, normalize} = flags; - const key = flags['access-key']; - const secret = flags['admin-secret']; - - if (secret !== undefined && key !== undefined) { - throw new CLIError('cannot use both flags "access-key" and "admin-secret"', 'use "admin-secret" for versions greater than v1.0.0-alpha37 and "access-key" otherwise'); - } - - if (!url) { - throw new CLIError('endpoint is required: \'firebase2graphql -d ./db.js\''); - } - const safeUrl = this.getSafeUrl(url); - if (!db) { - throw new CLIError('path to firebase JSON database is required: \'firebase2graphql -d ./db.js\''); - } - const dbJson = this.getDbJson(db); - const headers = { - [secret ? 'x-hasura-admin-secret' : 'x-hasura-access-key']: secret || key, - }; - const urlVerification = await this.verifyUrl(safeUrl, headers); - if (urlVerification.error) { - throwError(`Message: ${urlVerification.message}`); - } else { - spinnerStop('Done!'); - await importData(dbJson, safeUrl, headers, overwrite, 1, normalize); - } - } - - getDbJson(db) { - return require(resolve(db)); - } - - getSafeUrl(url) { - const urlLength = url.length; - return url[urlLength - 1] === '/' ? url.slice(0, -1) : url; - } - - async verifyUrl(url, headers) { - try { - spinnerStart('Verifying URL'); - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - headers, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: 'select * from hdb_catalog.hdb_version;', - }, - }), - } - ); - return resp.status === 200 ? {error: false} : {error: true, message: 'invalid access-key or admin-secret'}; - } catch (e) { - return {error: true, message: 'invalid URL'}; - } - } -} - -Firebase2GraphQL.description = `firebase2graphql: Import JSON data to Hasura GraphQL Engine -# Examples: - -# Import data from a Firebase JSON database to Hasura GraphQL Engine without admin secret -firebase2graphql https://hge.herokuapp.com --db=./path/to/db.json - -# Import data from a Firebase JSON database to Hasura GraphQL Engine with admin secret -firebase2graphql https://hge.herokuapp.com --db=./path/to/db.json -s - -# Import data from a Firebase JSON database to Hasura GraphQL Engine while normalizing it -firebase2graphql https://hge.herokuapp.com --db=./path/to/db.json -n -`; - -Firebase2GraphQL.usage = 'URL [-s SECRET]'; - -Firebase2GraphQL.flags = { - // add --version flag to show CLI version - version: flags.version(), - - // add --help flag to show CLI version - help: flags.help({char: 'h'}), - - // Admin secret to Hasura GraphQL Engine - 'admin-secret': flags.string({ - char: 's', - description: 'Admin secret to Hasura GraphQL Engine (X-Hasura-Admin-Secret). Use the flag --access-key if GraphQL Engine version is older than v1.0.0-alpha38', - }), - - // Access key to Hasura GraphQL Engine - 'access-key': flags.string({ - char: 'k', - description: 'Access key to Hasura GraphQL Engine (X-Hasura-Access-Key). Use the flag --admin-secret if GraphQL Engine version is greater than v1.0.0-alpha37', - }), - - db: flags.string({ - char: 'd', - description: 'Path to the .js files that exports a firebase JSON database', - }), - - normalize: flags.boolean({ - char: 'n', - description: 'Normalize the data as it is imported to GraphQL Engine', - }), - - overwrite: flags.boolean({ - char: 'o', - description: 'Overwrite tables if they exist', - }), -}; - -Firebase2GraphQL.args = [ - { - name: 'url', - description: 'URL where Hasura GraphQL Engine is running', - }, -]; - -module.exports = Firebase2GraphQL; diff --git a/community/tools/firebase2graphql/src/error.js b/community/tools/firebase2graphql/src/error.js deleted file mode 100644 index 6f8dc9685be..00000000000 --- a/community/tools/firebase2graphql/src/error.js +++ /dev/null @@ -1,13 +0,0 @@ -const {cli} = require('cli-ux'); -const {log} = require('./log'); -const colors = require('colors/safe'); - -module.exports = (message, preExitHook) => { - cli.action.stop(colors.red('Error!')); - if (preExitHook) { - preExitHook(message); - } - console.log(''); - log(message, 'red'); - process.exit(1); -}; diff --git a/community/tools/firebase2graphql/src/firebase/generateGenericJson.js b/community/tools/firebase2graphql/src/firebase/generateGenericJson.js deleted file mode 100644 index 4c308cae930..00000000000 --- a/community/tools/firebase2graphql/src/firebase/generateGenericJson.js +++ /dev/null @@ -1,173 +0,0 @@ -const uuid = require('uuid/v4'); -const { - getParentPrimaryKeyMap, - getLastPrimaryKey, - getPrimaryKeyName, - isRandomList, - isList, - isObjectList, - makeFirebaseListFromObj, - makeFirebaseListFromArr, -} = require('./utils'); -const throwError = require('../error'); - -const handleTableCandidate = (obj, tableName, tableDetectedCallback, isRootLevel) => { - const rowArray = []; - const flattenObject = (object, row, parent) => { - if (isObjectList(object)) { - const firebaseList = makeFirebaseListFromObj(object); - const dummyRow = {...row}; - for (var objListKey in firebaseList) { - row[getPrimaryKeyName(dummyRow)] = objListKey; - const newRow = {...flattenObject(firebaseList[objListKey], row)}; - if (newRow && Object.keys(newRow).length > 0) { - rowArray.push(newRow); - } - } - } else if (isList(object)) { - const firebaseObject = makeFirebaseListFromArr(object); - for (var listKey in firebaseObject) { - const dummyRow = {...row}; - dummyRow[getPrimaryKeyName(dummyRow, null, 'self')] = uuid(); - dummyRow._value = listKey; - if (Object.keys(dummyRow).length > 0) { - rowArray.push(dummyRow); - } - } - } else { - for (var objectKey in object) { - const value = object[objectKey]; - if (value === null || !['Object', 'Array'].includes(value.constructor.name)) { - row[objectKey] = value; - } else if (['Object', 'Array'].includes(value.constructor.name)) { - const pkeyMap = getParentPrimaryKeyMap(row); - if (isList(value)) { - const firebaseList = makeFirebaseListFromArr(value); - tableDetectedCallback( - null, - { - tableName: parent || tableName, - name: objectKey, - pkeys: pkeyMap, - data: Object.keys(firebaseList).map(item => ({_value: item})), - } - ); - } else if (isObjectList(value)) { - const firebaseList = makeFirebaseListFromObj(value); - tableDetectedCallback( - null, - { - tableName: parent || tableName, - name: objectKey, - pkeys: pkeyMap, - data: handleTableCandidate(firebaseList, `${parent || tableName}_${objectKey}`, tableDetectedCallback, false), - } - ); - } else if (Object.keys(value).length !== 0) { - const newUUID = uuid(); - row[`${tableName}_${objectKey}__idself`] = newUUID; - tableDetectedCallback( - { - tableName, - name: objectKey, - data: flattenObject(value, {_idself: newUUID}, `${tableName}_${objectKey}`), - } - ); - } - } - } - return row; - } - }; - if (!isObjectList(obj)) { - if (isList(obj)) { - const firebaseObject = makeFirebaseListFromArr(obj); - for (var listKey in firebaseObject) { - rowArray.push({ - _value: listKey, - _id: uuid(), - }); - } - return rowArray; - } - if (isRandomList(obj)) { - for (var objKey in obj) { - rowArray.push({ - _key: objKey, - _value: obj[objKey], - _id: uuid(), - }); - } - return rowArray; - } - throwError('Message: invalid JSON provided for node ' + tableName); - } - for (var id in obj) { - const randomUUID = uuid(); - const initialRow = {_id: id}; - if (!isRootLevel) { - initialRow._idself = randomUUID; - } - const flatRow = flattenObject(obj[id], initialRow); - if (flatRow && Object.keys(flatRow).length > 0) { - rowArray.push(flatRow); - } - } - return rowArray; -}; - -const handleFirebaseJson = db => { - const tablesMap = {}; - const generateNewTable = (objectRelMetadata, arrayRelMetadata) => { - if (arrayRelMetadata) { - const newTableName = `${arrayRelMetadata.tableName}_${arrayRelMetadata.name}`; - const parentTableName = arrayRelMetadata.tableName; - const pkeys = arrayRelMetadata.pkeys; - if (!tablesMap[newTableName]) { - tablesMap[newTableName] = []; - } - tablesMap[newTableName] = [ - ...tablesMap[newTableName], - ...arrayRelMetadata.data.map(item => { - const newItem = { - ...item, - }; - for (var pkey in pkeys) { - newItem[`${parentTableName}_${pkey}`] = pkeys[pkey]; - } - if (newItem._idself === undefined) { - newItem[getLastPrimaryKey(newItem, 0, 'self')] = uuid(); - } - return newItem; - }), - ]; - } else { - const newTableName = objectRelMetadata.tableName + '_' + objectRelMetadata.name; - const newItem = { - ...objectRelMetadata.data, - }; - if (!tablesMap[newTableName]) { - tablesMap[newTableName] = []; - } - tablesMap[newTableName].push(newItem); - } - }; - const topLevelTables = []; - for (var tableName in db) { - topLevelTables.push({ - _id: uuid(), - __tableName: tableName.replace(/[^a-zA-Z0-9]/g, '_'), - }); - tablesMap[tableName] = handleTableCandidate( - db[tableName], - tableName, - generateNewTable, - true - ); - } - tablesMap.__rootTables = topLevelTables; - return tablesMap; -}; - -module.exports = handleFirebaseJson; - diff --git a/community/tools/firebase2graphql/src/firebase/utils.js b/community/tools/firebase2graphql/src/firebase/utils.js deleted file mode 100644 index 88e4c15b30c..00000000000 --- a/community/tools/firebase2graphql/src/firebase/utils.js +++ /dev/null @@ -1,148 +0,0 @@ -const getParentPrimaryKeyMap = obj => { - const pkeyMap = {}; - for (var pkey in obj) { - if (pkey.indexOf('_id') === 0) { - pkeyMap[pkey] = obj[pkey]; - } - } - return pkeyMap; -}; - -const getLastPrimaryKey = (obj, index = 0, selfGenerated = '') => { - const id = index === 0 ? `_id${selfGenerated}` : `_id${selfGenerated}_${index}`; - const nextIndex = index === 0 ? 2 : index + 1; - if (!obj[`_id_${nextIndex}`]) { - return id; - } - getLastPrimaryKey(obj, nextIndex, selfGenerated); -}; - -const getPrimaryKeyName = (obj, index = 0, selfGenerated = '') => { - const id = index === 0 ? `_id${selfGenerated}` : `_id${selfGenerated}_${index}`; - const nextIndex = index === 0 ? 2 : index + 1; - if (obj[id] === undefined) { - return id; - } - return getPrimaryKeyName(obj, nextIndex, selfGenerated); -}; - -const isRandomList = obj => { - if (!obj) { - return false; - } - for (var objKey in obj) { - if (obj[objKey] !== null && typeof obj[objKey] === 'object') { - return false; - } - } - return true; -}; - -const isList = obj => { - if (Object.keys(obj).length === 0) { - return false; - } - if (obj.constructor.name === 'Array') { - let arrayElementDataType = null; - for (let _i = obj.length - 1; _i >= 0; _i--) { - if (arrayElementDataType === null) { - arrayElementDataType = typeof obj[_i]; - } else if (arrayElementDataType !== typeof obj[_i]) { - return false; - } - } - return true; - } - for (var objkey in obj) { - if (obj[objkey] === null) { - return false; - } - if (obj[objkey].constructor.name !== 'Boolean' || !obj[objkey]) { - return false; - } - } - return true; -}; - -const makeFirebaseListFromObj = obj => { - if (obj.constructor.name === 'Array') { - const firebaseList = {}; - for (var i = obj.length - 1; i >= 0; i--) { - const element = obj[i]; - firebaseList[i.toString()] = element; - } - return firebaseList; - } - return obj; -}; - -const makeFirebaseListFromArr = obj => { - if (obj.constructor.name === 'Array') { - const firebaseList = {}; - for (var i = obj.length - 1; i >= 0; i--) { - const element = obj[i]; - firebaseList[element] = true; - } - return firebaseList; - } - return obj; -}; - -const isObjectList = obj => { - if (obj === null || obj === undefined) { - return false; - } - const listChildStructure = {}; - const checkElementConsistency = element => { - if (element === null) { - return false; - } - if (typeof element !== 'object') { - return false; - } - if (Object.keys(obj).length === 0) { - return false; - } - for (var childKey in element) { - if (!listChildStructure[childKey]) { - if (element[childKey] !== null && element[childKey] !== undefined) { - listChildStructure[childKey] = typeof element[childKey]; - } - } else if (element[childKey] !== null && element[childKey] !== undefined) { - if (typeof element[childKey] !== listChildStructure[childKey]) { - return false; - } - } - } - return true; - }; - if (obj.constructor.name === 'Array') { - for (let _i = obj.length - 1; _i >= 0; _i--) { - let element = obj[_i]; - let consistent = checkElementConsistency(element); - if (!consistent) { - return false; - } - } - return true; - } - for (var key in obj) { - const element = obj[key]; - let consistent = checkElementConsistency(element); - if (!consistent) { - return false; - } - } - return true; -}; - -module.exports = { - getParentPrimaryKeyMap, - getLastPrimaryKey, - getPrimaryKeyName, - isRandomList, - isList, - isObjectList, - makeFirebaseListFromObj, - makeFirebaseListFromArr, -}; diff --git a/community/tools/firebase2graphql/src/import/check.js b/community/tools/firebase2graphql/src/import/check.js deleted file mode 100644 index 82374f8e0f0..00000000000 --- a/community/tools/firebase2graphql/src/import/check.js +++ /dev/null @@ -1,58 +0,0 @@ -const fetch = require('node-fetch'); -const throwError = require('../error'); -const {spinnerStart, spinnerStop, spinnerStopColorless} = require('../log'); - -const createTables = async (tables, url, headers, overwrite, runSql, sql) => { - if (overwrite) { - spinnerStopColorless('Skipped!'); - spinnerStart('Creating tables'); - await runSql(sql, url, headers); - } else { - try { - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - headers, - body: JSON.stringify({ - type: 'select', - args: { - table: { - name: 'hdb_table', - schema: 'hdb_catalog', - }, - columns: ['*.*'], - where: { - table_schema: 'public', - }, - }, - }), - } - ); - const dbTables = await resp.json(); - if (resp.status === 401) { - throw (dbTables); - } else { - let found = false; - tables.forEach(table => { - if (dbTables.find(dbTable => dbTable.table_name === table.name)) { - found = true; - throwError('Message: Your JSON database contains tables that already exist in Postgres. Please use the flag "--overwrite" to overwrite them.'); - } - }); - if (!found) { - spinnerStop('Done!'); - spinnerStart('Creating tables'); - await runSql(sql, url, headers); - } - } - } catch (e) { - console.log(e); - throwError(e); - } - } -}; - -module.exports = { - createTables, -}; diff --git a/community/tools/firebase2graphql/src/import/generateTables.js b/community/tools/firebase2graphql/src/import/generateTables.js deleted file mode 100644 index 3fdcb356373..00000000000 --- a/community/tools/firebase2graphql/src/import/generateTables.js +++ /dev/null @@ -1,90 +0,0 @@ -const throwError = require('../error'); -const validateUUID = require('uuid-validate'); - -const getDataType = (data, column) => { - if (typeof data === 'number') { - return (data === parseInt(data, 10)) ? 'bigint' : 'numeric'; - } - if (typeof data === 'string' || data === null) { - if (data && validateUUID(data)) { - return 'uuid'; - } - return 'text'; - } - if (typeof data === 'boolean') { - return 'boolean'; - } - if (data.constructor.name === 'Date') { - return 'timestamptz'; - } - if (data.constructor.name === 'Object' || data.constructor.name === 'Array') { - return 'json'; - } - throwError(`Message: invalid data type given for column ${column}: ${data.constructor.name}`); -}; - -const isForeign = (name, db) => { - const idPos = name.indexOf('__id'); - if (idPos <= 0) { - return false; - } - if (Object.keys(db).find(tableName => tableName === name.substring(0, idPos))) { - return true; - } - - return false; -}; - -const getColumnData = (dataArray, db) => { - if (dataArray.length === 0) { - return []; - } - const refRow = { - numOfCols: 0, - index: 0, - }; - dataArray.forEach((row, i) => { - if (Object.keys(row).length > refRow.numOfCols) { - refRow.numOfCols = Object.keys(row).length; - refRow.index = i; - } - }); - const refColumns = dataArray[refRow.index]; - const columnData = []; - Object.keys(refColumns).forEach(column => { - const columnMetadata = {}; - if (!column) { - throwError("Message: column names can't be empty strings"); - } - columnMetadata.name = column; - const sampleData = refColumns[column]; - columnMetadata.type = getDataType(sampleData, column, db); - columnMetadata.isForeign = isForeign(column, db); - columnData.push(columnMetadata); - }); - return columnData; -}; - -const generate = db => { - const metaData = []; - Object.keys(db).forEach(rootField => { - if (db[rootField].length === 0) { - return; - } - const tableMetadata = {}; - tableMetadata.name = rootField; - tableMetadata.columns = getColumnData(db[rootField], db); - tableMetadata.dependencies = []; - tableMetadata.columns.forEach(column => { - if (column.isForeign) { - tableMetadata.dependencies.push( - column.name.substring(0, column.name.indexOf('__id')) - ); - } - }); - metaData.push(tableMetadata); - }); - return metaData; -}; - -module.exports = generate; diff --git a/community/tools/firebase2graphql/src/import/import.js b/community/tools/firebase2graphql/src/import/import.js deleted file mode 100644 index eb226849c00..00000000000 --- a/community/tools/firebase2graphql/src/import/import.js +++ /dev/null @@ -1,50 +0,0 @@ -const {spinnerStart, spinnerStop, log} = require('../log'); -const generate = require('./generateTables'); -const {refineJson} = require('./utils'); -const {generateSql, runSql, dropUtilityTables} = require('./sql'); -const {trackTables} = require('./track'); -const {getInsertOrder, insertData} = require('./insert'); -const {createRelationships} = require('./relationships'); -const {createTables} = require('./check'); -const normalize = require('./normalize'); -const generateGenericJson = require('../firebase/generateGenericJson'); -const makeSuggestions = require('./suggest'); - -const importData = async (jsonDb, url, headers, overwrite, level = 1, shouldNormalize) => { - spinnerStart('Processing Firebase JSON'); - const db = level === 1 ? refineJson(generateGenericJson(jsonDb)) : jsonDb; - const tables = generate(db); - const sql = generateSql(tables); - spinnerStop('Done!'); - spinnerStart('Checking database'); - createTables(tables, url, headers, overwrite, runSql, sql).then(() => { - spinnerStop('Done!'); - spinnerStart('Tracking tables'); - trackTables(tables, url, headers).then(() => { - spinnerStop('Done!'); - spinnerStart('Creating relationships'); - createRelationships(tables, url, headers).then(() => { - spinnerStop('Done!'); - const insertOrder = getInsertOrder(tables); - insertData(insertOrder, db, tables, url, headers, async success => { - if (level <= 10 && shouldNormalize) { - normalize(tables, db, url, headers, level, importData); - } else if (success) { - spinnerStart('Dropping utility tables'); - const resp = await dropUtilityTables(url, headers); - if (resp) { - spinnerStop('Done!'); - } - log(''); - log(`Success! Try out the GraphQL API at ${url}/console`, 'green'); - if (!shouldNormalize) { - makeSuggestions(); - } - } - }); - }); - }); - }); -}; - -module.exports = importData; diff --git a/community/tools/firebase2graphql/src/import/insert.js b/community/tools/firebase2graphql/src/import/insert.js deleted file mode 100644 index c4403a17b2f..00000000000 --- a/community/tools/firebase2graphql/src/import/insert.js +++ /dev/null @@ -1,155 +0,0 @@ -const {query} = require('graphqurl'); -const fetch = require('node-fetch'); -const moment = require('moment'); -const throwError = require('../error'); -const {log, spinnerStart, spinnerStop, spinnerStopColorless} = require('../log'); -const colors = require('colors/safe'); - -const getInsertOrder = tables => { - let order = []; - const tablesHash = {}; - tables.forEach(table => { - tablesHash[table.name] = table; - }); - const pushedHash = {}; - const setOrder = table => { - if (table.dependencies.length === 0) { - order.push(table.name); - pushedHash[table.name] = true; - } else { - table.dependencies.forEach(parentTable => { - if (!pushedHash[parentTable] && parentTable !== table.name) { - setOrder(tablesHash[parentTable]); - } - }); - order.push(table.name); - pushedHash[table.name] = true; - } - }; - - tables.forEach(table => { - if (!pushedHash[table.name]) { - setOrder(table); - } - }); - return order; -}; - -const transformData = (data, tables) => { - const newData = {}; - tables.forEach(table => { - const tableData = data[table.name]; - newData[table.name] = []; - tableData.forEach(row => { - const newRow = {...row}; - table.columns.forEach(column => { - if (column.type === 'timestamptz' && row[column.name]) { - newRow[column.name] = moment(row[column.name]).format(); - } - if (column.type === 'json' && row[column.name]) { - newRow[column.name] = JSON.stringify(row[column.name]); - } - }); - newData[table.name].push(newRow); - }); - }); - return newData; -}; - -const deleteDataTill = async (tableName, insertOrder, url, headers) => { - spinnerStopColorless(colors.red('Error')); - spinnerStart('Restoring database to a safe state'); - const truncate = async order => { - const resp = await fetch( - url, - { - method: 'POST', - headers, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: `truncate table public."${insertOrder[order]}" cascade;`, - cascade: true, - }, - }), - } - ); - if (insertOrder[order] === tableName) { - spinnerStop('Done'); - } else { - await truncate(order + 1, Boolean(resp)); - } - }; - if (insertOrder.length === 0) { - return; - } - return truncate(0); -}; - -const insertData = async (insertOrder, sampleData, tables, url, headers, callback) => { - const transformedData = transformData(sampleData, tables); - let numOfTables = insertOrder.length; - const insertToTable = j => { - if (j >= numOfTables) { - callback(true); - return true; - } - const tableName = insertOrder[j]; - const numOfRows = transformedData[tableName].length; - let insertedRows = 0; - const insertHundredRows = i => { - let mutationString = ''; - let objectString = ''; - const variables = {}; - const numOfelementsToInsert = Math.min(numOfRows - insertedRows, 100); - mutationString += `insert_${tableName} ( objects: $objects ) { affected_rows } \n`; - objectString += `$objects: [${tableName}_insert_input!]!,\n`; - variables.objects = [...transformedData[tableName].slice(i, numOfelementsToInsert + i)]; - const mutation = `mutation ( ${objectString} ) { ${mutationString} }`; - spinnerStart(`Inserting ${i} to ${i + numOfelementsToInsert} rows of ${numOfRows} in table ${tableName}`); - return query( - { - query: mutation, - endpoint: `${url}/v1/graphql`, - variables, - headers, - } - ).then(response => { - if (response.data) { - spinnerStop('Done!'); - insertedRows += numOfelementsToInsert; - if (insertedRows >= numOfRows) { - return insertToTable(j + 1); - } - return insertHundredRows(i + 100); - } - deleteDataTill(tableName, insertOrder, url, headers).then(() => { - throwError( - JSON.stringify(response, null, 2), - () => { - log('Message: Schema has been imported. But the data could not be inserted due to the following error.', 'yellow'); - callback(false); - } - ); - }); - }).catch(e => { - deleteDataTill(tableName, insertOrder, url, headers).then(() => { - throwError( - JSON.stringify(e, null, 2), - () => { - log('Message: Schema has been imported. But the data could not be imported due to the following error.', 'yellow'); - callback(false); - } - ); - }); - }); - }; - insertHundredRows(0); - }; - return insertToTable(0); -}; - -module.exports = { - getInsertOrder, - insertData, -}; diff --git a/community/tools/firebase2graphql/src/import/normalize.js b/community/tools/firebase2graphql/src/import/normalize.js deleted file mode 100644 index 5a6c8e608f9..00000000000 --- a/community/tools/firebase2graphql/src/import/normalize.js +++ /dev/null @@ -1,341 +0,0 @@ -const fetch = require('node-fetch'); -const throwError = require('../error'); -const {log, spinnerStart, spinnerStop} = require('../log'); - -const shouldIgnoreTable = table => { - return (table.columns.find(c => c.name === '_value')); -}; - -const getDupeCandidates = tables => { - const dupes = []; - for (var i = tables.length - 1; i >= 0; i--) { - const table = tables[i]; - if (shouldIgnoreTable(table)) { - continue; - } - for (var j = tables.length - 1; j >= 0; j--) { - if (table.name !== tables[j].name) { - const dupeSuspect = tables[j]; - if (shouldIgnoreTable(dupeSuspect)) { - continue; - } - let isDupe = true; - for (var k = dupeSuspect.columns.length - 1; k >= 0; k--) { - const columnName = dupeSuspect.columns[k].name; - if (columnName.indexOf('_id') < 0) { - if (!table.columns.find(col => col.name === columnName)) { - isDupe = false; - } - } - } - if (isDupe) { - dupes.push({ - table1: table.name, - table2: dupeSuspect.name, - columnList: dupeSuspect.columns.filter(dupeCol => dupeCol.name.indexOf('_id') < 0).map(dupeCol => dupeCol.name), - }); - } - } - } - } - return dupes; -}; - -const categorizeDupeCandidates = async (dupes, url, headers) => { - const bulkQueryArgs = []; - dupes.forEach(dupe => { - const {table1, table2, columnList} = dupe; - const table1Sql = `select count(public."${table1}".*) from public."${table1}";`; - const overlapSql = `select count(public."${table2}".*) from public."${table1}", public."${table2}"`; - let whereSql = ''; - columnList.forEach((column, i) => { - whereSql += ` public."${table1}"."${column}" = public."${table2}"."${column}"`; - whereSql += i === columnList.length - 1 ? '' : ' and '; - }); - const sql = `${overlapSql} where ${whereSql};`; - bulkQueryArgs.push({ - type: 'run_sql', - args: { - sql: table1Sql, - }, - }); - bulkQueryArgs.push({ - type: 'run_sql', - args: { - sql, - }, - }); - }); - const response = await fetch( - `${url}/v1/query`, - { - method: 'POST', - headers, - body: JSON.stringify({ - type: 'bulk', - args: bulkQueryArgs, - }), - } - ); - const respObj = await response.json(); - if (response.status !== 200) { - throwError('Message: Could not normalize your data'); - } - const newDupes = { - confirmed: [], - unconfirmed: [], - }; - dupes.forEach((dupe, i) => { - const overlapResult = respObj[(i * 2) + 1].result[1][0]; - const table1Count = respObj[i].result[1][0]; - if (!overlapResult || !table1Count) { - throwError('Message: Could not normalize your data'); - } - if (table1Count > 0 && overlapResult > 0) { - if (table1Count === overlapResult) { - newDupes.confirmed.push(dupe); - } else if (overlapResult <= Number(table1Count) / 4) { - newDupes.unconfirmed.push(dupe); - } else { - newDupes.confirmed.push(dupe); - } - } - }); - return newDupes; -}; - -const patchDupeDependentTables = (table, dupe, tables, data, pkeyMap) => { - const patchedData = {}; - tables.forEach(otherTable => { - if (otherTable.name !== table && otherTable.name !== dupe) { - if (otherTable.columns.find(column => { - return column.name.indexOf(`${dupe}__id`) === 0 || - column.name.indexOf(`${table}__idself`) === 0; - })) { - const newData = data[otherTable.name].map(row => { - const newRow = { - ...row, - }; - - for (var c in row) { - if (c.indexOf(`${table}__idself`) === 0) { - delete newRow[c]; - continue; - } - if (c.indexOf(`${dupe}__idself`) === 0) { - newRow[`${table}__id`] = pkeyMap[row[c]]; - delete newRow[c]; - continue; - } - if (c.indexOf(`${dupe}__id`) === 0) { - delete newRow[c]; - continue; - } - } - return newRow; - }); - patchedData[otherTable.name] = newData; - } - } - }); - return patchedData; -}; - -const makePkeyMap = (table, dupe, columnList, data) => { - const map = {}; - data[dupe].forEach(dupeRow => { - data[table].forEach(tableRow => { - let isSameRow = true; - columnList.forEach(column => { - if (dupeRow[column] !== tableRow[column]) { - isSameRow = false; - } - }); - if (isSameRow) { - map[dupeRow._idself] = tableRow._id; - } - }); - }); - return map; -}; - -const getTablePriority = (table, dupe, topLevelTables) => { - let isDupeTopLevel = false; - let isTableTopLevel = false; - for (var i = topLevelTables.length - 1; i >= 0; i--) { - let row = topLevelTables[i]; - if (row.__tableName === dupe) { - isDupeTopLevel = true; - } - if (row.__tableName === table) { - isTableTopLevel = true; - } - } - if (isDupeTopLevel && !isTableTopLevel) { - return { - table1: dupe, - table2: table, - }; - } - if (!isDupeTopLevel && isTableTopLevel) { - return { - table1: table, - table2: dupe, - }; - } - if (!isDupeTopLevel && !isTableTopLevel) { - return { - table1: table, - table2: dupe, - }; - } - return { - table1: null, - table2: null, - }; -}; - -const handleConfirmedDupes = (confirmedDupes, tables, data) => { - /* - 1. Go through the dupes - 2. Check which one of table1, table2 has _id (table) and _idself(dupe) - 3. Spread all fields of dupe in table - 4. Change column names and dependencies of all tables that have dupe as a dependency - */ - let newData = { - ...data, - }; - let filteredTables = [...tables]; - const handle = (dupes, index) => { - if (dupes.length === 0 || index > dupes.length - 1) { - return; - } - const tableData = []; - const {table1, table2} = getTablePriority(dupes[index].table1, dupes[index].table2, data.__rootTables); - const columnList = dupes[index].columnList; - if (!table1) { - handle(dupes, index + 1); - return; - } - const table = filteredTables.find(t => t.name === table1); - const dupe = filteredTables.find(t => t.name === table2); - newData[table.name].forEach(r => { - const tableRow = {}; - for (var c in r) { - if (c.indexOf('_idself') !== 0) { - tableRow[c] = r[c]; - } - } - const dLength = data[dupe.name].length; - let found = false; - for (let j = 0; j < dLength; j++) { - const dupeRow = newData[dupe.name][j]; - if (columnList.every(colName => dupeRow[colName] === tableRow[colName])) { - found = true; - const item = {}; - for (var key in dupeRow) { - if (key.indexOf('_idself') !== 0) { - item[key.replace(dupe.name + '_', table.name + '_')] = dupeRow[key]; - } - } - tableData.push({ - ...item, - ...tableRow, - }); - break; - } - } - if (!found) { - tableData.push(tableRow); - } - }); - newData[table.name] = tableData; - filteredTables = filteredTables.filter(ft => ft.name !== dupe.name); - newData = { - ...newData, - ...patchDupeDependentTables(table.name, dupe.name, filteredTables, newData, makePkeyMap(table1, table2, columnList, newData)), - }; - delete newData[dupe.name]; - const filteredDupes = []; - for (var i = dupes.length - 1; i >= 0; i--) { - const d = dupes[i]; - if ((d.table1 !== table1 && d.table2 !== table2) && (d.table2 !== table1 && d.table1 !== table2)) { - if (d.table1 === table2) { - filteredDupes.push({ - table1, - table2: d.table2, - }); - } - if (d.table2 === table2) { - filteredDupes.push({ - table1, - table2: d.table1, - }); - } - } - } - handle( - filteredDupes, - 0 - ); - }; - handle(confirmedDupes, 0); - return newData; -}; - -const dropTables = async (tableList, url, headers) => { - spinnerStop('Done!'); - spinnerStart('Deleting unnecessary tables'); - if (tableList.length === 0) { - spinnerStop('Done'); - return true; - } - let sql = ''; - tableList.forEach(t => { - sql += `drop table if exists public."${t}" cascade;`; - }); - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - headers, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql, - cascade: true, - }, - }), - } - ); - if (resp.status !== 200) { - log('Message: Could not delete unnecessary tables. Your database might have some unnecessary tables.', 'yellow'); - } - spinnerStop('Done'); - return true; -}; - -const normalize = async (tables, data, url, headers, level, importData) => { - spinnerStart('Normalizing your data'); - const dupeCandidates = getDupeCandidates(tables); - const maybeDupes = await categorizeDupeCandidates(dupeCandidates, url, headers); - let newData; - if (level === 10) { - newData = handleConfirmedDupes( - [...maybeDupes.confirmed, ...maybeDupes.unconfirmed], - tables, - data - ); - } else { - newData = handleConfirmedDupes(maybeDupes.confirmed, tables, data); - } - const tablesToDrop = tables.filter(t => newData[t.name] === undefined).map(tbl => tbl.name); - const dropResp = await dropTables(tablesToDrop, url, headers); - if (maybeDupes.unconfirmed.length === 0 && maybeDupes.confirmed.length === 0 && dropResp) { - await importData(newData, url, headers, true, 11, true); - } else { - await importData(newData, url, headers, true, level + 1, true); - } -}; - -module.exports = normalize; diff --git a/community/tools/firebase2graphql/src/import/relationships.js b/community/tools/firebase2graphql/src/import/relationships.js deleted file mode 100644 index beac56c1e3f..00000000000 --- a/community/tools/firebase2graphql/src/import/relationships.js +++ /dev/null @@ -1,124 +0,0 @@ -const fetch = require('node-fetch'); -const throwError = require('../error'); - -const getArrayRelType = (table, child) => { - const columnMapping = {}; - let numOfMappings = 0; - table.columns.forEach(col => { - if (col.name.indexOf('_id') === 0) { - numOfMappings++; - columnMapping[col.name] = `${table.name}_${col.name}`; - } - }); - if (numOfMappings === 1) { - return { - foreign_key_constraint_on: { - table: child.name, - column: columnMapping[Object.keys(columnMapping)[0]], - }, - }; - } - return { - manual_configuration: { - remote_table: child.name, - column_mapping: columnMapping, - }, - }; -}; - -const getObjRelType = (table, dep) => { - const columnMapping = {}; - let numOfMappings = 0; - table.columns.forEach(col => { - if (col.name.indexOf(`${dep.name}__id`) === 0) { - numOfMappings++; - columnMapping[col.name] = col.name.substring(col.name.indexOf('_id'), col.name.length); - } - }); - if (numOfMappings === 1) { - return { - foreign_key_constraint_on: Object.keys(columnMapping)[0], - }; - } - return { - manual_configuration: { - remote_table: dep.name, - column_mapping: columnMapping, - }, - }; -}; - -const generateRelationships = tables => { - const objectRelationships = []; - const arrayRelationships = []; - tables.forEach(table => { - if (table.dependencies.length > 0) { - table.dependencies.forEach(dep => { - const objUsing = getObjRelType(table, tables.find(t => t.name === dep)); - const arrUsing = getArrayRelType(tables.find(t => t.name === dep), table); - const newObjRel = { - type: 'create_object_relationship', - args: { - table: table.name, - name: dep, - using: objUsing, - }, - }; - if (!objectRelationships.find(or => { - return ( - or.args.table === newObjRel.args.table && - or.args.name === newObjRel.args.name - ); - })) { - objectRelationships.push(newObjRel); - } - const newArrRel = { - type: 'create_array_relationship', - args: { - table: dep, - name: `${table.name}`, - using: arrUsing, - }, - }; - if (!arrayRelationships.find(ar => { - return ( - ar.args.table === newArrRel.args.table && - ar.args.name === newArrRel.args.name - ); - })) { - arrayRelationships.push(newArrRel); - } - }); - } - }); - return { - objectRelationships, - arrayRelationships, - }; -}; - -const createRelationships = async (tables, url, headers) => { - const relationships = generateRelationships(tables); - const bulkQuery = { - type: 'bulk', - args: [], - }; - relationships.objectRelationships.forEach(or => bulkQuery.args.push(or)); - relationships.arrayRelationships.forEach(ar => bulkQuery.args.push(ar)); - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - body: JSON.stringify(bulkQuery), - headers, - } - ); - if (resp.status !== 200) { - const error = await resp.json(); - throwError(JSON.stringify(error, null, 2)); - } -}; - -module.exports = { - createRelationships, -}; diff --git a/community/tools/firebase2graphql/src/import/sql.js b/community/tools/firebase2graphql/src/import/sql.js deleted file mode 100644 index 504c87bf777..00000000000 --- a/community/tools/firebase2graphql/src/import/sql.js +++ /dev/null @@ -1,120 +0,0 @@ -const fetch = require('node-fetch'); -const throwError = require('../error'); - -const runSql = async (sqlArray, url, headers) => { - let sqlString = ''; - sqlArray.forEach(sql => { - sqlString += sql; - }); - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: sqlString, - cascade: true, - }, - }), - headers, - } - ); - if (resp.status !== 200) { - const error = await resp.json(); - throwError(JSON.stringify(error, null, 2)); - } -}; - -const generateCreateTableSql = metadata => { - const sqlArray = []; - metadata.forEach(table => { - sqlArray.push(`drop table if exists public."${table.name}" cascade;`); - let columnSql = '('; - const pkeyArr = []; - table.columns.forEach((column, i) => { - if (column.name.indexOf('_id') === 0) { - pkeyArr.push(column.name); - columnSql += `"${column.name}" ${column.type} not null,`; - } else { - columnSql += `"${column.name}" ${column.type},`; - } - - if (table.columns.length === i + 1) { - columnSql += 'primary key ('; - pkeyArr.forEach((key, j) => { - columnSql += `"${key}"`; - columnSql += j === pkeyArr.length - 1 ? ')' : ', '; - }); - } - }); - const createTableSql = `create table public."${table.name}" ${columnSql});`; - sqlArray.push(createTableSql); - }); - return sqlArray; -}; - -const foreignKeySql = table => { - const sqlArray = []; - table.dependencies.forEach((dep, i) => { - let colNames = ''; - let fks = ''; - table.columns.forEach(col => { - if (col.name.indexOf(`${dep}__id`) === 0) { - colNames += `"${col.name}", `; - fks += `"${col.name.substring(col.name.indexOf('_id'), col.name.length)}", `; - } - }); - fks = fks.substring(0, fks.length - 2); - colNames = colNames.substring(0, colNames.length - 2); - sqlArray.push(`alter table "${table.name}" add constraint "fk_${table.name}_${dep}_${i}" foreign key (${colNames}) references "${dep}"(${fks});`); - }); - return sqlArray; -}; - -const generateConstraintsSql = metadata => { - let sqlArray = []; - metadata.forEach(table => { - sqlArray = [ - ...sqlArray, - ...foreignKeySql(table), - ]; - }); - return sqlArray; -}; - -const generateSql = metadata => { - const createTableSql = generateCreateTableSql(metadata); - const constraintsSql = generateConstraintsSql(metadata); - let sqlArray = [...createTableSql, ...constraintsSql]; - return sqlArray; -}; - -const dropUtilityTables = async (url, headers) => { - const tablesToDrop = ['__rootTables']; - let sql = ''; - tablesToDrop.forEach(table => { - sql += `drop table if exists "${table}" cascade;`; - }); - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - headers, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql, - cascade: true, - }, - }), - } - ); - return Boolean(resp); -}; - -module.exports = { - generateSql, - runSql, - dropUtilityTables, -}; diff --git a/community/tools/firebase2graphql/src/import/suggest.js b/community/tools/firebase2graphql/src/import/suggest.js deleted file mode 100644 index 8f25b0de9f1..00000000000 --- a/community/tools/firebase2graphql/src/import/suggest.js +++ /dev/null @@ -1,79 +0,0 @@ -const {log} = require('../log'); -const colors = require('colors/safe'); - -const isSubset = (array1, array2) => { - return array2.every(item => array1.includes(item)); -}; - -const getTableColumns = obj => { - const columns = {}; - for (var key in obj) { - if (key.indexOf('_id') === -1) { - columns[key] = []; - } - } - return columns; -}; - -const getColumnsMap = db => { - const columnMap = {}; - for (var tableName in db) { - columnMap[tableName] = getTableColumns(db[tableName][0]); - db[tableName].forEach(row => { - for (var key in columnMap[tableName]) { - columnMap[tableName][key].push(row[key]); - } - }); - } - return columnMap; -}; - -const getDuplicates = db => { - const tableColumnMap = getColumnsMap(db); - const maybeDuplicates = {}; - for (var t1 in tableColumnMap) { - if (!maybeDuplicates[t1]) { - maybeDuplicates[t1] = []; - } - for (var t2 in tableColumnMap) { - if (!maybeDuplicates[t1]) { - maybeDuplicates[t2] = []; - } - if (t1 !== t2) { - for (var key in tableColumnMap[t1]) { - if (tableColumnMap[t2][key]) { - if (isSubset(tableColumnMap[t1][key], tableColumnMap[t2][key])) { - maybeDuplicates[t1].push(t2); - break; - } - } - } - } - } - } - return maybeDuplicates; -}; - -const suggest = (db, url) => { - const maybeDuplicates = (getDuplicates(db)); - const newDuplicates = { - ...maybeDuplicates, - }; - - let count = 1; - const dupes = []; - for (var tableName in newDuplicates) { - maybeDuplicates[tableName].forEach(dup => { - dupes.push(`${count++}. ${colors.yellow(tableName)} could be same as ${colors.yellow(dup)}`); - }); - } - if (dupes.length > 0) { - log(''); - log('Warning:', 'yellow'); - log('While importing your data, the following duplicate tables might have been created:', 'yellow'); - dupes.forEach(dupe => log(dupe)); - log(`You can either re-run the command with the flag "--normalize", or normalize your database yourself at ${url}/console/data/schema/public`, 'yellow'); - } -}; - -module.exports = suggest; diff --git a/community/tools/firebase2graphql/src/import/track.js b/community/tools/firebase2graphql/src/import/track.js deleted file mode 100644 index 34b7f883db0..00000000000 --- a/community/tools/firebase2graphql/src/import/track.js +++ /dev/null @@ -1,35 +0,0 @@ -const fetch = require('node-fetch'); -const throwError = require('../error'); - -const trackTables = async (tables, url, headers) => { - const bulkQueryArgs = []; - tables.forEach(table => { - bulkQueryArgs.push({ - type: 'add_existing_table_or_view', - args: { - name: table.name, - schema: 'public', - }, - }); - }); - const bulkQuery = { - type: 'bulk', - args: bulkQueryArgs, - }; - const resp = await fetch( - `${url}/v1/query`, - { - method: 'POST', - body: JSON.stringify(bulkQuery), - headers, - } - ); - if (resp.status !== 200) { - const error = await resp.json(); - throwError(JSON.stringify(error, null, 2)); - } -}; - -module.exports = { - trackTables, -}; diff --git a/community/tools/firebase2graphql/src/import/utils.js b/community/tools/firebase2graphql/src/import/utils.js deleted file mode 100644 index 5fd71cfdc11..00000000000 --- a/community/tools/firebase2graphql/src/import/utils.js +++ /dev/null @@ -1,19 +0,0 @@ -const refineJson = db => { - const newDb = {}; - for (var tableName in db) { - const newTableName = tableName.replace(/[^a-zA-Z0-9]/g, '_'); - newDb[newTableName] = []; - db[tableName].forEach(row => { - const newRow = {}; - for (var colName in row) { - newRow[colName.replace(/[^a-zA-Z0-9]/g, '_')] = row[colName]; - } - newDb[newTableName].push(newRow); - }); - } - return newDb; -}; - -module.exports = { - refineJson, -}; diff --git a/community/tools/firebase2graphql/src/log.js b/community/tools/firebase2graphql/src/log.js deleted file mode 100644 index 96915980a78..00000000000 --- a/community/tools/firebase2graphql/src/log.js +++ /dev/null @@ -1,40 +0,0 @@ -const colors = require('colors/safe'); -const {cli} = require('cli-ux'); - -const shouldLog = process.env.F2G_LOG; - -const log = (message, color) => { - if (shouldLog !== '0') { - if (color) { - console.log(colors[color](message)); - } else { - console.log(message); - } - } -}; - -const spinnerStart = message => { - if (shouldLog !== '0') { - cli.action.start(message); - } -}; - -const spinnerStop = () => { - if (shouldLog !== '0') { - cli.action.stop(colors.green('Done!')); - } -}; - -const spinnerStopColorless = message => { - if (shouldLog !== '0') { - cli.action.stop(message); - } -}; - -module.exports = { - log, - spinnerStop, - spinnerStart, - spinnerStopColorless, -}; - diff --git a/community/tools/firebase2graphql/test/data-sets/array_example.js b/community/tools/firebase2graphql/test/data-sets/array_example.js deleted file mode 100644 index 8794f619f77..00000000000 --- a/community/tools/firebase2graphql/test/data-sets/array_example.js +++ /dev/null @@ -1,14 +0,0 @@ -module.exports = { - appointment: { - '-LMlfYiyfmR7RxODd2lF': { - 'appointment-notes': { - images: [ - 'https://firebasestorage.googleapis.comd2e34932caf', - ], - 'notes-content': 'testing........', - }, - 'created-time': 1537358052, - 'work-request-id': '-LMlf80ePhwjG4Rkh8tY', - }, - }, -}; diff --git a/community/tools/firebase2graphql/test/data-sets/blog.json b/community/tools/firebase2graphql/test/data-sets/blog.json deleted file mode 100644 index 179424001f7..00000000000 --- a/community/tools/firebase2graphql/test/data-sets/blog.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "f2g-test-posts" : { - "-LMbLFOAW2q6GO1bD-5g" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "My first post content\nAnd body\nANd structure", - "starCount" : 0, - "title" : "My first post", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - }, - "-LMbLIv6VKHYul7p_PZ-" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "AKsdjak\naklsdjaskldjklas\nasdklfjaklsdfjklsda\nasdklfjasklf", - "starCount" : 0, - "title" : "Whatta proaaa", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - } - }, - "f2g-test-user-posts" : { - "4UPmbcaqZKT2NdAAqBahXj4tHYN2" : { - "-LMbLFOAW2q6GO1bD-5g" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "My first post content\nAnd body\nANd structure", - "starCount" : 0, - "title" : "My first post", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - }, - "-LMbLIv6VKHYul7p_PZ-" : { - "author" : "Eena", - "authorPic" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "body" : "AKsdjak\naklsdjaskldjklas\nasdklfjaklsdfjklsda\nasdklfjasklf", - "starCount" : 0, - "title" : "Whatta proaaa", - "uid" : "4UPmbcaqZKT2NdAAqBahXj4tHYN2" - } - } - }, - "f2g-test-users" : { - "4UPmbcaqZKT2NdAAqBahXj4tHYN2" : { - "email" : "rishichandrawawhal@gmail.com", - "profile_picture" : "https://lh4.googleusercontent.com/-vPOIBOxCUpo/AAAAAAAAAAI/AAAAAAAAAFo/SKk9hpOB7v4/photo.jpg", - "username" : "Eena" - } - } -} diff --git a/community/tools/firebase2graphql/test/data-sets/chinook.json b/community/tools/firebase2graphql/test/data-sets/chinook.json deleted file mode 100644 index c552d131ebf..00000000000 --- a/community/tools/firebase2graphql/test/data-sets/chinook.json +++ /dev/null @@ -1,48879 +0,0 @@ -{ - "f2g_test_Album": { - "1": { - "tracks": { - "1": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "For Those About To Rock (We Salute You)" - }, - "6": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Put The Finger On You" - }, - "7": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Let's Get It Up" - }, - "8": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Inject The Venom" - }, - "9": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Snowballed" - }, - "10": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Evil Walks" - }, - "11": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "C.O.D." - }, - "12": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Breaking The Rules" - }, - "13": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Night Of The Long Knives" - }, - "14": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Spellbound" - } - }, - "Title": "For Those About To Rock We Salute You", - "artist": { - "ArtistId": 1, - "Name": "AC/DC" - } - }, - "2": { - "tracks": { - "2": { - "Composer": null, - "Name": "Balls to the Wall" - } - }, - "Title": "Balls to the Wall", - "artist": { - "ArtistId": 2, - "Name": "Accept" - } - }, - "3": { - "tracks": { - "3": { - "Composer": "F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman", - "Name": "Fast As a Shark" - }, - "4": { - "Composer": "F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman", - "Name": "Restless and Wild" - }, - "5": { - "Composer": "Deaffy & R.A. Smith-Diesel", - "Name": "Princess of the Dawn" - } - }, - "Title": "Restless and Wild", - "artist": { - "ArtistId": 2, - "Name": "Accept" - } - }, - "4": { - "tracks": { - "15": { - "Composer": "AC/DC", - "Name": "Go Down" - }, - "16": { - "Composer": "AC/DC", - "Name": "Dog Eat Dog" - }, - "17": { - "Composer": "AC/DC", - "Name": "Let There Be Rock" - }, - "18": { - "Composer": "AC/DC", - "Name": "Bad Boy Boogie" - }, - "19": { - "Composer": "AC/DC", - "Name": "Problem Child" - }, - "20": { - "Composer": "AC/DC", - "Name": "Overdose" - }, - "21": { - "Composer": "AC/DC", - "Name": "Hell Ain't A Bad Place To Be" - }, - "22": { - "Composer": "AC/DC", - "Name": "Whole Lotta Rosie" - } - }, - "Title": "Let There Be Rock", - "artist": { - "ArtistId": 1, - "Name": "AC/DC" - } - }, - "5": { - "tracks": { - "23": { - "Composer": "Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw", - "Name": "Walk On Water" - }, - "24": { - "Composer": "Steven Tyler, Joe Perry", - "Name": "Love In An Elevator" - }, - "25": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance, Holly Knight", - "Name": "Rag Doll" - }, - "26": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Name": "What It Takes" - }, - "27": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Name": "Dude (Looks Like A Lady)" - }, - "28": { - "Composer": "Steven Tyler, Tom Hamilton", - "Name": "Janie's Got A Gun" - }, - "29": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Name": "Cryin'" - }, - "30": { - "Composer": "Steven Tyler, Richie Supa", - "Name": "Amazing" - }, - "31": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Name": "Blind Man" - }, - "32": { - "Composer": "Steven Tyler, Jim Vallance", - "Name": "Deuces Are Wild" - }, - "33": { - "Composer": "Steven Tyler, Jim Vallance", - "Name": "The Other Side" - }, - "34": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Name": "Crazy" - }, - "35": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance", - "Name": "Eat The Rich" - }, - "36": { - "Composer": "Steven Tyler, Desmond Child", - "Name": "Angel" - }, - "37": { - "Composer": "Steven Tyler, Joe Perry, Mark Hudson", - "Name": "Livin' On The Edge" - } - }, - "Title": "Big Ones", - "artist": { - "ArtistId": 3, - "Name": "Aerosmith" - } - }, - "6": { - "tracks": { - "38": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "All I Really Want" - }, - "39": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "You Oughta Know" - }, - "40": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Perfect" - }, - "41": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Hand In My Pocket" - }, - "42": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Right Through You" - }, - "43": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Forgiven" - }, - "44": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "You Learn" - }, - "45": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Head Over Feet" - }, - "46": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Mary Jane" - }, - "47": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Ironic" - }, - "48": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Not The Doctor" - }, - "49": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Wake Up" - }, - "50": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "You Oughta Know (Alternate)" - } - }, - "Title": "Jagged Little Pill", - "artist": { - "ArtistId": 4, - "Name": "Alanis Morissette" - } - }, - "7": { - "tracks": { - "51": { - "Composer": "Jerry Cantrell", - "Name": "We Die Young" - }, - "52": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "Man In The Box" - }, - "53": { - "Composer": "Jerry Cantrell", - "Name": "Sea Of Sorrow" - }, - "54": { - "Composer": "Jerry Cantrell", - "Name": "Bleed The Freak" - }, - "55": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "I Can't Remember" - }, - "56": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "Love, Hate, Love" - }, - "57": { - "Composer": "Jerry Cantrell, Michael Starr, Sean Kinney", - "Name": "It Ain't Like That" - }, - "58": { - "Composer": "Jerry Cantrell", - "Name": "Sunshine" - }, - "59": { - "Composer": "Jerry Cantrell", - "Name": "Put You Down" - }, - "60": { - "Composer": "Jerry Cantrell, Michael Starr, Layne Staley", - "Name": "Confusion" - }, - "61": { - "Composer": "Jerry Cantrell", - "Name": "I Know Somethin (Bout You)" - }, - "62": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "Real Thing" - } - }, - "Title": "Facelift", - "artist": { - "ArtistId": 5, - "Name": "Alice In Chains" - } - }, - "9": { - "tracks": { - "77": { - "Composer": "Apocalyptica", - "Name": "Enter Sandman" - }, - "78": { - "Composer": "Apocalyptica", - "Name": "Master Of Puppets" - }, - "79": { - "Composer": "Apocalyptica", - "Name": "Harvester Of Sorrow" - }, - "80": { - "Composer": "Apocalyptica", - "Name": "The Unforgiven" - }, - "81": { - "Composer": "Apocalyptica", - "Name": "Sad But True" - }, - "82": { - "Composer": "Apocalyptica", - "Name": "Creeping Death" - }, - "83": { - "Composer": "Apocalyptica", - "Name": "Wherever I May Roam" - }, - "84": { - "Composer": "Apocalyptica", - "Name": "Welcome Home (Sanitarium)" - } - }, - "Title": "Plays Metallica By Four Cellos", - "artist": { - "ArtistId": 7, - "Name": "Apocalyptica" - } - }, - "10": { - "tracks": { - "85": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Cochise" - }, - "86": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Show Me How to Live" - }, - "87": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Gasoline" - }, - "88": { - "Composer": "Audioslave/Chris Cornell", - "Name": "What You Are" - }, - "89": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Like a Stone" - }, - "90": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Set It Off" - }, - "91": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Shadow on the Sun" - }, - "92": { - "Composer": "Audioslave/Chris Cornell", - "Name": "I am the Highway" - }, - "93": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Exploder" - }, - "94": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Hypnotize" - }, - "95": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Bring'em Back Alive" - }, - "96": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Light My Way" - }, - "97": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Getaway Car" - }, - "98": { - "Composer": "Audioslave/Chris Cornell", - "Name": "The Last Remaining Light" - } - }, - "Title": "Audioslave", - "artist": { - "ArtistId": 8, - "Name": "Audioslave" - } - }, - "11": { - "tracks": { - "99": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Your Time Has Come" - }, - "100": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Out Of Exile" - }, - "101": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Be Yourself" - }, - "102": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Doesn't Remind Me" - }, - "103": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Drown Me Slowly" - }, - "104": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Heaven's Dead" - }, - "105": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "The Worm" - }, - "106": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Man Or Animal" - }, - "107": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Yesterday To Tomorrow" - }, - "108": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Dandelion" - }, - "109": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "#1 Zero" - }, - "110": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "The Curse" - } - }, - "Title": "Out Of Exile", - "artist": { - "ArtistId": 8, - "Name": "Audioslave" - } - }, - "12": { - "tracks": { - "111": { - "Composer": "Berry Gordy, Jr./Janie Bradford", - "Name": "Money" - }, - "112": { - "Composer": "Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell", - "Name": "Long Tall Sally" - }, - "113": { - "Composer": "Larry Williams", - "Name": "Bad Boy" - }, - "114": { - "Composer": "Bert Russell/Phil Medley", - "Name": "Twist And Shout" - }, - "115": { - "Composer": "Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett", - "Name": "Please Mr. Postman" - }, - "116": { - "Composer": "Eddie Cochran/Jerry Capehart", - "Name": "C'Mon Everybody" - }, - "117": { - "Composer": "Chuck Berry", - "Name": "Rock 'N' Roll Music" - }, - "118": { - "Composer": "Larry Williams", - "Name": "Slow Down" - }, - "119": { - "Composer": "Bo Diddley", - "Name": "Roadrunner" - }, - "120": { - "Composer": "Chuck Berry", - "Name": "Carol" - }, - "121": { - "Composer": "Little Richard", - "Name": "Good Golly Miss Molly" - }, - "122": { - "Composer": "Ned Fairchild", - "Name": "20 Flight Rock" - } - }, - "Title": "BackBeat Soundtrack", - "artist": { - "ArtistId": 9, - "Name": "BackBeat" - } - }, - "13": { - "tracks": { - "123": { - "Composer": "Billy Cobham", - "Name": "Quadrant" - }, - "124": { - "Composer": "Billy Cobham", - "Name": "Snoopy's search-Red baron" - }, - "125": { - "Composer": "Billy Cobham", - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss" - }, - "126": { - "Composer": "Billy Cobham", - "Name": "Moon germs" - }, - "127": { - "Composer": "Billy Cobham", - "Name": "Stratus" - }, - "128": { - "Composer": "Billy Cobham", - "Name": "The pleasant pheasant" - }, - "129": { - "Composer": "Billy Cobham", - "Name": "Solo-Panhandler" - }, - "130": { - "Composer": "George Duke", - "Name": "Do what cha wanna" - } - }, - "Title": "The Best Of Billy Cobham", - "artist": { - "ArtistId": 10, - "Name": "Billy Cobham" - } - }, - "14": { - "tracks": { - "131": { - "Composer": null, - "Name": "Intro/ Low Down" - }, - "132": { - "Composer": null, - "Name": "13 Years Of Grief" - }, - "133": { - "Composer": null, - "Name": "Stronger Than Death" - }, - "134": { - "Composer": null, - "Name": "All For You" - }, - "135": { - "Composer": null, - "Name": "Super Terrorizer" - }, - "136": { - "Composer": null, - "Name": "Phoney Smile Fake Hellos" - }, - "137": { - "Composer": null, - "Name": "Lost My Better Half" - }, - "138": { - "Composer": null, - "Name": "Bored To Tears" - }, - "139": { - "Composer": null, - "Name": "A.N.D.R.O.T.A.Z." - }, - "140": { - "Composer": null, - "Name": "Born To Booze" - }, - "141": { - "Composer": null, - "Name": "World Of Trouble" - }, - "142": { - "Composer": null, - "Name": "No More Tears" - }, - "143": { - "Composer": null, - "Name": "The Begining... At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]", - "artist": { - "ArtistId": 11, - "Name": "Black Label Society" - } - }, - "15": { - "tracks": { - "144": { - "Composer": null, - "Name": "Heart Of Gold" - }, - "145": { - "Composer": null, - "Name": "Snowblind" - }, - "146": { - "Composer": null, - "Name": "Like A Bird" - }, - "147": { - "Composer": null, - "Name": "Blood In The Wall" - }, - "148": { - "Composer": null, - "Name": "The Beginning...At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]", - "artist": { - "ArtistId": 11, - "Name": "Black Label Society" - } - }, - "16": { - "tracks": { - "149": { - "Composer": null, - "Name": "Black Sabbath" - }, - "150": { - "Composer": null, - "Name": "The Wizard" - }, - "151": { - "Composer": null, - "Name": "Behind The Wall Of Sleep" - }, - "152": { - "Composer": null, - "Name": "N.I.B." - }, - "153": { - "Composer": null, - "Name": "Evil Woman" - }, - "154": { - "Composer": null, - "Name": "Sleeping Village" - }, - "155": { - "Composer": null, - "Name": "Warning" - } - }, - "Title": "Black Sabbath", - "artist": { - "ArtistId": 12, - "Name": "Black Sabbath" - } - }, - "17": { - "tracks": { - "156": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Wheels Of Confusion / The Straightener" - }, - "157": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Tomorrow's Dream" - }, - "158": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Changes" - }, - "159": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "FX" - }, - "160": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Supernaut" - }, - "161": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Snowblind" - }, - "162": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Cornucopia" - }, - "163": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Laguna Sunrise" - }, - "164": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "St. Vitus Dance" - }, - "165": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Under The Sun/Every Day Comes and Goes" - } - }, - "Title": "Black Sabbath Vol. 4 (Remaster)", - "artist": { - "ArtistId": 12, - "Name": "Black Sabbath" - } - }, - "18": { - "tracks": { - "166": { - "Composer": null, - "Name": "Smoked Pork" - }, - "167": { - "Composer": null, - "Name": "Body Count's In The House" - }, - "168": { - "Composer": null, - "Name": "Now Sports" - }, - "169": { - "Composer": null, - "Name": "Body Count" - }, - "170": { - "Composer": null, - "Name": "A Statistic" - }, - "171": { - "Composer": null, - "Name": "Bowels Of The Devil" - }, - "172": { - "Composer": null, - "Name": "The Real Problem" - }, - "173": { - "Composer": null, - "Name": "KKK Bitch" - }, - "174": { - "Composer": null, - "Name": "D Note" - }, - "175": { - "Composer": null, - "Name": "Voodoo" - }, - "176": { - "Composer": null, - "Name": "The Winner Loses" - }, - "177": { - "Composer": null, - "Name": "There Goes The Neighborhood" - }, - "178": { - "Composer": null, - "Name": "Oprah" - }, - "179": { - "Composer": null, - "Name": "Evil Dick" - }, - "180": { - "Composer": null, - "Name": "Body Count Anthem" - }, - "181": { - "Composer": null, - "Name": "Momma's Gotta Die Tonight" - }, - "182": { - "Composer": null, - "Name": "Freedom Of Speech" - } - }, - "Title": "Body Count", - "artist": { - "ArtistId": 13, - "Name": "Body Count" - } - }, - "19": { - "tracks": { - "183": { - "Composer": "Roy Z", - "Name": "King In Crimson" - }, - "184": { - "Composer": "Roy Z", - "Name": "Chemical Wedding" - }, - "185": { - "Composer": "Roy Z", - "Name": "The Tower" - }, - "186": { - "Composer": "Adrian Smith", - "Name": "Killing Floor" - }, - "187": { - "Composer": "Eddie Casillas/Roy Z", - "Name": "Book Of Thel" - }, - "188": { - "Composer": "Roy Z", - "Name": "Gates Of Urizen" - }, - "189": { - "Composer": "Roy Z", - "Name": "Jerusalem" - }, - "190": { - "Composer": "Roy Z", - "Name": "Trupets Of Jericho" - }, - "191": { - "Composer": "Adrian Smith", - "Name": "Machine Men" - }, - "192": { - "Composer": "Roy Z", - "Name": "The Alchemist" - }, - "193": { - "Composer": "Roy Z", - "Name": "Realword" - } - }, - "Title": "Chemical Wedding", - "artist": { - "ArtistId": 14, - "Name": "Bruce Dickinson" - } - }, - "20": { - "tracks": { - "194": { - "Composer": "Eurreal Montgomery", - "Name": "First Time I Met The Blues" - }, - "195": { - "Composer": "Willie Dixon", - "Name": "Let Me Love You Baby" - }, - "196": { - "Composer": "Buddy Guy", - "Name": "Stone Crazy" - }, - "197": { - "Composer": "Willie Dixon", - "Name": "Pretty Baby" - }, - "198": { - "Composer": "Al Perkins/Willie Dixon", - "Name": "When My Left Eye Jumps" - }, - "199": { - "Composer": "Buddy Guy", - "Name": "Leave My Girl Alone" - }, - "200": { - "Composer": "Buddy Guy", - "Name": "She Suits Me To A Tee" - }, - "201": { - "Composer": "Sonny Boy Williamson [I]", - "Name": "Keep It To Myself (Aka Keep It To Yourself)" - }, - "202": { - "Composer": "Robert Geddins/Ron Badger/Sheldon Feinberg", - "Name": "My Time After Awhile" - }, - "203": { - "Composer": "Willie Dixon", - "Name": "Too Many Ways (Alternate)" - }, - "204": { - "Composer": "Amos Blakemore/Buddy Guy", - "Name": "Talkin' 'Bout Women Obviously" - } - }, - "Title": "The Best Of Buddy Guy - The Millenium Collection", - "artist": { - "ArtistId": 15, - "Name": "Buddy Guy" - } - }, - "21": { - "tracks": { - "206": { - "Composer": "Tradicional", - "Name": "Prenda Minha" - }, - "208": { - "Composer": "Caetano Veloso", - "Name": "Terra" - }, - "209": { - "Composer": "Caetano Veloso", - "Name": "Eclipse Oculto" - }, - "210": { - "Composer": "Caetano Veloso", - "Name": "Texto \"Verdade Tropical\"" - }, - "211": { - "Composer": "Gilberto Gil", - "Name": "Bem Devagar" - }, - "213": { - "Composer": "Caetano Veloso", - "Name": "Saudosismo" - }, - "214": { - "Composer": "Chico Buarque", - "Name": "Carolina" - }, - "215": { - "Composer": "Peninha", - "Name": "Sozinho" - }, - "216": { - "Composer": "Caetano Veloso", - "Name": "Esse Cara" - }, - "218": { - "Composer": "Caetano Veloso - Djavan", - "Name": "Linha Do Equador" - }, - "219": { - "Composer": "Caetano Veloso", - "Name": "Odara" - }, - "220": { - "Composer": "Caetano Veloso", - "Name": "A Luz De Tieta" - }, - "222": { - "Composer": "Fausto Nilo - Armandinho", - "Name": "Vida Boa" - } - }, - "Title": "Prenda Minha", - "artist": { - "ArtistId": 16, - "Name": "Caetano Veloso" - } - }, - "22": { - "tracks": { - "223": { - "Composer": null, - "Name": "Sozinho (Hitmakers Classic Mix)" - }, - "224": { - "Composer": null, - "Name": "Sozinho (Hitmakers Classic Radio Edit)" - } - }, - "Title": "Sozinho Remix Ao Vivo", - "artist": { - "ArtistId": 16, - "Name": "Caetano Veloso" - } - }, - "23": { - "tracks": { - "226": { - "Composer": null, - "Name": "Carolina" - }, - "228": { - "Composer": null, - "Name": "Vai Passar" - }, - "229": { - "Composer": null, - "Name": "Samba De Orly" - }, - "230": { - "Composer": null, - "Name": "Bye, Bye Brasil" - }, - "231": { - "Composer": null, - "Name": "Atras Da Porta" - }, - "232": { - "Composer": null, - "Name": "Tatuagem" - }, - "234": { - "Composer": null, - "Name": "Morena De Angola" - }, - "236": { - "Composer": null, - "Name": "A Banda" - }, - "237": { - "Composer": null, - "Name": "Minha Historia" - }, - "239": { - "Composer": null, - "Name": "Brejo Da Cruz" - }, - "240": { - "Composer": null, - "Name": "Meu Caro Amigo" - }, - "241": { - "Composer": null, - "Name": "Geni E O Zepelim" - }, - "243": { - "Composer": null, - "Name": "Vai Trabalhar Vagabundo" - }, - "515": { - "Composer": null, - "Name": "Meia-Lua Inteira" - }, - "516": { - "Composer": null, - "Name": "Voce e Linda" - }, - "517": { - "Composer": null, - "Name": "Um Indio" - }, - "518": { - "Composer": null, - "Name": "Podres Poderes" - }, - "519": { - "Composer": null, - "Name": "Voce Nao Entende Nada - Cotidiano" - }, - "520": { - "Composer": null, - "Name": "O Estrangeiro" - }, - "521": { - "Composer": null, - "Name": "Menino Do Rio" - }, - "522": { - "Composer": null, - "Name": "Qualquer Coisa" - }, - "523": { - "Composer": null, - "Name": "Sampa" - }, - "524": { - "Composer": null, - "Name": "Queixa" - }, - "525": { - "Composer": null, - "Name": "O Leaozinho" - }, - "526": { - "Composer": null, - "Name": "Fora Da Ordem" - }, - "527": { - "Composer": null, - "Name": "Terra" - }, - "528": { - "Composer": null, - "Name": "Alegria, Alegria" - } - }, - "Title": "Minha Historia", - "artist": { - "ArtistId": 17, - "Name": "Chico Buarque" - } - }, - "27": { - "tracks": { - "301": { - "Composer": "Da Gama/Toni Garrido", - "Name": "A Sombra Da Maldade" - }, - "302": { - "Composer": "Da Gama/Lazao/Toni Garrido", - "Name": "A Estrada" - }, - "303": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "Name": "Falar A Verdade" - }, - "304": { - "Composer": "Harry Lawes/Winston Foster-Vers", - "Name": "Firmamento" - }, - "305": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "Name": "Pensamento" - }, - "306": { - "Composer": "Bino/Da Gamma/Lazao/Toni Garrido", - "Name": "Realidade Virtual" - }, - "307": { - "Composer": "Bino/Da Gama/Toni Garrido", - "Name": "Doutor" - }, - "308": { - "Composer": "Bino/Da Gama/Lazao/Ras Bernardo", - "Name": "Na Frente Da TV" - }, - "309": { - "Composer": "Cidade Negra", - "Name": "Downtown" - }, - "311": { - "Composer": "Bernardo Vilhena/Da Gama/Lazao", - "Name": "A Cor Do Sol" - } - }, - "Title": "Cidade Negra - Hits", - "artist": { - "ArtistId": 19, - "Name": "Cidade Negra" - } - }, - "30": { - "tracks": { - "337": { - "Composer": "J B Lenoir/Willie Dixon", - "Name": "You Shook Me" - }, - "338": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby" - }, - "339": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown" - }, - "340": { - "Composer": "Jimmy Page", - "Name": "Dazed and Confused" - }, - "341": { - "Composer": "Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant", - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "What is and Should Never Be" - }, - "343": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown(2)" - }, - "344": { - "Composer": "Jimmy Page/Robert Johnson/Robert Plant", - "Name": "Travelling Riverside Blues" - }, - "345": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Name": "Whole Lotta Love" - }, - "346": { - "Composer": "Bob Cochran/Sharon Sheeley", - "Name": "Somethin' Else" - }, - "347": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown(3)" - }, - "348": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Composer": "J B Lenoir/Willie Dixon", - "Name": "You Shook Me(2)" - }, - "350": { - "Composer": "Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant", - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "31": { - "tracks": { - "351": { - "Composer": "Frank Zappa", - "Name": "Debra Kadabra" - }, - "352": { - "Composer": "Frank Zappa", - "Name": "Carolina Hard-Core Ecstasy" - }, - "353": { - "Composer": "Don Van Vliet", - "Name": "Sam With The Showing Scalp Flat Top" - }, - "354": { - "Composer": "Frank Zappa", - "Name": "Poofter's Froth Wyoming Plans Ahead" - }, - "355": { - "Composer": "Frank Zappa", - "Name": "200 Years Old" - }, - "356": { - "Composer": "Frank Zappa", - "Name": "Cucamonga" - }, - "357": { - "Composer": "Frank Zappa", - "Name": "Advance Romance" - }, - "358": { - "Composer": "Don Van Vliet", - "Name": "Man With The Woman Head" - }, - "359": { - "Composer": "Frank Zappa", - "Name": "Muffin Man" - } - }, - "Title": "Bongo Fury", - "artist": { - "ArtistId": 23, - "Name": "Frank Zappa & Captain Beefheart" - } - }, - "32": { - "tracks": { - "360": { - "Composer": null, - "Name": "Vai-Vai 2001" - }, - "361": { - "Composer": null, - "Name": "X-9 2001" - }, - "362": { - "Composer": null, - "Name": "Gavioes 2001" - }, - "363": { - "Composer": null, - "Name": "Nene 2001" - }, - "364": { - "Composer": null, - "Name": "Rosas De Ouro 2001" - }, - "365": { - "Composer": null, - "Name": "Mocidade Alegre 2001" - }, - "366": { - "Composer": null, - "Name": "Camisa Verde 2001" - }, - "367": { - "Composer": null, - "Name": "Leandro De Itaquera 2001" - }, - "368": { - "Composer": null, - "Name": "Tucuruvi 2001" - }, - "369": { - "Composer": null, - "Name": "Aguia De Ouro 2001" - }, - "370": { - "Composer": null, - "Name": "Ipiranga 2001" - }, - "371": { - "Composer": null, - "Name": "Morro Da Casa Verde 2001" - }, - "372": { - "Composer": null, - "Name": "Perola Negra 2001" - }, - "373": { - "Composer": null, - "Name": "Sao Lucas 2001" - } - }, - "Title": "Carnaval 2001", - "artist": { - "ArtistId": 21, - "Name": "Various Artists" - } - }, - "33": { - "tracks": { - "374": { - "Composer": "Marcos Valle", - "Name": "Guanabara" - }, - "375": { - "Composer": "Jorge Ben", - "Name": "Mas Que Nada" - }, - "377": { - "Composer": "Donato/Gilberto Gil", - "Name": "A Paz" - }, - "378": { - "Composer": "Antonio Carlos Jobim", - "Name": "Wave (Vou te Contar)" - }, - "381": { - "Composer": "Jorge Vercilo/Jota Maranhao", - "Name": "Pode Parar" - }, - "382": { - "Composer": "Caetano Veloso", - "Name": "Menino do Rio" - }, - "383": { - "Composer": "Caetano Veloso", - "Name": "Ando Meio Desligado" - }, - "385": { - "Composer": "Nando Reis", - "Name": "All Star" - }, - "386": { - "Composer": "Alexandre Brazil/Pedro Luis/Rodrigo Cabelo", - "Name": "Menina Bonita" - }, - "390": { - "Composer": "Alba Carvalho/Fernando Porto", - "Name": "Sambassim (dj patife remix)" - } - }, - "Title": "Chill: Brazil (Disc 1)", - "artist": { - "ArtistId": 24, - "Name": "Marcos Valle" - } - }, - "35": { - "tracks": { - "408": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Name": "Free Speech For The Dumb" - }, - "409": { - "Composer": "Harris/Tatler", - "Name": "It's Electric" - }, - "410": { - "Composer": "Black Sabbath", - "Name": "Sabbra Cadabra" - }, - "411": { - "Composer": "Seger", - "Name": "Turn The Page" - }, - "412": { - "Composer": "Danzig", - "Name": "Die Die My Darling" - }, - "413": { - "Composer": "Cave", - "Name": "Loverman" - }, - "414": { - "Composer": "Diamond/Shermann", - "Name": "Mercyful Fate" - }, - "415": { - "Composer": "A.Bouchard/J.Bouchard/S.Pearlman", - "Name": "Astronomy" - }, - "416": { - "Composer": "Traditional", - "Name": "Whiskey In The Jar" - }, - "417": { - "Composer": "Collins/Van Zandt", - "Name": "Tuesday's Gone" - }, - "418": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "36": { - "tracks": { - "419": { - "Composer": "Roger Taylor", - "Name": "A Kind Of Magic" - }, - "420": { - "Composer": "Queen & David Bowie", - "Name": "Under Pressure" - }, - "421": { - "Composer": "Roger Taylor", - "Name": "Radio GA GA" - }, - "422": { - "Composer": "Queen", - "Name": "I Want It All" - }, - "423": { - "Composer": "John Deacon", - "Name": "I Want To Break Free" - }, - "424": { - "Composer": "Queen", - "Name": "Innuendo" - }, - "425": { - "Composer": "Freddie Mercury", - "Name": "It's A Hard Life" - }, - "426": { - "Composer": "Queen", - "Name": "Breakthru" - }, - "427": { - "Composer": "Brian May", - "Name": "Who Wants To Live Forever" - }, - "428": { - "Composer": "Queen", - "Name": "Headlong" - }, - "429": { - "Composer": "Queen", - "Name": "The Miracle" - }, - "430": { - "Composer": "Queen", - "Name": "I'm Going Slightly Mad" - }, - "431": { - "Composer": "Queen", - "Name": "The Invisible Man" - }, - "432": { - "Composer": "Brian May", - "Name": "Hammer To Fall" - }, - "433": { - "Composer": "Freddie Mercury & John Deacon", - "Name": "Friends Will Be Friends" - }, - "434": { - "Composer": "Queen", - "Name": "The Show Must Go On" - }, - "435": { - "Composer": "Queen", - "Name": "One Vision" - } - }, - "Title": "Greatest Hits II", - "artist": { - "ArtistId": 51, - "Name": "Queen" - } - }, - "37": { - "tracks": { - "436": { - "Composer": "Paul Stanley, B. Ezrin", - "Name": "Detroit Rock City" - }, - "437": { - "Composer": "Paul Stanley", - "Name": "Black Diamond" - }, - "438": { - "Composer": "Paul Stanley", - "Name": "Hard Luck Woman" - }, - "439": { - "Composer": "Paul Stanley, Vincent Poncia", - "Name": "Sure Know Something" - }, - "440": { - "Composer": "Paul Stanley", - "Name": "Love Gun" - }, - "441": { - "Composer": "Gene Simmons", - "Name": "Deuce" - }, - "442": { - "Composer": "Gene Simmons, S. Coronel", - "Name": "Goin' Blind" - }, - "443": { - "Composer": "Ace Frehley", - "Name": "Shock Me" - }, - "444": { - "Composer": "Paul Stanley, B. Ezrin, K. Fowley", - "Name": "Do You Love Me" - }, - "445": { - "Composer": "Gene Simmons, S. Coronel", - "Name": "She" - }, - "446": { - "Composer": "Paul Stanley, Vincent Poncia, Desmond Child", - "Name": "I Was Made For Loving You" - }, - "447": { - "Composer": "Paul Stanley, Gene Simmons, B. Ezrin", - "Name": "Shout It Out Loud" - }, - "448": { - "Composer": "Paul Stanley", - "Name": "God Of Thunder" - }, - "449": { - "Composer": "Gene Simmons", - "Name": "Calling Dr. Love" - }, - "450": { - "Composer": "S. Penridge, Bob Ezrin, Peter Criss", - "Name": "Beth" - }, - "451": { - "Composer": "Paul Stanley, Gene Simmons", - "Name": "Strutter" - }, - "452": { - "Composer": "Paul Stanley, Gene Simmons", - "Name": "Rock And Roll All Nite" - }, - "453": { - "Composer": "Ace Frehley", - "Name": "Cold Gin" - }, - "454": { - "Composer": "Gene Simmons", - "Name": "Plaster Caster" - }, - "455": { - "Composer": "Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin", - "Name": "God Gave Rock 'n' Roll To You" - } - }, - "Title": "Greatest Kiss", - "artist": { - "ArtistId": 52, - "Name": "Kiss" - } - }, - "38": { - "tracks": { - "456": { - "Composer": null, - "Name": "Heart of the Night" - }, - "457": { - "Composer": null, - "Name": "De La Luz" - }, - "458": { - "Composer": null, - "Name": "Westwood Moon" - }, - "459": { - "Composer": null, - "Name": "Midnight" - }, - "460": { - "Composer": null, - "Name": "Playtime" - }, - "461": { - "Composer": null, - "Name": "Surrender" - }, - "462": { - "Composer": null, - "Name": "Valentino's" - }, - "463": { - "Composer": null, - "Name": "Believe" - }, - "464": { - "Composer": null, - "Name": "As We Sleep" - }, - "465": { - "Composer": null, - "Name": "When Evening Falls" - }, - "466": { - "Composer": null, - "Name": "J Squared" - }, - "467": { - "Composer": null, - "Name": "Best Thing" - } - }, - "Title": "Heart of the Night", - "artist": { - "ArtistId": 53, - "Name": "Spyro Gyra" - } - }, - "39": { - "tracks": { - "468": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Maria" - }, - "469": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Poprocks And Coke" - }, - "470": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Longview" - }, - "471": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Welcome To Paradise" - }, - "472": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Basket Case" - }, - "473": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "When I Come Around" - }, - "474": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "She" - }, - "475": { - "Composer": "Mike Dirnt -Words Green Day -Music", - "Name": "J.A.R. (Jason Andrew Relva)" - }, - "476": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Geek Stink Breath" - }, - "477": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Brain Stew" - }, - "478": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Jaded" - }, - "479": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Walking Contradiction" - }, - "480": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Stuck With Me" - }, - "481": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Hitchin' A Ride" - }, - "482": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Good Riddance (Time Of Your Life)" - }, - "483": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Redundant" - }, - "484": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Nice Guys Finish Last" - }, - "485": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Minority" - }, - "486": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Warning" - }, - "487": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Waiting" - }, - "488": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Macy's Day Parade" - } - }, - "Title": "International Superhits", - "artist": { - "ArtistId": 54, - "Name": "Green Day" - } - }, - "40": { - "tracks": { - "489": { - "Composer": "David Coverdale", - "Name": "Into The Light" - }, - "490": { - "Composer": "David Coverdale", - "Name": "River Song" - }, - "491": { - "Composer": "David Coverdale", - "Name": "She Give Me ..." - }, - "492": { - "Composer": "David Coverdale", - "Name": "Don't You Cry" - }, - "493": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Love Is Blind" - }, - "494": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Slave" - }, - "495": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "Name": "Cry For Love" - }, - "496": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "Name": "Living On Love" - }, - "497": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Midnight Blue" - }, - "498": { - "Composer": "Adrian Vanderberg/David Coverdale", - "Name": "Too Many Tears" - }, - "499": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Don't Lie To Me" - }, - "500": { - "Composer": "David Coverdale", - "Name": "Wherever You May Go" - } - }, - "Title": "Into The Light", - "artist": { - "ArtistId": 55, - "Name": "David Coverdale" - } - }, - "41": { - "tracks": { - "501": { - "Composer": "Gonzaga Jr.", - "Name": "Grito De Alerta" - }, - "505": { - "Composer": "Gonzaga Jr/Gonzaguinha", - "Name": "Sangrando" - }, - "507": { - "Composer": "Gonzaga Jr.", - "Name": "Lindo Lago Do Amor" - }, - "509": { - "Composer": "Gonzaga Jr.", - "Name": "Com A Perna No Mundo" - }, - "512": { - "Composer": "Gonzaga Jr", - "Name": "Comportamento Geral" - }, - "514": { - "Composer": "Gonzaguinha", - "Name": "Espere Por Mim, Morena" - } - }, - "Title": "Meus Momentos", - "artist": { - "ArtistId": 56, - "Name": "Gonzaguinha" - } - }, - "43": { - "tracks": { - "543": { - "Composer": "Coverdale/Lord/Paice", - "Name": "Burn" - }, - "544": { - "Composer": "Coverdale", - "Name": "Stormbringer" - }, - "545": { - "Composer": "Coverdale/Hughes/Lord/Paice", - "Name": "Gypsy" - }, - "546": { - "Composer": "Coverdale", - "Name": "Lady Double Dealer" - }, - "547": { - "Composer": "Coverdale", - "Name": "Mistreated" - }, - "548": { - "Composer": "Gillan/Glover/Lord/Paice", - "Name": "Smoke On The Water" - }, - "549": { - "Composer": "Coverdale/Lord/Paice", - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "44": { - "tracks": { - "550": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Custard Pie" - }, - "551": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "The Rover" - }, - "552": { - "Composer": "John Bonham/John Paul Jones", - "Name": "In My Time Of Dying" - }, - "553": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Houses Of The Holy" - }, - "554": { - "Composer": "John Paul Jones", - "Name": "Trampled Under Foot" - }, - "555": { - "Composer": "John Bonham", - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "45": { - "tracks": { - "556": { - "Composer": "Guga/Marquinho Lessa/Tuninho Professor", - "Name": "Imperatriz" - }, - "557": { - "Composer": "Caruso/Cleber/Deo/Osmar", - "Name": "Beija-Flor" - }, - "558": { - "Composer": "Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto", - "Name": "Viradouro" - }, - "559": { - "Composer": "Domenil/J. Brito/Joaozinho/Rap, Marcelo Do", - "Name": "Mocidade" - }, - "560": { - "Composer": "Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir", - "Name": "Unidos Da Tijuca" - }, - "561": { - "Composer": "Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da", - "Name": "Salgueiro" - }, - "565": { - "Composer": "Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno", - "Name": "Portela" - }, - "566": { - "Composer": "Gule/Jorge 101/Lequinho/Luiz Piao", - "Name": "Caprichosos" - }, - "569": { - "Composer": "Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som", - "Name": "Tuiuti" - } - }, - "Title": "Sambas De Enredo 2001", - "artist": { - "ArtistId": 21, - "Name": "Various Artists" - } - }, - "46": { - "tracks": { - "570": { - "Composer": "Santana", - "Name": "(Da Le) Yaleo" - }, - "571": { - "Composer": "Carlos Santana & Dave Matthews", - "Name": "Love Of My Life" - }, - "572": { - "Composer": "E. Shrody", - "Name": "Put Your Lights On" - }, - "573": { - "Composer": "I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo", - "Name": "Africa Bamba" - }, - "574": { - "Composer": "M. Itaal Shur & Rob Thomas", - "Name": "Smooth" - }, - "575": { - "Composer": "L. Hill", - "Name": "Do You Like The Way" - }, - "576": { - "Composer": "W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow", - "Name": "Maria Maria" - }, - "577": { - "Composer": "R. Taha, Carlos Santana & T. Lindsay", - "Name": "Migra" - }, - "578": { - "Composer": "F. Olivera", - "Name": "Corazon Espinado" - }, - "579": { - "Composer": "Eale-Eye Cherry, M. Simpson, J. King & M. Nishita", - "Name": "Wishing It Was" - }, - "580": { - "Composer": "Carlos Santana & KC Porter", - "Name": "El Farol" - }, - "581": { - "Composer": "KC Porter & JB Eckl", - "Name": "Primavera" - }, - "582": { - "Composer": "Carlos Santana & C. Thompson", - "Name": "The Calling" - } - }, - "Title": "Supernatural", - "artist": { - "ArtistId": 59, - "Name": "Santana" - } - }, - "47": { - "tracks": { - "584": { - "Composer": null, - "Name": "Manuel" - }, - "586": { - "Composer": null, - "Name": "Um Contrato Com Deus" - }, - "587": { - "Composer": null, - "Name": "Um Jantar Pra Dois" - }, - "589": { - "Composer": null, - "Name": "Um Love" - }, - "590": { - "Composer": null, - "Name": "Seis Da Tarde" - }, - "591": { - "Composer": null, - "Name": "Baixo Rio" - }, - "592": { - "Composer": null, - "Name": "Sombras Do Meu Destino" - }, - "593": { - "Composer": null, - "Name": "Do You Have Other Loves?" - }, - "594": { - "Composer": null, - "Name": "Agora Que O Dia Acordou" - }, - "596": { - "Composer": null, - "Name": "A Rua" - } - }, - "Title": "The Best of Ed Motta", - "artist": { - "ArtistId": 37, - "Name": "Ed Motta" - } - }, - "48": { - "tracks": { - "597": { - "Composer": "Miles Davis", - "Name": "Now's The Time" - }, - "598": { - "Composer": "Miles Davis", - "Name": "Jeru" - }, - "599": { - "Composer": "Miles Davis", - "Name": "Compulsion" - }, - "600": { - "Composer": "Miles Davis", - "Name": "Tempus Fugit" - }, - "601": { - "Composer": "Miles Davis", - "Name": "Walkin'" - }, - "602": { - "Composer": "Miles Davis", - "Name": "'Round Midnight" - }, - "603": { - "Composer": "Miles Davis", - "Name": "Bye Bye Blackbird" - }, - "604": { - "Composer": "Miles Davis", - "Name": "New Rhumba" - }, - "605": { - "Composer": "Miles Davis", - "Name": "Generique" - }, - "606": { - "Composer": "Miles Davis", - "Name": "Summertime" - }, - "607": { - "Composer": "Miles Davis", - "Name": "So What" - }, - "608": { - "Composer": "Miles Davis", - "Name": "The Pan Piper" - }, - "609": { - "Composer": "Miles Davis", - "Name": "Someday My Prince Will Come" - } - }, - "Title": "The Essential Miles Davis [Disc 1]", - "artist": { - "ArtistId": 68, - "Name": "Miles Davis" - } - }, - "49": { - "tracks": { - "610": { - "Composer": "Miles Davis", - "Name": "My Funny Valentine (Live)" - }, - "611": { - "Composer": "Miles Davis", - "Name": "E.S.P." - }, - "612": { - "Composer": "Miles Davis", - "Name": "Nefertiti" - }, - "613": { - "Composer": "Miles Davis", - "Name": "Petits Machins (Little Stuff)" - }, - "614": { - "Composer": "Miles Davis", - "Name": "Miles Runs The Voodoo Down" - }, - "615": { - "Composer": "Miles Davis", - "Name": "Little Church (Live)" - }, - "616": { - "Composer": "Miles Davis", - "Name": "Black Satin" - }, - "617": { - "Composer": "Miles Davis", - "Name": "Jean Pierre (Live)" - }, - "618": { - "Composer": "Miles Davis", - "Name": "Time After Time" - }, - "619": { - "Composer": "Miles Davis", - "Name": "Portia" - } - }, - "Title": "The Essential Miles Davis [Disc 2]", - "artist": { - "ArtistId": 68, - "Name": "Miles Davis" - } - }, - "50": { - "tracks": { - "620": { - "Composer": "Blackmore/Gillan/Glover/Lord/Paice", - "Name": "Space Truckin'" - }, - "621": { - "Composer": "Gillan/Glover/Lord/Nix - Blackmore/Paice", - "Name": "Going Down / Highway Star" - }, - "622": { - "Composer": "Blackmore/Coverdale", - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Composer": "Blackmore/Coverdale/Lord/Paice", - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "51": { - "tracks": { - "624": { - "Composer": null, - "Name": "Jeepers Creepers" - }, - "625": { - "Composer": null, - "Name": "Blue Rythm Fantasy" - }, - "626": { - "Composer": null, - "Name": "Drum Boogie" - }, - "627": { - "Composer": null, - "Name": "Let Me Off Uptown" - }, - "628": { - "Composer": null, - "Name": "Leave Us Leap" - }, - "629": { - "Composer": null, - "Name": "Opus No.1" - }, - "630": { - "Composer": null, - "Name": "Boogie Blues" - }, - "631": { - "Composer": null, - "Name": "How High The Moon" - }, - "632": { - "Composer": null, - "Name": "Disc Jockey Jump" - }, - "633": { - "Composer": null, - "Name": "Up An' Atom" - }, - "634": { - "Composer": null, - "Name": "Bop Boogie" - }, - "635": { - "Composer": null, - "Name": "Lemon Drop" - }, - "636": { - "Composer": null, - "Name": "Coronation Drop" - }, - "637": { - "Composer": null, - "Name": "Overtime" - }, - "638": { - "Composer": null, - "Name": "Imagination" - }, - "639": { - "Composer": null, - "Name": "Don't Take Your Love From Me" - }, - "640": { - "Composer": null, - "Name": "Midget" - }, - "641": { - "Composer": null, - "Name": "I'm Coming Virginia" - }, - "642": { - "Composer": null, - "Name": "Payin' Them Dues Blues" - }, - "643": { - "Composer": null, - "Name": "Jungle Drums" - }, - "644": { - "Composer": null, - "Name": "Showcase" - }, - "645": { - "Composer": null, - "Name": "Swedish Schnapps" - } - }, - "Title": "Up An' Atom", - "artist": { - "ArtistId": 69, - "Name": "Gene Krupa" - } - }, - "53": { - "tracks": { - "664": { - "Composer": null, - "Name": "Marina (Dorival Caymmi)" - }, - "665": { - "Composer": null, - "Name": "Aquarela (Toquinho)" - }, - "667": { - "Composer": null, - "Name": "Dona (Roupa Nova)" - }, - "670": { - "Composer": null, - "Name": "Romaria (Renato Teixeira)" - }, - "672": { - "Composer": null, - "Name": "Wave (Os Cariocas)" - }, - "673": { - "Composer": null, - "Name": "Garota de Ipanema (Dick Farney)" - } - }, - "Title": "Vozes do MPB", - "artist": { - "ArtistId": 21, - "Name": "Various Artists" - } - }, - "54": { - "tracks": { - "675": { - "Composer": "Hawkins-Lewis-Broadwater", - "Name": "Susie Q" - }, - "676": { - "Composer": "Jay Hawkins", - "Name": "I Put A Spell On You" - }, - "677": { - "Composer": "J. C. Fogerty", - "Name": "Proud Mary" - }, - "678": { - "Composer": "J. C. Fogerty", - "Name": "Bad Moon Rising" - }, - "679": { - "Composer": "J. C. Fogerty", - "Name": "Lodi" - }, - "680": { - "Composer": "J. C. Fogerty", - "Name": "Green River" - }, - "681": { - "Composer": "J. C. Fogerty", - "Name": "Commotion" - }, - "682": { - "Composer": "J. C. Fogerty", - "Name": "Down On The Corner" - }, - "683": { - "Composer": "J. C. Fogerty", - "Name": "Fortunate Son" - }, - "684": { - "Composer": "J. C. Fogerty", - "Name": "Travelin' Band" - }, - "685": { - "Composer": "J. C. Fogerty", - "Name": "Who'll Stop The Rain" - }, - "686": { - "Composer": "J. C. Fogerty", - "Name": "Up Around The Bend" - }, - "687": { - "Composer": "J. C. Fogerty", - "Name": "Run Through The Jungle" - }, - "688": { - "Composer": "J. C. Fogerty", - "Name": "Lookin' Out My Back Door" - }, - "689": { - "Composer": "J. C. Fogerty", - "Name": "Long As I Can See The Light" - }, - "690": { - "Composer": "Whitfield-Strong", - "Name": "I Heard It Through The Grapevine" - }, - "691": { - "Composer": "J. C. Fogerty", - "Name": "Have You Ever Seen The Rain?" - }, - "692": { - "Composer": "J. C. Fogerty", - "Name": "Hey Tonight" - }, - "693": { - "Composer": "J. C. Fogerty", - "Name": "Sweet Hitch-Hiker" - }, - "694": { - "Composer": "J. C. Fogerty", - "Name": "Someday Never Comes" - } - }, - "Title": "Chronicle, Vol. 1", - "artist": { - "ArtistId": 76, - "Name": "Creedence Clearwater Revival" - } - }, - "55": { - "tracks": { - "695": { - "Composer": "J.C. Fogerty", - "Name": "Walking On The Water" - }, - "696": { - "Composer": "J.C. Fogerty", - "Name": "Suzie-Q, Pt. 2" - }, - "697": { - "Composer": "J.C. Fogerty", - "Name": "Born On The Bayou" - }, - "698": { - "Composer": "J.C. Fogerty", - "Name": "Good Golly Miss Molly" - }, - "699": { - "Composer": "J.C. Fogerty", - "Name": "Tombstone Shadow" - }, - "700": { - "Composer": "J.C. Fogerty", - "Name": "Wrote A Song For Everyone" - }, - "701": { - "Composer": "J.C. Fogerty", - "Name": "Night Time Is The Right Time" - }, - "702": { - "Composer": "J.C. Fogerty", - "Name": "Cotton Fields" - }, - "703": { - "Composer": "J.C. Fogerty", - "Name": "It Came Out Of The Sky" - }, - "704": { - "Composer": "J.C. Fogerty", - "Name": "Don't Look Now" - }, - "705": { - "Composer": "J.C. Fogerty", - "Name": "The Midnight Special" - }, - "706": { - "Composer": "J.C. Fogerty", - "Name": "Before You Accuse Me" - }, - "707": { - "Composer": "J.C. Fogerty", - "Name": "My Baby Left Me" - }, - "708": { - "Composer": "J.C. Fogerty", - "Name": "Pagan Baby" - }, - "709": { - "Composer": "J.C. Fogerty", - "Name": "(Wish I Could) Hideaway" - }, - "710": { - "Composer": "J.C. Fogerty", - "Name": "It's Just A Thought" - }, - "711": { - "Composer": "J.C. Fogerty", - "Name": "Molina" - }, - "712": { - "Composer": "J.C. Fogerty", - "Name": "Born To Move" - }, - "713": { - "Composer": "J.C. Fogerty", - "Name": "Lookin' For A Reason" - }, - "714": { - "Composer": "J.C. Fogerty", - "Name": "Hello Mary Lou" - } - }, - "Title": "Chronicle, Vol. 2", - "artist": { - "ArtistId": 76, - "Name": "Creedence Clearwater Revival" - } - }, - "58": { - "tracks": { - "745": { - "Composer": "Bolin/Coverdale/Paice", - "Name": "Comin' Home" - }, - "746": { - "Composer": "Cook/Coverdale", - "Name": "Lady Luck" - }, - "747": { - "Composer": "Bolin/Hughes", - "Name": "Gettin' Tighter" - }, - "748": { - "Composer": "Bolin/Coverdale", - "Name": "Dealer" - }, - "749": { - "Composer": "Bolin/Coverdale", - "Name": "I Need Love" - }, - "750": { - "Composer": "Bolin/Coverdale", - "Name": "Drifter" - }, - "751": { - "Composer": "Bolin/Coverdale", - "Name": "Love Child" - }, - "752": { - "Composer": "Bolin/Hughes/Lord", - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Composer": "Coverdale/Hughes", - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "59": { - "tracks": { - "754": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Speed King" - }, - "755": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Bloodsucker" - }, - "756": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Child In Time" - }, - "757": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Flight Of The Rat" - }, - "758": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Into The Fire" - }, - "759": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Living Wreck" - }, - "760": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "60": { - "tracks": { - "761": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Fireball" - }, - "762": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "No No No" - }, - "763": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Strange Kind Of Woman" - }, - "764": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Anyone's Daughter" - }, - "765": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "The Mule" - }, - "766": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Fools" - }, - "767": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "No One Came" - } - }, - "Title": "Fireball", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "61": { - "tracks": { - "768": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Name": "Knocking At Your Back Door" - }, - "769": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Name": "Bad Attitude" - }, - "770": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Nobody's Home" - }, - "772": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Black Night" - }, - "773": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Name": "Perfect Strangers" - }, - "774": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice", - "Name": "The Unwritten Law" - }, - "775": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Name": "Call Of The Wild" - }, - "776": { - "Composer": "South", - "Name": "Hush" - }, - "777": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Smoke On The Water" - }, - "778": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "62": { - "tracks": { - "779": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Highway Star" - }, - "780": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Maybe I'm A Leo" - }, - "781": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Pictures Of Home" - }, - "782": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Never Before" - }, - "783": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Smoke On The Water" - }, - "784": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Lazy" - }, - "785": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "63": { - "tracks": { - "786": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Loosen My Strings" - }, - "788": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Soon Forgotten" - }, - "789": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "The Aviator" - }, - "792": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Rosa's Cantina" - }, - "793": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "A Touch Away" - }, - "795": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Hey Cisco" - }, - "796": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "64": { - "tracks": { - "798": { - "Composer": "Blackmore, Glover, Turner", - "Name": "King Of Dreams" - }, - "799": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "The Cut Runs Deep" - }, - "800": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "Fire In The Basement" - }, - "801": { - "Composer": "Blackmore, Glover, Turner", - "Name": "Truth Hurts" - }, - "802": { - "Composer": "Blackmore, Glover, Turner", - "Name": "Breakfast In Bed" - }, - "803": { - "Composer": "Blackmore, Glover, Turner", - "Name": "Love Conquers All" - }, - "804": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "Fortuneteller" - }, - "805": { - "Composer": "Turner, Held, Greenwood", - "Name": "Too Much Is Not Enough" - }, - "806": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "65": { - "tracks": { - "807": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Name": "Stormbringer" - }, - "808": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord", - "Name": "Holy Man" - }, - "810": { - "Composer": "D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord", - "Name": "Hold On" - }, - "811": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Name": "Lady Double Dealer" - }, - "812": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore", - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Name": "High Ball Shooter" - }, - "814": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Name": "The Gypsy" - }, - "815": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "66": { - "tracks": { - "816": { - "Composer": "ian paice/jon lord", - "Name": "The Battle Rages On" - }, - "817": { - "Composer": "roger glover", - "Name": "Lick It Up" - }, - "818": { - "Composer": "jon lord/roger glover", - "Name": "Anya" - }, - "819": { - "Composer": "roger glover", - "Name": "Talk About Love" - }, - "820": { - "Composer": "roger glover", - "Name": "Time To Kill" - }, - "821": { - "Composer": "roger glover", - "Name": "Ramshackle Man" - }, - "822": { - "Composer": "roger glover", - "Name": "A Twist In The Tail" - }, - "823": { - "Composer": "jon lord/roger glover", - "Name": "Nasty Piece Of Work" - }, - "824": { - "Composer": "roger glover", - "Name": "Solitaire" - }, - "825": { - "Composer": "roger glover", - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On", - "artist": { - "ArtistId": 58, - "Name": "Deep Purple" - } - }, - "67": { - "tracks": { - "826": { - "Composer": null, - "Name": "Pour Some Sugar On Me" - }, - "827": { - "Composer": null, - "Name": "Photograph" - }, - "828": { - "Composer": null, - "Name": "Love Bites" - }, - "829": { - "Composer": null, - "Name": "Let's Get Rocked" - }, - "830": { - "Composer": null, - "Name": "Two Steps Behind [Acoustic Version]" - }, - "831": { - "Composer": null, - "Name": "Animal" - }, - "832": { - "Composer": null, - "Name": "Heaven Is" - }, - "833": { - "Composer": null, - "Name": "Rocket" - }, - "834": { - "Composer": null, - "Name": "When Love & Hate Collide" - }, - "835": { - "Composer": null, - "Name": "Action" - }, - "836": { - "Composer": null, - "Name": "Make Love Like A Man" - }, - "837": { - "Composer": null, - "Name": "Armageddon It" - }, - "838": { - "Composer": null, - "Name": "Have You Ever Needed Someone So Bad" - }, - "839": { - "Composer": null, - "Name": "Rock Of Ages" - }, - "840": { - "Composer": null, - "Name": "Hysteria" - }, - "841": { - "Composer": null, - "Name": "Bringin' On The Heartbreak" - } - }, - "Title": "Vault: Def Leppard's Greatest Hits", - "artist": { - "ArtistId": 78, - "Name": "Def Leppard" - } - }, - "68": { - "tracks": { - "842": { - "Composer": "Jim Beard", - "Name": "Roll Call" - }, - "843": { - "Composer": "John Scofield, Robert Aries, Milton Chambers and Gary Grainger", - "Name": "Otay" - }, - "844": { - "Composer": "Jim Beard", - "Name": "Groovus Interruptus" - }, - "845": { - "Composer": "Jon Herington", - "Name": "Paris On Mine" - }, - "846": { - "Composer": "Sylvester Stewart", - "Name": "In Time" - }, - "847": { - "Composer": "Dean Brown, Dennis Chambers & Jim Beard", - "Name": "Plan B" - }, - "848": { - "Composer": "Jim Beard & Jon Herington", - "Name": "Outbreak" - }, - "849": { - "Composer": "John Scofield", - "Name": "Baltimore, DC" - }, - "850": { - "Composer": "James Brown & Bobby Byrd", - "Name": "Talkin Loud and Saying Nothin" - } - }, - "Title": "Outbreak", - "artist": { - "ArtistId": 79, - "Name": "Dennis Chambers" - } - }, - "69": { - "tracks": { - "852": { - "Composer": null, - "Name": "Meu Bem-Querer" - }, - "853": { - "Composer": null, - "Name": "Cigano" - }, - "854": { - "Composer": null, - "Name": "Boa Noite" - }, - "855": { - "Composer": null, - "Name": "Fato Consumado" - }, - "858": { - "Composer": null, - "Name": "Esquinas" - }, - "859": { - "Composer": null, - "Name": "Se..." - }, - "860": { - "Composer": null, - "Name": "Eu Te Devoro" - }, - "862": { - "Composer": null, - "Name": "Acelerou" - }, - "863": { - "Composer": null, - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 02", - "artist": { - "ArtistId": 80, - "Name": "Djavan" - } - }, - "70": { - "tracks": { - "864": { - "Composer": "Djavan", - "Name": "Samurai" - }, - "865": { - "Composer": "Djavan", - "Name": "Nem Um Dia" - }, - "866": { - "Composer": "Djavan", - "Name": "Oceano" - }, - "868": { - "Composer": "Djavan", - "Name": "Serrado" - }, - "869": { - "Composer": "Djavan", - "Name": "Flor De Lis" - }, - "871": { - "Composer": "Djavan", - "Name": "Azul" - }, - "872": { - "Composer": "Djavan", - "Name": "Seduzir" - }, - "873": { - "Composer": "Djavan - Gabriel, O Pensador", - "Name": "A Carta" - }, - "874": { - "Composer": "Djavan", - "Name": "Sina" - }, - "875": { - "Composer": "Djavan", - "Name": "Acelerou" - }, - "876": { - "Composer": "Djavan", - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 1", - "artist": { - "ArtistId": 80, - "Name": "Djavan" - } - }, - "72": { - "tracks": { - "891": { - "Composer": "Clapton/Gordon", - "Name": "Layla" - }, - "892": { - "Composer": "Clapton/Harrison", - "Name": "Badge" - }, - "893": { - "Composer": "Bruce/Clapton", - "Name": "I Feel Free" - }, - "894": { - "Composer": "Bruce/Clapton", - "Name": "Sunshine Of Your Love" - }, - "895": { - "Composer": "Clapton/Robert Johnson Arr: Eric Clapton", - "Name": "Crossroads" - }, - "896": { - "Composer": "Clapton/Collins/Pappalardi", - "Name": "Strange Brew" - }, - "897": { - "Composer": "Bruce/Clapton", - "Name": "White Room" - }, - "898": { - "Composer": "Clapton", - "Name": "Bell Bottom Blues" - }, - "899": { - "Composer": "Cale/Clapton", - "Name": "Cocaine" - }, - "900": { - "Composer": "Marley", - "Name": "I Shot The Sheriff" - }, - "901": { - "Composer": "Clapton/J. J. Cale", - "Name": "After Midnight" - }, - "902": { - "Composer": "Clapton/Trad. Arr. Clapton", - "Name": "Swing Low Sweet Chariot" - }, - "903": { - "Composer": "Clapton/Levy", - "Name": "Lay Down Sally" - }, - "904": { - "Composer": "Clapton/Dylan", - "Name": "Knockin On Heavens Door" - }, - "905": { - "Composer": "Clapton", - "Name": "Wonderful Tonight" - }, - "906": { - "Composer": "Clapton", - "Name": "Let It Grow" - }, - "907": { - "Composer": "Clapton/F.eldman/Linn", - "Name": "Promises" - }, - "908": { - "Composer": "Clapton", - "Name": "I Can't Stand It" - } - }, - "Title": "The Cream Of Clapton", - "artist": { - "ArtistId": 81, - "Name": "Eric Clapton" - } - }, - "73": { - "tracks": { - "909": { - "Composer": "Eric Clapton", - "Name": "Signe" - }, - "910": { - "Composer": "Eugene McDaniel", - "Name": "Before You Accuse Me" - }, - "911": { - "Composer": "Big Bill Broonzy", - "Name": "Hey Hey" - }, - "912": { - "Composer": "Eric Clapton, Will Jennings", - "Name": "Tears In Heaven" - }, - "913": { - "Composer": "Eric Clapton", - "Name": "Lonely Stranger" - }, - "914": { - "Composer": "Jimmy Cox", - "Name": "Nobody Knows You When You're Down & Out" - }, - "915": { - "Composer": "Eric Clapton, Jim Gordon", - "Name": "Layla" - }, - "916": { - "Composer": "Jerry Lynn Williams", - "Name": "Running On Faith" - }, - "917": { - "Composer": "Robert Johnson", - "Name": "Walkin' Blues" - }, - "918": { - "Composer": "Traditional", - "Name": "Alberta" - }, - "919": { - "Composer": "Jesse Fuller", - "Name": "San Francisco Bay Blues" - }, - "920": { - "Composer": "Robert Johnson", - "Name": "Malted Milk" - }, - "921": { - "Composer": "Eric Clapton, Robert Cray", - "Name": "Old Love" - }, - "922": { - "Composer": "McKinley Morgenfield (Muddy Waters)", - "Name": "Rollin' And Tumblin'" - }, - "1105": { - "Composer": "Gilberto Gil", - "Name": "A Novidade" - }, - "1106": { - "Composer": "Gilberto Gil", - "Name": "Tenho Sede" - }, - "1107": { - "Composer": "Gilberto Gil", - "Name": "Refazenda" - }, - "1108": { - "Composer": "Gilberto Gil", - "Name": "Realce" - }, - "1111": { - "Composer": "Gilberto Gil", - "Name": "A Paz" - }, - "1112": { - "Composer": "Gilberto Gil", - "Name": "Beira Mar" - }, - "1113": { - "Composer": "Gilberto Gil", - "Name": "Sampa" - }, - "1115": { - "Composer": "Gilberto Gil", - "Name": "Tempo Rei" - }, - "1116": { - "Composer": "Gilberto Gil", - "Name": "Expresso 2222" - }, - "1118": { - "Composer": "Gilberto Gil", - "Name": "Palco" - }, - "1119": { - "Composer": "Gilberto Gil", - "Name": "Toda Menina Baiana" - } - }, - "Title": "Unplugged", - "artist": { - "ArtistId": 81, - "Name": "Eric Clapton" - } - }, - "74": { - "tracks": { - "923": { - "Composer": "Jon Hudson/Mike Patton", - "Name": "Collision" - }, - "924": { - "Composer": "Jon Hudson/Mike Bordin/Mike Patton", - "Name": "Stripsearch" - }, - "925": { - "Composer": "Bill Gould/Mike Patton", - "Name": "Last Cup Of Sorrow" - }, - "926": { - "Composer": "Mike Patton", - "Name": "Naked In Front Of The Computer" - }, - "927": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Name": "Helpless" - }, - "928": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton", - "Name": "Mouth To Mouth" - }, - "929": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Name": "Ashes To Ashes" - }, - "930": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Name": "She Loves Me Not" - }, - "931": { - "Composer": "Mike Patton", - "Name": "Got That Feeling" - }, - "932": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Name": "Paths Of Glory" - }, - "933": { - "Composer": "Mike Patton", - "Name": "Home Sick Home" - }, - "934": { - "Composer": "Bill Gould/Mike Patton", - "Name": "Pristina" - } - }, - "Title": "Album Of The Year", - "artist": { - "ArtistId": 82, - "Name": "Faith No More" - } - }, - "75": { - "tracks": { - "935": { - "Composer": null, - "Name": "Land Of Sunshine" - }, - "936": { - "Composer": null, - "Name": "Caffeine" - }, - "937": { - "Composer": null, - "Name": "Midlife Crisis" - }, - "938": { - "Composer": null, - "Name": "RV" - }, - "939": { - "Composer": null, - "Name": "Smaller And Smaller" - }, - "940": { - "Composer": null, - "Name": "Everything's Ruined" - }, - "941": { - "Composer": null, - "Name": "Malpractice" - }, - "942": { - "Composer": null, - "Name": "Kindergarten" - }, - "943": { - "Composer": null, - "Name": "Be Aggressive" - }, - "944": { - "Composer": null, - "Name": "A Small Victory" - }, - "945": { - "Composer": null, - "Name": "Crack Hitler" - }, - "946": { - "Composer": null, - "Name": "Jizzlobber" - }, - "947": { - "Composer": null, - "Name": "Midnight Cowboy" - }, - "948": { - "Composer": null, - "Name": "Easy" - } - }, - "Title": "Angel Dust", - "artist": { - "ArtistId": 82, - "Name": "Faith No More" - } - }, - "76": { - "tracks": { - "949": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Get Out" - }, - "950": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Ricochet" - }, - "951": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Evidence" - }, - "952": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "The Gentle Art Of Making Enemies" - }, - "953": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Star A.D." - }, - "954": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Cuckoo For Caca" - }, - "955": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Caralho Voador" - }, - "956": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Ugly In The Morning" - }, - "957": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Digging The Grave" - }, - "958": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Take This Bottle" - }, - "959": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "King For A Day" - }, - "960": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "What A Day" - }, - "961": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "The Last To Know" - }, - "962": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Just A Man" - }, - "963": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Absolute Zero" - } - }, - "Title": "King For A Day Fool For A Lifetime", - "artist": { - "ArtistId": 82, - "Name": "Faith No More" - } - }, - "77": { - "tracks": { - "964": { - "Composer": "Faith No More", - "Name": "From Out Of Nowhere" - }, - "965": { - "Composer": "Faith No More", - "Name": "Epic" - }, - "966": { - "Composer": "Faith No More", - "Name": "Falling To Pieces" - }, - "967": { - "Composer": "Faith No More", - "Name": "Surprise! You're Dead!" - }, - "968": { - "Composer": "Faith No More", - "Name": "Zombie Eaters" - }, - "969": { - "Composer": "Faith No More", - "Name": "The Real Thing" - }, - "970": { - "Composer": "Faith No More", - "Name": "Underwater Love" - }, - "971": { - "Composer": "Faith No More", - "Name": "The Morning After" - }, - "972": { - "Composer": "Faith No More", - "Name": "Woodpecker From Mars" - }, - "973": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "War Pigs" - }, - "974": { - "Composer": "Faith No More", - "Name": "Edge Of The World" - } - }, - "Title": "The Real Thing", - "artist": { - "ArtistId": 82, - "Name": "Faith No More" - } - }, - "78": { - "tracks": { - "975": { - "Composer": null, - "Name": "Deixa Entrar" - }, - "976": { - "Composer": null, - "Name": "Falamansa Song" - }, - "977": { - "Composer": null, - "Name": "Xote Dos Milagres" - }, - "981": { - "Composer": null, - "Name": "Zeca Violeiro" - }, - "982": { - "Composer": null, - "Name": "Avisa" - }, - "983": { - "Composer": null, - "Name": "Principiando/Decolagem" - }, - "984": { - "Composer": null, - "Name": "Asas" - }, - "985": { - "Composer": null, - "Name": "Medo De Escuro" - }, - "987": { - "Composer": null, - "Name": "Minha Gata" - }, - "988": { - "Composer": null, - "Name": "Desaforo" - } - }, - "Title": "Deixa Entrar", - "artist": { - "ArtistId": 83, - "Name": "Falamansa" - } - }, - "79": { - "tracks": { - "989": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "In Your Honor" - }, - "990": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "No Way Back" - }, - "991": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Best Of You" - }, - "992": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "DOA" - }, - "993": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Hell" - }, - "994": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "The Last Song" - }, - "995": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Free Me" - }, - "996": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Resolve" - }, - "997": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "The Deepest Blues Are Black" - }, - "998": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "End Over End" - } - }, - "Title": "In Your Honor [Disc 1]", - "artist": { - "ArtistId": 84, - "Name": "Foo Fighters" - } - }, - "80": { - "tracks": { - "999": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Still" - }, - "1000": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "What If I Do?" - }, - "1001": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Miracle" - }, - "1002": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Another Round" - }, - "1003": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Friend Of A Friend" - }, - "1004": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Over And Out" - }, - "1005": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "On The Mend" - }, - "1006": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Virginia Moon" - }, - "1007": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Cold Day In The Sun" - }, - "1008": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Razor" - } - }, - "Title": "In Your Honor [Disc 2]", - "artist": { - "ArtistId": 84, - "Name": "Foo Fighters" - } - }, - "81": { - "tracks": { - "1009": { - "Composer": "Foo Fighters", - "Name": "All My Life" - }, - "1010": { - "Composer": "Foo Fighters", - "Name": "Low" - }, - "1011": { - "Composer": "Foo Fighters", - "Name": "Have It All" - }, - "1012": { - "Composer": "Foo Fighters", - "Name": "Times Like These" - }, - "1013": { - "Composer": "Foo Fighters", - "Name": "Disenchanted Lullaby" - }, - "1014": { - "Composer": "Foo Fighters", - "Name": "Tired Of You" - }, - "1015": { - "Composer": "Foo Fighters", - "Name": "Halo" - }, - "1016": { - "Composer": "Foo Fighters", - "Name": "Lonely As You" - }, - "1017": { - "Composer": "Foo Fighters", - "Name": "Overdrive" - }, - "1018": { - "Composer": "Foo Fighters", - "Name": "Burn Away" - }, - "1019": { - "Composer": "Foo Fighters", - "Name": "Come Back" - } - }, - "Title": "One By One", - "artist": { - "ArtistId": 84, - "Name": "Foo Fighters" - } - }, - "82": { - "tracks": { - "1020": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Doll" - }, - "1021": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Monkey Wrench" - }, - "1022": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Hey, Johnny Park!" - }, - "1023": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "My Poor Brain" - }, - "1024": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Wind Up" - }, - "1025": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Up In Arms" - }, - "1026": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "My Hero" - }, - "1027": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "See You" - }, - "1028": { - "Composer": "Dave Grohl", - "Name": "Enough Space" - }, - "1029": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "February Stars" - }, - "1030": { - "Composer": "Dave Grohl", - "Name": "Everlong" - }, - "1031": { - "Composer": "Dave Grohl", - "Name": "Walking After You" - }, - "1032": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "New Way Home" - } - }, - "Title": "The Colour And The Shape", - "artist": { - "ArtistId": 84, - "Name": "Foo Fighters" - } - }, - "83": { - "tracks": { - "1034": { - "Composer": "berthold kaempfert/charles singleton/eddie snyder", - "Name": "Strangers In The Night" - }, - "1035": { - "Composer": "fred ebb/john kander", - "Name": "New York, New York" - }, - "1036": { - "Composer": "cole porter", - "Name": "I Get A Kick Out Of You" - }, - "1037": { - "Composer": "carson c. parks", - "Name": "Something Stupid" - }, - "1038": { - "Composer": "henry mancini/johnny mercer", - "Name": "Moon River" - }, - "1039": { - "Composer": "carl sigman/gilbert becaud/pierre leroyer", - "Name": "What Now My Love" - }, - "1040": { - "Composer": "hans bradtke/heinz meier/johnny mercer", - "Name": "Summer Love" - }, - "1041": { - "Composer": "orlando murden/ronald miller", - "Name": "For Once In My Life" - }, - "1042": { - "Composer": "jimmy van heusen/sammy cahn", - "Name": "Love And Marriage" - }, - "1043": { - "Composer": "george gershwin/ira gershwin", - "Name": "They Can't Take That Away From Me" - }, - "1044": { - "Composer": "jimmy van heusen/sammy cahn", - "Name": "My Kind Of Town" - }, - "1045": { - "Composer": "bart howard", - "Name": "Fly Me To The Moon" - }, - "1046": { - "Composer": "cole porter", - "Name": "I've Got You Under My Skin" - }, - "1047": { - "Composer": "carolyn leigh/cy coleman", - "Name": "The Best Is Yet To Come" - }, - "1048": { - "Composer": "ervin drake", - "Name": "It Was A Very Good Year" - }, - "1049": { - "Composer": "jimmy van heusen/sammy cahn", - "Name": "Come Fly With Me" - }, - "1050": { - "Composer": "dean kay thompson/kelly gordon", - "Name": "That's Life" - }, - "1051": { - "Composer": "antonio carlos jobim/norman gimbel/vinicius de moraes", - "Name": "The Girl From Ipanema" - }, - "1052": { - "Composer": "lorenz hart/richard rodgers", - "Name": "The Lady Is A Tramp" - }, - "1053": { - "Composer": "jim croce", - "Name": "Bad, Bad Leroy Brown" - }, - "1054": { - "Composer": "bert brecht/kurt weill/marc blitzstein", - "Name": "Mack The Knife" - }, - "1055": { - "Composer": "rod mckuen", - "Name": "Loves Been Good To Me" - }, - "1056": { - "Composer": "alan bergman/marilyn bergman/peggy lipton jones/quincy jones", - "Name": "L.A. Is My Lady" - } - }, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]", - "artist": { - "ArtistId": 85, - "Name": "Frank Sinatra" - } - }, - "84": { - "tracks": { - "1057": { - "Composer": null, - "Name": "Entrando Na Sua (Intro)" - }, - "1058": { - "Composer": null, - "Name": "Nervosa" - }, - "1059": { - "Composer": null, - "Name": "Funk De Bamba (Com Fernanda Abreu)" - }, - "1063": { - "Composer": null, - "Name": "Funk Hum" - }, - "1064": { - "Composer": null, - "Name": "Forty Days (Com DJ Hum)" - }, - "1065": { - "Composer": "Emerson Villani", - "Name": "Balada Da Paula" - }, - "1066": { - "Composer": null, - "Name": "Dujji" - }, - "1067": { - "Composer": null, - "Name": "Meu Guarda-Chuva" - }, - "1069": { - "Composer": null, - "Name": "Whistle Stop" - }, - "1070": { - "Composer": null, - "Name": "16 Toneladas" - }, - "1071": { - "Composer": null, - "Name": "Divirta-Se (Saindo Da Sua)" - }, - "1072": { - "Composer": null, - "Name": "Forty Days Instrumental" - } - }, - "Title": "Roda De Funk", - "artist": { - "ArtistId": 86, - "Name": "Funk Como Le Gusta" - } - }, - "86": { - "tracks": { - "1088": { - "Composer": null, - "Name": "Palco (Live)" - }, - "1089": { - "Composer": null, - "Name": "Is This Love (Live)" - }, - "1090": { - "Composer": null, - "Name": "Stir It Up (Live)" - }, - "1091": { - "Composer": null, - "Name": "Refavela (Live)" - }, - "1092": { - "Composer": null, - "Name": "Vendedor De Caranguejo (Live)" - }, - "1093": { - "Composer": null, - "Name": "Quanta (Live)" - }, - "1094": { - "Composer": null, - "Name": "Estrela (Live)" - }, - "1095": { - "Composer": null, - "Name": "Pela Internet (Live)" - }, - "1098": { - "Composer": null, - "Name": "Copacabana (Live)" - }, - "1099": { - "Composer": null, - "Name": "A Novidade (Live)" - }, - "1100": { - "Composer": null, - "Name": "Ghandi (Live)" - }, - "1101": { - "Composer": null, - "Name": "De Ouro E Marfim (Live)" - } - }, - "Title": "Quanta Gente Veio Ver (Live)", - "artist": { - "ArtistId": 27, - "Name": "Gilberto Gil" - } - }, - "88": { - "tracks": { - "1121": { - "Composer": "Sully Erna", - "Name": "Straight Out Of Line" - }, - "1122": { - "Composer": "Sully Erna", - "Name": "Faceless" - }, - "1123": { - "Composer": "Sully Erna; Tony Rombola", - "Name": "Changes" - }, - "1124": { - "Composer": "Sully Erna", - "Name": "Make Me Believe" - }, - "1125": { - "Composer": "Sully Erna", - "Name": "I Stand Alone" - }, - "1126": { - "Composer": "Sully Erna", - "Name": "Re-Align" - }, - "1127": { - "Composer": "Sully Erna", - "Name": "I Fucking Hate You" - }, - "1128": { - "Composer": "Sully Erna", - "Name": "Releasing The Demons" - }, - "1129": { - "Composer": "Sully Erna", - "Name": "Dead And Broken" - }, - "1130": { - "Composer": "Sully Erna", - "Name": "I Am" - }, - "1131": { - "Composer": "Sully Erna", - "Name": "The Awakening" - }, - "1132": { - "Composer": "Sully Erna; Tony Rombola", - "Name": "Serenity" - } - }, - "Title": "Faceless", - "artist": { - "ArtistId": 87, - "Name": "Godsmack" - } - }, - "89": { - "tracks": { - "1134": { - "Composer": "Billie Joe Armstrong/Green Day", - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home" - }, - "1137": { - "Composer": "Green Day", - "Name": "Are We The Waiting" - }, - "1138": { - "Composer": "Green Day", - "Name": "St. Jimmy" - }, - "1139": { - "Composer": "Green Day", - "Name": "Give Me Novacaine" - }, - "1140": { - "Composer": "Green Day", - "Name": "She's A Rebel" - }, - "1141": { - "Composer": "Green Day", - "Name": "Extraordinary Girl" - }, - "1142": { - "Composer": "Green Day", - "Name": "Letterbomb" - }, - "1145": { - "Composer": "Green Day", - "Name": "Whatsername" - } - }, - "Title": "American Idiot", - "artist": { - "ArtistId": 54, - "Name": "Green Day" - } - }, - "90": { - "tracks": { - "1146": { - "Composer": null, - "Name": "Welcome to the Jungle" - }, - "1147": { - "Composer": null, - "Name": "It's So Easy" - }, - "1148": { - "Composer": null, - "Name": "Nightrain" - }, - "1149": { - "Composer": null, - "Name": "Out Ta Get Me" - }, - "1150": { - "Composer": null, - "Name": "Mr. Brownstone" - }, - "1151": { - "Composer": null, - "Name": "Paradise City" - }, - "1152": { - "Composer": null, - "Name": "My Michelle" - }, - "1153": { - "Composer": null, - "Name": "Think About You" - }, - "1154": { - "Composer": null, - "Name": "Sweet Child O' Mine" - }, - "1155": { - "Composer": null, - "Name": "You're Crazy" - }, - "1156": { - "Composer": null, - "Name": "Anything Goes" - }, - "1157": { - "Composer": null, - "Name": "Rocket Queen" - } - }, - "Title": "Appetite for Destruction", - "artist": { - "ArtistId": 88, - "Name": "Guns N' Roses" - } - }, - "91": { - "tracks": { - "1158": { - "Composer": null, - "Name": "Right Next Door to Hell" - }, - "1159": { - "Composer": null, - "Name": "Dust N' Bones" - }, - "1160": { - "Composer": null, - "Name": "Live and Let Die" - }, - "1161": { - "Composer": null, - "Name": "Don't Cry (Original)" - }, - "1162": { - "Composer": null, - "Name": "Perfect Crime" - }, - "1163": { - "Composer": null, - "Name": "You Ain't the First" - }, - "1164": { - "Composer": null, - "Name": "Bad Obsession" - }, - "1165": { - "Composer": null, - "Name": "Back off Bitch" - }, - "1166": { - "Composer": null, - "Name": "Double Talkin' Jive" - }, - "1167": { - "Composer": null, - "Name": "November Rain" - }, - "1168": { - "Composer": null, - "Name": "The Garden" - }, - "1169": { - "Composer": null, - "Name": "Garden of Eden" - }, - "1170": { - "Composer": null, - "Name": "Don't Damn Me" - }, - "1171": { - "Composer": null, - "Name": "Bad Apples" - }, - "1172": { - "Composer": null, - "Name": "Dead Horse" - }, - "1173": { - "Composer": null, - "Name": "Coma" - } - }, - "Title": "Use Your Illusion I", - "artist": { - "ArtistId": 88, - "Name": "Guns N' Roses" - } - }, - "92": { - "tracks": { - "1174": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Name": "Civil War" - }, - "1175": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Name": "14 Years" - }, - "1176": { - "Composer": "Billy/Del James/W. Axl Rose/West Arkeen", - "Name": "Yesterdays" - }, - "1177": { - "Composer": "Bob Dylan", - "Name": "Knockin' On Heaven's Door" - }, - "1178": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Name": "Get In The Ring" - }, - "1179": { - "Composer": "W. Axl Rose", - "Name": "Shotgun Blues" - }, - "1180": { - "Composer": "W. Axl Rose", - "Name": "Breakdown" - }, - "1181": { - "Composer": "Izzy Stradlin'", - "Name": "Pretty Tied Up" - }, - "1182": { - "Composer": "Slash/W. Axl Rose", - "Name": "Locomotive" - }, - "1183": { - "Composer": "Duff McKagan", - "Name": "So Fine" - }, - "1184": { - "Composer": "W. Axl Rose", - "Name": "Estranged" - }, - "1185": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Name": "You Could Be Mine" - }, - "1186": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Name": "Don't Cry" - }, - "1187": { - "Composer": "W. Axl Rose", - "Name": "My World" - } - }, - "Title": "Use Your Illusion II", - "artist": { - "ArtistId": 88, - "Name": "Guns N' Roses" - } - }, - "93": { - "tracks": { - "1188": { - "Composer": "Richard Bull", - "Name": "Colibri" - }, - "1189": { - "Composer": "R. Carless", - "Name": "Love Is The Colour" - }, - "1190": { - "Composer": "Patrick Claher/Richard Bull", - "Name": "Magnetic Ocean" - }, - "1191": { - "Composer": "Richard Bull", - "Name": "Deep Waters" - }, - "1192": { - "Composer": "Kevin Robinson/Richard Bull", - "Name": "L'Arc En Ciel De Miles" - }, - "1193": { - "Composer": "Kevin Robinson", - "Name": "Gypsy" - }, - "1194": { - "Composer": "Jean Paul Maunick", - "Name": "Journey Into Sunlight" - }, - "1195": { - "Composer": "Graham Harvey", - "Name": "Sunchild" - }, - "1196": { - "Composer": "Maxton Gig Beesley Jnr.", - "Name": "Millenium" - }, - "1197": { - "Composer": "Fayyaz Virgi/Richard Bull", - "Name": "Thinking 'Bout Tomorrow" - }, - "1198": { - "Composer": "Julian Crampton", - "Name": "Jacob's Ladder" - }, - "1199": { - "Composer": "G Harvey/R Hope-Taylor", - "Name": "She Wears Black" - }, - "1200": { - "Composer": "Jean Paul Maunick", - "Name": "Dark Side Of The Cog" - } - }, - "Title": "Blue Moods", - "artist": { - "ArtistId": 89, - "Name": "Incognito" - } - }, - "94": { - "tracks": { - "1201": { - "Composer": null, - "Name": "Different World" - }, - "1202": { - "Composer": null, - "Name": "These Colours Don't Run" - }, - "1203": { - "Composer": null, - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Composer": null, - "Name": "The Pilgrim" - }, - "1205": { - "Composer": null, - "Name": "The Longest Day" - }, - "1206": { - "Composer": null, - "Name": "Out of the Shadows" - }, - "1207": { - "Composer": null, - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Composer": null, - "Name": "For the Greater Good of God" - }, - "1209": { - "Composer": null, - "Name": "Lord of Light" - }, - "1210": { - "Composer": null, - "Name": "The Legacy" - }, - "1211": { - "Composer": null, - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "95": { - "tracks": { - "1212": { - "Composer": "Steve Harris", - "Name": "The Number Of The Beast" - }, - "1213": { - "Composer": "Steve Harris", - "Name": "The Trooper" - }, - "1214": { - "Composer": "Steve Harris", - "Name": "Prowler" - }, - "1215": { - "Composer": "Steve Harris", - "Name": "Transylvania" - }, - "1216": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Remember Tomorrow" - }, - "1217": { - "Composer": "Steve Harris", - "Name": "Where Eagles Dare" - }, - "1218": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "Sanctuary" - }, - "1219": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Running Free" - }, - "1220": { - "Composer": "Steve Harris", - "Name": "Run To The Hilss" - }, - "1221": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Composer": "Steve Harris", - "Name": "Iron Maiden" - }, - "1223": { - "Composer": "Steve Harris", - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "96": { - "tracks": { - "1224": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Composer": "Steve Harris", - "Name": "From Here To Eternity" - }, - "1226": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Can I Play With Madness" - }, - "1227": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Wasting Love" - }, - "1228": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Tailgunner" - }, - "1229": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Evil That Men Do" - }, - "1230": { - "Composer": "Steve Harris", - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Composer": "Bruce Dickinson", - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Composer": "Steve Harris", - "Name": "Heaven Can Wait" - }, - "1233": { - "Composer": "Steve Harris", - "Name": "The Clairvoyant" - }, - "1234": { - "Composer": "Steve Harris", - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "97": { - "tracks": { - "1235": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Wicker Man" - }, - "1236": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Brave New World" - }, - "1238": { - "Composer": "Steve Harris", - "Name": "Blood Brothers" - }, - "1239": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Mercenary" - }, - "1240": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Dream Of Mirrors" - }, - "1241": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "The Fallen Angel" - }, - "1242": { - "Composer": "David Murray/Steve Harris", - "Name": "The Nomad" - }, - "1243": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Composer": "David Murray/Steve Harris", - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "98": { - "tracks": { - "1245": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "Wildest Dreams" - }, - "1246": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Rainmaker" - }, - "1247": { - "Composer": "Steve Harris", - "Name": "No More Lies" - }, - "1248": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Montsegur" - }, - "1249": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Dance Of Death" - }, - "1250": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Composer": "Adrian Smith/Bruce Dickinson/Nicko McBrain", - "Name": "New Frontier" - }, - "1252": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "Paschendale" - }, - "1253": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Face In The Sand" - }, - "1254": { - "Composer": "David Murray/Steve Harris", - "Name": "Age Of Innocence" - }, - "1255": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "99": { - "tracks": { - "1256": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Composer": "Steve Harris", - "Name": "From Here To Eternity" - }, - "1258": { - "Composer": "Steve Harris", - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Fear Is The Key" - }, - "1260": { - "Composer": "Steve Harris", - "Name": "Childhood's End" - }, - "1261": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Wasting Love" - }, - "1262": { - "Composer": "Steve Harris", - "Name": "The Fugitive" - }, - "1263": { - "Composer": "Bruce Dickinson/David Murray", - "Name": "Chains Of Misery" - }, - "1264": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Apparition" - }, - "1265": { - "Composer": "Bruce Dickinson/David Murray", - "Name": "Judas Be My Guide" - }, - "1266": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Weekend Warrior" - }, - "1267": { - "Composer": "Steve Harris", - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "100": { - "tracks": { - "1268": { - "Composer": "Steve Harris", - "Name": "01 - Prowler" - }, - "1269": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "02 - Sanctuary" - }, - "1272": { - "Composer": "Steve Harris", - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Composer": "Steve Harris", - "Name": "06 - Transylvania" - }, - "1274": { - "Composer": "Steve Harris", - "Name": "07 - Strange World" - }, - "1275": { - "Composer": "Murray Dave", - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Composer": "Steve Harris", - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "101": { - "tracks": { - "1277": { - "Composer": "Steve Harris", - "Name": "The Ides Of March" - }, - "1278": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "1279": { - "Composer": "Steve Harris", - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Composer": "Steve Harris", - "Name": "Another Life" - }, - "1281": { - "Composer": "Steve Harris", - "Name": "Genghis Khan" - }, - "1283": { - "Composer": "Steve Harris", - "Name": "Killers" - }, - "1284": { - "Composer": "Steve Harris", - "Name": "Prodigal Son" - }, - "1285": { - "Composer": "Steve Harris", - "Name": "Purgatory" - }, - "1286": { - "Composer": "Steve Harris", - "Name": "Drifter" - } - }, - "Title": "Killers", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "102": { - "tracks": { - "1287": { - "Composer": null, - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Composer": null, - "Name": "Aces High" - }, - "1289": { - "Composer": "Smith/Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Composer": "Harris", - "Name": "The Trooper" - }, - "1291": { - "Composer": "Dickinson", - "Name": "Revelations" - }, - "1292": { - "Composer": "Smith/Dickinson", - "Name": "Flight Of Icarus" - }, - "1293": { - "Composer": null, - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Composer": null, - "Name": "Powerslave" - }, - "1295": { - "Composer": "Harris", - "Name": "The Number Of The Beast" - }, - "1296": { - "Composer": "Harris", - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Composer": "Harris", - "Name": "Iron Maiden" - }, - "1298": { - "Composer": "Harris", - "Name": "Run To The Hills" - }, - "1299": { - "Composer": "Harris/Di Anno", - "Name": "Running Free" - }, - "1300": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "1301": { - "Composer": null, - "Name": "Acacia Avenue" - }, - "1302": { - "Composer": "Steve Harris", - "Name": "Children Of The Damned" - }, - "1303": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Die With Your Boots On" - }, - "1304": { - "Composer": "Steve Harris", - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "103": { - "tracks": { - "1305": { - "Composer": null, - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Composer": null, - "Name": "The Number Of The Beast" - }, - "1307": { - "Composer": null, - "Name": "Wrathchild" - }, - "1308": { - "Composer": null, - "Name": "From Here To Eternity" - }, - "1309": { - "Composer": null, - "Name": "Can I Play With Madness" - }, - "1310": { - "Composer": null, - "Name": "Wasting Love" - }, - "1311": { - "Composer": null, - "Name": "Tailgunner" - }, - "1312": { - "Composer": null, - "Name": "The Evil That Men Do" - }, - "1313": { - "Composer": null, - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Composer": null, - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "104": { - "tracks": { - "1315": { - "Composer": null, - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Composer": null, - "Name": "The Clairvoyant" - }, - "1317": { - "Composer": null, - "Name": "Heaven Can Wait" - }, - "1318": { - "Composer": null, - "Name": "Run To The Hills" - }, - "1319": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Composer": null, - "Name": "Iron Maiden" - }, - "1321": { - "Composer": null, - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Composer": null, - "Name": "The Trooper" - }, - "1323": { - "Composer": null, - "Name": "Sanctuary" - }, - "1324": { - "Composer": null, - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "105": { - "tracks": { - "1325": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Tailgunner" - }, - "1326": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Holy Smoke" - }, - "1327": { - "Composer": "Steve Harris", - "Name": "No Prayer For The Dying" - }, - "1328": { - "Composer": "Bruce Dickinson/David Murray", - "Name": "Public Enema Number One" - }, - "1329": { - "Composer": "David Murray/Steve Harris", - "Name": "Fates Warning" - }, - "1330": { - "Composer": "Steve Harris", - "Name": "The Assassin" - }, - "1331": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Run Silent Run Deep" - }, - "1332": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "Hooks In You" - }, - "1333": { - "Composer": "Bruce Dickinson", - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Composer": "Steve Harris", - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "106": { - "tracks": { - "1335": { - "Composer": "Steve Harris", - "Name": "Where Eagles Dare" - }, - "1336": { - "Composer": "Bruce Dickinson", - "Name": "Revelations" - }, - "1337": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "Flight Of The Icarus" - }, - "1338": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Die With Your Boots On" - }, - "1339": { - "Composer": "Steve Harris", - "Name": "The Trooper" - }, - "1340": { - "Composer": "David Murray/Steve Harris", - "Name": "Still Life" - }, - "1341": { - "Composer": "Steve Harris", - "Name": "Quest For Fire" - }, - "1342": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "Sun And Steel" - }, - "1343": { - "Composer": "Steve Harris", - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "107": { - "tracks": { - "1344": { - "Composer": "Harris", - "Name": "Aces High" - }, - "1345": { - "Composer": "Smith/Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Composer": "Steve Harris", - "Name": "Losfer Words" - }, - "1347": { - "Composer": "Dickinson", - "Name": "Flash of The Blade" - }, - "1348": { - "Composer": "Steve Harris", - "Name": "Duelists" - }, - "1349": { - "Composer": "Dickinson/Smith", - "Name": "Back in the Village" - }, - "1350": { - "Composer": "Dickinson", - "Name": "Powerslave" - }, - "1351": { - "Composer": "Harris", - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "108": { - "tracks": { - "1352": { - "Composer": null, - "Name": "Intro" - }, - "1353": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Wicker Man" - }, - "1354": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Brave New World" - }, - "1356": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "1357": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Composer": "Steve Harris", - "Name": "Blood Brothers" - }, - "1359": { - "Composer": "Steve Harris", - "Name": "Sign Of The Cross" - }, - "1360": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Mercenary" - }, - "1361": { - "Composer": "Steve Harris", - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "109": { - "tracks": { - "1362": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Dream Of Mirrors" - }, - "1363": { - "Composer": "Steve Harris", - "Name": "The Clansman" - }, - "1364": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Evil That Men Do" - }, - "1365": { - "Composer": "Steve Harris", - "Name": "Fear Of The Dark" - }, - "1366": { - "Composer": "Steve Harris", - "Name": "Iron Maiden" - }, - "1367": { - "Composer": "Steve Harris", - "Name": "The Number Of The Beast" - }, - "1368": { - "Composer": "Steve Harris", - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "Sanctuary" - }, - "1370": { - "Composer": "Steve Harris", - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "110": { - "tracks": { - "1371": { - "Composer": "Adrian Smith; Bruce Dickinson", - "Name": "Moonchild" - }, - "1372": { - "Composer": "Steve Harris", - "Name": "Infinite Dreams" - }, - "1373": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Name": "Can I Play With Madness" - }, - "1374": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Name": "The Evil That Men Do" - }, - "1375": { - "Composer": "Steve Harris", - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Composer": "Dave Murray; Steve Harris", - "Name": "The Prophecy" - }, - "1377": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Name": "The Clairvoyant" - }, - "1378": { - "Composer": "Bruce Dickinson; Harris", - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "111": { - "tracks": { - "1379": { - "Composer": "Steve Harris", - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Composer": "Adrian Smith", - "Name": "Wasted Years" - }, - "1381": { - "Composer": "Adrian Smith", - "Name": "Sea of Madness" - }, - "1382": { - "Composer": "Steve Harris", - "Name": "Heaven Can Wait" - }, - "1383": { - "Composer": "Adrian Smith", - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Composer": "Steve Harris", - "Name": "Alexander the Great" - }, - "1385": { - "Composer": "David Murray/Steve Harris", - "Name": "De Ja Vu" - }, - "1386": { - "Composer": "Steve Harris", - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "112": { - "tracks": { - "1387": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "22 Acacia Avenue" - }, - "1388": { - "Composer": "Steve Harris", - "Name": "Children of the Damned" - }, - "1389": { - "Composer": "Adrian Smith/Clive Burr/Steve Harris", - "Name": "Gangland" - }, - "1390": { - "Composer": "Steve Harris", - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Composer": "Steve Harris", - "Name": "Invaders" - }, - "1392": { - "Composer": "Steve Harris", - "Name": "Run to the Hills" - }, - "1393": { - "Composer": "Steve Harris", - "Name": "The Number Of The Beast" - }, - "1394": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "113": { - "tracks": { - "1395": { - "Composer": "Steve Harris", - "Name": "Sign Of The Cross" - }, - "1396": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Lord Of The Flies" - }, - "1397": { - "Composer": "Blaze Bayley/Janick Gers", - "Name": "Man On The Edge" - }, - "1398": { - "Composer": "Steve Harris", - "Name": "Fortunes Of War" - }, - "1399": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "Look For The Truth" - }, - "1400": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "The Aftermath" - }, - "1401": { - "Composer": "Steve Harris", - "Name": "Judgement Of Heaven" - }, - "1402": { - "Composer": "Steve Harris", - "Name": "Blood On The World's Hands" - }, - "1403": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "The Edge Of Darkness" - }, - "1404": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "2 A.M." - }, - "1405": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "114": { - "tracks": { - "1406": { - "Composer": "Blaze Bayley/Steve Harris", - "Name": "Futureal" - }, - "1407": { - "Composer": "Steve Harris", - "Name": "The Angel And The Gambler" - }, - "1408": { - "Composer": "David Murray/Steve Harris", - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Composer": "Steve Harris", - "Name": "The Clansman" - }, - "1410": { - "Composer": "Blaze Bayley/David Murray/Steve Harris", - "Name": "When Two Worlds Collide" - }, - "1411": { - "Composer": "Steve Harris", - "Name": "The Educated Fool" - }, - "1412": { - "Composer": "Steve Harris", - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Composer": "Blaze Bayley/Janick Gers", - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI", - "artist": { - "ArtistId": 90, - "Name": "Iron Maiden" - } - }, - "115": { - "tracks": { - "1414": { - "Composer": "James Brown/Johnny Terry", - "Name": "Please Please Please" - }, - "1415": { - "Composer": "Lowman Pauling", - "Name": "Think" - }, - "1416": { - "Composer": "Jimmy Forrest/Lewis C. Simpkins/Oscar Washington", - "Name": "Night Train" - }, - "1417": { - "Composer": "Ted Wright", - "Name": "Out Of Sight" - }, - "1418": { - "Composer": "James Brown", - "Name": "Papa's Got A Brand New Bag Pt.1" - }, - "1419": { - "Composer": "James Brown", - "Name": "I Got You (I Feel Good)" - }, - "1420": { - "Composer": "Betty Newsome/James Brown", - "Name": "It's A Man's Man's Man's World" - }, - "1421": { - "Composer": "Alfred Ellis/James Brown", - "Name": "Cold Sweat" - }, - "1422": { - "Composer": "Alfred Ellis/James Brown", - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1" - }, - "1423": { - "Composer": "Bobby Byrd/James Brown/Ron Lenhoff", - "Name": "Get Up (I Feel Like Being A) Sex Machine" - }, - "1424": { - "Composer": "Addie William Jones/Nat Jones", - "Name": "Hey America" - }, - "1425": { - "Composer": "Charles Bobbitt/James Brown", - "Name": "Make It Funky Pt.1" - }, - "1426": { - "Composer": "Charles Bobbitt/James Brown", - "Name": "I'm A Greedy Man Pt.1" - }, - "1427": { - "Composer": "Fred Wesley/James Brown/Joseph Mims", - "Name": "Get On The Good Foot" - }, - "1428": { - "Composer": "Deanna Brown/Deidra Jenkins/Yamma Brown", - "Name": "Get Up Offa That Thing" - }, - "1429": { - "Composer": "Brad Shapiro/George Jackson/Robert Miller/Walter Shaw", - "Name": "It's Too Funky In Here" - }, - "1430": { - "Composer": "Charlie Midnight/Dan Hartman", - "Name": "Living In America" - }, - "1431": { - "Composer": "Full Force/James Brown", - "Name": "I'm Real" - }, - "1432": { - "Composer": "Fred Wesley/James Brown", - "Name": "Hot Pants Pt.1" - }, - "1433": { - "Composer": "James Brown", - "Name": "Soul Power (Live)" - } - }, - "Title": "Sex Machine", - "artist": { - "ArtistId": 91, - "Name": "James Brown" - } - }, - "116": { - "tracks": { - "1434": { - "Composer": "Jay Kay/Kay, Jay", - "Name": "When You Gonna Learn (Digeridoo)" - }, - "1435": { - "Composer": "Smith, Toby", - "Name": "Too Young To Die" - }, - "1436": { - "Composer": "Smith, Toby", - "Name": "Hooked Up" - }, - "1437": { - "Composer": "Gelder, Nick van", - "Name": "If I Like It, I Do It" - }, - "1438": { - "Composer": "Smith, Toby", - "Name": "Music Of The Wind" - }, - "1439": { - "Composer": "Smith, Toby", - "Name": "Emergency On Planet Earth" - }, - "1440": { - "Composer": "Jay Kay/Kay, Jay", - "Name": "Whatever It Is, I Just Can't Stop" - }, - "1441": { - "Composer": "Smith, Toby", - "Name": "Blow Your Mind" - }, - "1442": { - "Composer": "Smith, Toby", - "Name": "Revolution 1993" - }, - "1443": { - "Composer": "Buchanan, Wallis", - "Name": "Didgin' Out" - } - }, - "Title": "Emergency On Planet Earth", - "artist": { - "ArtistId": 92, - "Name": "Jamiroquai" - } - }, - "117": { - "tracks": { - "1444": { - "Composer": "Jay Kay", - "Name": "Canned Heat" - }, - "1445": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Planet Home" - }, - "1446": { - "Composer": "Jay Kay", - "Name": "Black Capricorn Day" - }, - "1447": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Soul Education" - }, - "1448": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Failling" - }, - "1449": { - "Composer": "Derrick McKenzie/Jay Kay/Toby Smith", - "Name": "Destitute Illusions" - }, - "1450": { - "Composer": "Jay Kay", - "Name": "Supersonic" - }, - "1451": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Butterfly" - }, - "1452": { - "Composer": "Jay Kay", - "Name": "Were Do We Go From Here" - }, - "1453": { - "Composer": "Jay Kay/Toby Smith", - "Name": "King For A Day" - }, - "1454": { - "Composer": "Toby Smith", - "Name": "Deeper Underground" - } - }, - "Title": "Synkronized", - "artist": { - "ArtistId": 92, - "Name": "Jamiroquai" - } - }, - "118": { - "tracks": { - "1455": { - "Composer": "Toby Smith", - "Name": "Just Another Story" - }, - "1456": { - "Composer": "Toby Smith", - "Name": "Stillness In Time" - }, - "1457": { - "Composer": "Toby Smith", - "Name": "Half The Man" - }, - "1458": { - "Composer": "Toby Smith", - "Name": "Light Years" - }, - "1459": { - "Composer": "Toby Smith", - "Name": "Manifest Destiny" - }, - "1460": { - "Composer": "Toby Smith", - "Name": "The Kids" - }, - "1461": { - "Composer": "Stuard Zender/Toby Smith", - "Name": "Mr. Moon" - }, - "1462": { - "Composer": "Stuart Zender", - "Name": "Scam" - }, - "1463": { - "Composer": "Toby Smith/Wallis Buchanan", - "Name": "Journey To Arnhemland" - }, - "1464": { - "Composer": "J. Kay/Jay Kay", - "Name": "Morning Glory" - }, - "1465": { - "Composer": "J. Kay/Jay Kay", - "Name": "Space Cowboy" - } - }, - "Title": "The Return Of The Space Cowboy", - "artist": { - "ArtistId": 92, - "Name": "Jamiroquai" - } - }, - "119": { - "tracks": { - "1466": { - "Composer": "C. Cester/C. Muncey", - "Name": "Last Chance" - }, - "1467": { - "Composer": "C. Muncey/N. Cester", - "Name": "Are You Gonna Be My Girl" - }, - "1468": { - "Composer": "C. Cester/N. Cester", - "Name": "Rollover D.J." - }, - "1469": { - "Composer": "N. Cester", - "Name": "Look What You've Done" - }, - "1470": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "Name": "Get What You Need" - }, - "1471": { - "Composer": "C. Cester/N. Cester", - "Name": "Move On" - }, - "1472": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "Name": "Radio Song" - }, - "1473": { - "Composer": "C. Cester/N. Cester", - "Name": "Get Me Outta Here" - }, - "1474": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "Name": "Cold Hard Bitch" - }, - "1475": { - "Composer": "C. Muncey/N. Cester", - "Name": "Come Around Again" - }, - "1476": { - "Composer": "C. Muncey/N. Cester", - "Name": "Take It Or Leave It" - }, - "1477": { - "Composer": "C. Cester/N. Cester", - "Name": "Lazy Gun" - }, - "1478": { - "Composer": "C. Cester", - "Name": "Timothy" - } - }, - "Title": "Get Born", - "artist": { - "ArtistId": 93, - "Name": "JET" - } - }, - "120": { - "tracks": { - "1479": { - "Composer": "Jimi Hendrix", - "Name": "Foxy Lady" - }, - "1480": { - "Composer": "Jimi Hendrix", - "Name": "Manic Depression" - }, - "1481": { - "Composer": "Jimi Hendrix", - "Name": "Red House" - }, - "1482": { - "Composer": "Jimi Hendrix", - "Name": "Can You See Me" - }, - "1483": { - "Composer": "Jimi Hendrix", - "Name": "Love Or Confusion" - }, - "1484": { - "Composer": "Jimi Hendrix", - "Name": "I Don't Live Today" - }, - "1485": { - "Composer": "Jimi Hendrix", - "Name": "May This Be Love" - }, - "1486": { - "Composer": "Jimi Hendrix", - "Name": "Fire" - }, - "1487": { - "Composer": "Jimi Hendrix", - "Name": "Third Stone From The Sun" - }, - "1488": { - "Composer": "Jimi Hendrix", - "Name": "Remember" - }, - "1489": { - "Composer": "Jimi Hendrix", - "Name": "Are You Experienced?" - }, - "1490": { - "Composer": "Billy Roberts", - "Name": "Hey Joe" - }, - "1491": { - "Composer": "Jimi Hendrix", - "Name": "Stone Free" - }, - "1492": { - "Composer": "Jimi Hendrix", - "Name": "Purple Haze" - }, - "1493": { - "Composer": "Jimi Hendrix", - "Name": "51st Anniversary" - }, - "1494": { - "Composer": "Jimi Hendrix", - "Name": "The Wind Cries Mary" - }, - "1495": { - "Composer": "Jimi Hendrix", - "Name": "Highway Chile" - } - }, - "Title": "Are You Experienced?", - "artist": { - "ArtistId": 94, - "Name": "Jimi Hendrix" - } - }, - "121": { - "tracks": { - "1496": { - "Composer": null, - "Name": "Surfing with the Alien" - }, - "1497": { - "Composer": null, - "Name": "Ice 9" - }, - "1498": { - "Composer": null, - "Name": "Crushing Day" - }, - "1499": { - "Composer": null, - "Name": "Always With Me, Always With You" - }, - "1500": { - "Composer": null, - "Name": "Satch Boogie" - }, - "1501": { - "Composer": "J. Satriani", - "Name": "Hill of the Skull" - }, - "1502": { - "Composer": null, - "Name": "Circles" - }, - "1503": { - "Composer": "J. Satriani", - "Name": "Lords of Karma" - }, - "1504": { - "Composer": "J. Satriani", - "Name": "Midnight" - }, - "1505": { - "Composer": "J. Satriani", - "Name": "Echo" - } - }, - "Title": "Surfing with the Alien (Remastered)", - "artist": { - "ArtistId": 95, - "Name": "Joe Satriani" - } - }, - "122": { - "tracks": { - "1506": { - "Composer": null, - "Name": "Engenho De Dentro" - }, - "1507": { - "Composer": null, - "Name": "Alcohol" - }, - "1508": { - "Composer": null, - "Name": "Mama Africa" - }, - "1509": { - "Composer": null, - "Name": "Salve Simpatia" - }, - "1513": { - "Composer": null, - "Name": "Charles Anjo 45" - }, - "1516": { - "Composer": null, - "Name": "Que Maravilha" - }, - "1517": { - "Composer": null, - "Name": "Santa Clara Clareou" - }, - "1518": { - "Composer": null, - "Name": "Filho Maravilha" - }, - "1519": { - "Composer": null, - "Name": "Taj Mahal" - } - }, - "Title": "Jorge Ben Jor 25 Anos", - "artist": { - "ArtistId": 46, - "Name": "Jorge Ben" - } - }, - "123": { - "tracks": { - "1520": { - "Composer": null, - "Name": "Rapidamente" - }, - "1521": { - "Composer": "Hyldon", - "Name": "As Dores do Mundo" - }, - "1522": { - "Composer": null, - "Name": "Vou Pra Ai" - }, - "1523": { - "Composer": null, - "Name": "My Brother" - }, - "1528": { - "Composer": null, - "Name": "A Tarde" - }, - "1529": { - "Composer": null, - "Name": "Always Be All Right" - }, - "1530": { - "Composer": null, - "Name": "Sem Sentido" - }, - "1531": { - "Composer": null, - "Name": "Onibusfobia" - } - }, - "Title": "Jota Quest-1995", - "artist": { - "ArtistId": 96, - "Name": "Jota Quest" - } - }, - "125": { - "tracks": { - "1546": { - "Composer": null, - "Name": "The Green Manalishi" - }, - "1547": { - "Composer": null, - "Name": "Living After Midnight" - }, - "1548": { - "Composer": null, - "Name": "Breaking The Law (Live)" - }, - "1549": { - "Composer": null, - "Name": "Hot Rockin'" - }, - "1550": { - "Composer": null, - "Name": "Heading Out To The Highway (Live)" - }, - "1551": { - "Composer": null, - "Name": "The Hellion" - }, - "1552": { - "Composer": null, - "Name": "Electric Eye" - }, - "1553": { - "Composer": null, - "Name": "You've Got Another Thing Comin'" - }, - "1554": { - "Composer": null, - "Name": "Turbo Lover" - }, - "1555": { - "Composer": null, - "Name": "Freewheel Burning" - }, - "1556": { - "Composer": null, - "Name": "Some Heads Are Gonna Roll" - }, - "1557": { - "Composer": null, - "Name": "Metal Meltdown" - }, - "1558": { - "Composer": null, - "Name": "Ram It Down" - }, - "1559": { - "Composer": null, - "Name": "Diamonds And Rust (Live)" - }, - "1560": { - "Composer": null, - "Name": "Victim Of Change (Live)" - }, - "1561": { - "Composer": null, - "Name": "Tyrant (Live)" - } - }, - "Title": "Living After Midnight", - "artist": { - "ArtistId": 98, - "Name": "Judas Priest" - } - }, - "126": { - "tracks": { - "1562": { - "Composer": "Paul Stanley, Ace Frehley", - "Name": "Comin' Home" - }, - "1563": { - "Composer": "Gene Simmons", - "Name": "Plaster Caster" - }, - "1564": { - "Composer": "Gene Simmons, Stephen Coronel", - "Name": "Goin' Blind" - }, - "1565": { - "Composer": "Paul Stanley, Bob Ezrin, Kim Fowley", - "Name": "Do You Love Me" - }, - "1566": { - "Composer": "Gene Simmons", - "Name": "Domino" - }, - "1567": { - "Composer": "Paul Stanley, Vincent Poncia", - "Name": "Sure Know Something" - }, - "1568": { - "Composer": "Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed", - "Name": "A World Without Heroes" - }, - "1569": { - "Composer": "Paul Stanley, Ace Frehley", - "Name": "Rock Bottom" - }, - "1570": { - "Composer": "Gene Simmons", - "Name": "See You Tonight" - }, - "1571": { - "Composer": "Paul Stanley", - "Name": "I Still Love You" - }, - "1572": { - "Composer": "Paul Stanley, Vincent Cusano", - "Name": "Every Time I Look At You" - }, - "1573": { - "Composer": "Mick Jagger, Keith Richard", - "Name": "2,000 Man" - }, - "1574": { - "Composer": "Peter Criss, Stan Penridge, Bob Ezrin", - "Name": "Beth" - }, - "1575": { - "Composer": "Gene Simmons", - "Name": "Nothin' To Lose" - }, - "1576": { - "Composer": "Paul Stanley, Gene Simmons", - "Name": "Rock And Roll All Nite" - } - }, - "Title": "Unplugged [Live]", - "artist": { - "ArtistId": 52, - "Name": "Kiss" - } - }, - "127": { - "tracks": { - "1577": { - "Composer": "Robert Plant", - "Name": "Immigrant Song" - }, - "1578": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Name": "Heartbreaker" - }, - "1579": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Since I've Been Loving You" - }, - "1580": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Black Dog" - }, - "1581": { - "Composer": "Jimmy Page/Led Zeppelin", - "Name": "Dazed And Confused" - }, - "1582": { - "Composer": "Robert Plant", - "Name": "Stairway To Heaven" - }, - "1583": { - "Composer": "Robert Plant", - "Name": "Going To California" - }, - "1584": { - "Composer": "Robert Plant", - "Name": "That's The Way" - }, - "1585": { - "Composer": "Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon", - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Composer": "Robert Plant", - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "128": { - "tracks": { - "1587": { - "Composer": "Ben E.King/James Bethea", - "Name": "We're Gonna Groove" - }, - "1588": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Poor Tom" - }, - "1589": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Walter's Walk" - }, - "1591": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Ozone Baby" - }, - "1592": { - "Composer": "Jimmy Page, Robert Plant, John Bonham, John Paul Jones", - "Name": "Darlene" - }, - "1593": { - "Composer": "John Bonham", - "Name": "Bonzo's Montreux" - }, - "1594": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "129": { - "tracks": { - "1595": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "The Song Remains The Same" - }, - "1596": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "The Rain Song" - }, - "1597": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Composer": "John Bonham/John Paul Jones", - "Name": "The Crunge" - }, - "1599": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "Dancing Days" - }, - "1600": { - "Composer": "John Bonham/John Paul Jones", - "Name": "D'Yer Mak'er" - }, - "1601": { - "Composer": "John Paul Jones", - "Name": "No Quarter" - }, - "1602": { - "Composer": "John Bonham/John Paul Jones", - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "130": { - "tracks": { - "1603": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "Name": "In The Evening" - }, - "1604": { - "Composer": "John Paul Jones & Robert Plant", - "Name": "South Bound Saurez" - }, - "1605": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "Name": "Fool In The Rain" - }, - "1606": { - "Composer": "Jimmy Page & Robert Plant", - "Name": "Hot Dog" - }, - "1607": { - "Composer": "John Paul Jones, Jimmy Page & Robert Plant", - "Name": "Carouselambra" - }, - "1608": { - "Composer": "Robert Plant & John Paul Jones", - "Name": "All My Love" - }, - "1609": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "131": { - "tracks": { - "1610": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Black Dog" - }, - "1611": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "Rock & Roll" - }, - "1612": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "The Battle Of Evermore" - }, - "1613": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Stairway To Heaven" - }, - "1614": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Misty Mountain Hop" - }, - "1615": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Four Sticks" - }, - "1616": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Going To California" - }, - "1617": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie", - "Name": "When The Levee Breaks" - } - }, - "Title": "IV", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "132": { - "tracks": { - "1618": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Good Times Bad Times" - }, - "1619": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Composer": "J. B. Lenoir/Willie Dixon", - "Name": "You Shook Me" - }, - "1621": { - "Composer": "Jimmy Page", - "Name": "Dazed and Confused" - }, - "1622": { - "Composer": "Jimmy Page/John Paul Jones", - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Composer": "Jimmy Page", - "Name": "Black Mountain Side" - }, - "1624": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown" - }, - "1625": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "133": { - "tracks": { - "1627": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "Whole Lotta Love" - }, - "1628": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "The Lemon Song" - }, - "1630": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Thank You" - }, - "1631": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "Heartbreaker" - }, - "1632": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Ramble On" - }, - "1634": { - "Composer": "John Bonham, John Paul Jones, Jimmy Page", - "Name": "Moby Dick" - }, - "1635": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "134": { - "tracks": { - "1636": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Immigrant Song" - }, - "1637": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Friends" - }, - "1638": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Celebration Day" - }, - "1639": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Since I've Been Loving You" - }, - "1640": { - "Composer": "Jimmy Page, Robert Plant, John Bonham", - "Name": "Out On The Tiles" - }, - "1641": { - "Composer": "Traditional", - "Name": "Gallows Pole" - }, - "1642": { - "Composer": "Jimmy Page", - "Name": "Tangerine" - }, - "1643": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "That's The Way" - }, - "1644": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Composer": "Traditional", - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "135": { - "tracks": { - "1646": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "In The Light" - }, - "1647": { - "Composer": "Jimmy Page", - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Composer": "Robert Plant", - "Name": "Down By The Seaside" - }, - "1649": { - "Composer": "Robert Plant", - "Name": "Ten Years Gone" - }, - "1650": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Night Flight" - }, - "1651": { - "Composer": "Robert Plant", - "Name": "The Wanton Song" - }, - "1652": { - "Composer": "Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant", - "Name": "Boogie With Stu" - }, - "1653": { - "Composer": "Robert Plant", - "Name": "Black Country Woman" - }, - "1654": { - "Composer": "Robert Plant", - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "136": { - "tracks": { - "1655": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Achilles Last Stand" - }, - "1656": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "For Your Life" - }, - "1657": { - "Composer": "John Bonham/John Paul Jones", - "Name": "Royal Orleans" - }, - "1658": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Candy Store Rock" - }, - "1660": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Hots On For Nowhere" - }, - "1661": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Tea For One" - } - }, - "Title": "Presence", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "137": { - "tracks": { - "1662": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Name": "Rock & Roll" - }, - "1663": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Celebration Day" - }, - "1664": { - "Composer": "Robert Plant", - "Name": "The Song Remains The Same" - }, - "1665": { - "Composer": "Robert Plant", - "Name": "Rain Song" - }, - "1666": { - "Composer": "Jimmy Page", - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "138": { - "tracks": { - "1667": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "No Quarter" - }, - "1668": { - "Composer": "Robert Plant", - "Name": "Stairway To Heaven" - }, - "1669": { - "Composer": "John Bonham/John Paul Jones", - "Name": "Moby Dick" - }, - "1670": { - "Composer": "John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)", - "artist": { - "ArtistId": 22, - "Name": "Led Zeppelin" - } - }, - "141": { - "tracks": { - "1702": { - "Composer": "Craig Ross/Lenny Kravitz", - "Name": "Are You Gonna Go My Way" - }, - "1703": { - "Composer": "Lenny Kravitz", - "Name": "Fly Away" - }, - "1704": { - "Composer": "Lenny Kravitz", - "Name": "Rock And Roll Is Dead" - }, - "1705": { - "Composer": "Lenny Kravitz", - "Name": "Again" - }, - "1706": { - "Composer": "Lenny Kravitz", - "Name": "It Ain't Over 'Til It's Over" - }, - "1707": { - "Composer": "Lenny Kravitz", - "Name": "Can't Get You Off My Mind" - }, - "1708": { - "Composer": "Lenny Kravitz", - "Name": "Mr. Cab Driver" - }, - "1709": { - "Composer": "B. Cummings/G. Peterson/M.J. Kale/R. Bachman", - "Name": "American Woman" - }, - "1710": { - "Composer": "Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan", - "Name": "Stand By My Woman" - }, - "1711": { - "Composer": "Lenny Kravitz/Slash", - "Name": "Always On The Run" - }, - "1712": { - "Composer": "Gerry DeVeaux/Terry Britten", - "Name": "Heaven Help" - }, - "1713": { - "Composer": "Lenny Kravitz", - "Name": "I Belong To You" - }, - "1714": { - "Composer": "Henry Hirsch/Lenny Kravitz", - "Name": "Believe" - }, - "1715": { - "Composer": "Lenny Kravitz", - "Name": "Let Love Rule" - }, - "1716": { - "Composer": "Lenny Kravitz", - "Name": "Black Velveteen" - }, - "2216": { - "Composer": null, - "Name": "Johnny B. Goode" - }, - "2217": { - "Composer": null, - "Name": "Don't Look Back" - }, - "2218": { - "Composer": null, - "Name": "Jah Seh No" - }, - "2219": { - "Composer": null, - "Name": "I'm The Toughest" - }, - "2220": { - "Composer": null, - "Name": "Nothing But Love" - }, - "2221": { - "Composer": null, - "Name": "Buk-In-Hamm Palace" - }, - "2222": { - "Composer": null, - "Name": "Bush Doctor" - }, - "2223": { - "Composer": null, - "Name": "Wanted Dread And Alive" - }, - "2224": { - "Composer": null, - "Name": "Mystic Man" - }, - "2225": { - "Composer": null, - "Name": "Coming In Hot" - }, - "2226": { - "Composer": null, - "Name": "Pick Myself Up" - }, - "2227": { - "Composer": null, - "Name": "Crystal Ball" - }, - "2228": { - "Composer": null, - "Name": "Equal Rights Downpresser Man" - }, - "2434": { - "Composer": "Mick Hucknall and Neil Moss", - "Name": "Holding Back The Years" - }, - "2435": { - "Composer": "John and William Valentine", - "Name": "Money's Too Tight To Mention" - }, - "2436": { - "Composer": "Mick Hucknall", - "Name": "The Right Thing" - }, - "2437": { - "Composer": "Jimmy and Vella Cameron", - "Name": "It's Only Love" - }, - "2438": { - "Composer": "Mick Hucknall", - "Name": "A New Flame" - }, - "2439": { - "Composer": "Mick Hucknall and Lamont Dozier", - "Name": "You've Got It" - }, - "2440": { - "Composer": "Kenny Gamble and Leon Huff", - "Name": "If You Don't Know Me By Now" - }, - "2441": { - "Composer": "Mick Hucknall", - "Name": "Stars" - }, - "2442": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "Name": "Something Got Me Started" - }, - "2443": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "Name": "Thrill Me" - }, - "2444": { - "Composer": "Mick Hucknall", - "Name": "Your Mirror" - }, - "2445": { - "Composer": "Mick Hucknall", - "Name": "For Your Babies" - }, - "2446": { - "Composer": "Mick Hucknall", - "Name": "So Beautiful" - }, - "2447": { - "Composer": "Carolyn Franklin and Sonny Saunders", - "Name": "Angel" - }, - "2448": { - "Composer": "Mick Hucknall", - "Name": "Fairground" - }, - "3132": { - "Composer": "Sykes", - "Name": "Still Of The Night" - }, - "3133": { - "Composer": "Marsden", - "Name": "Here I Go Again" - }, - "3134": { - "Composer": "Sykes", - "Name": "Is This Love" - }, - "3135": { - "Composer": "Galley", - "Name": "Love Ain't No Stranger" - }, - "3136": { - "Composer": "Sykes", - "Name": "Looking For Love" - }, - "3137": { - "Composer": "Vandenberg", - "Name": "Now You're Gone" - }, - "3138": { - "Composer": "Coverdale", - "Name": "Slide It In" - }, - "3139": { - "Composer": "Moody", - "Name": "Slow An' Easy" - }, - "3140": { - "Composer": "Vandenberg", - "Name": "Judgement Day" - }, - "3141": { - "Composer": "Sykes", - "Name": "You're Gonna Break My Hart Again" - }, - "3142": { - "Composer": "Vandenberg", - "Name": "The Deeper The Love" - }, - "3143": { - "Composer": "Coverdale", - "Name": "Crying In The Rain" - }, - "3144": { - "Composer": "Marsden/Moody", - "Name": "Fool For Your Loving" - }, - "3145": { - "Composer": "Vandenberg", - "Name": "Sweet Lady Luck" - } - }, - "Title": "Greatest Hits", - "artist": { - "ArtistId": 100, - "Name": "Lenny Kravitz" - } - }, - "144": { - "tracks": { - "1745": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Pseudo Silk Kimono" - }, - "1746": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Kayleigh" - }, - "1747": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Lavender" - }, - "1748": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel" - }, - "1749": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Heart Of Lothian: Wide Boy / Curtain Call" - }, - "1750": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Waterhole (Expresso Bongo)" - }, - "1751": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Lords Of The Backstage" - }, - "1752": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold" - }, - "1753": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Childhoods End?" - }, - "1754": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "White Feather" - } - }, - "Title": "Misplaced Childhood", - "artist": { - "ArtistId": 102, - "Name": "Marillion" - } - }, - "145": { - "tracks": { - "1755": { - "Composer": "Carlinhos Brown", - "Name": "Arrepio" - }, - "1756": { - "Composer": "Carlinhos Brown", - "Name": "Magamalabares" - }, - "1757": { - "Composer": "Morais", - "Name": "Chuva No Brejo" - }, - "1759": { - "Composer": "Lulu Santos", - "Name": "Tempos Modernos" - }, - "1762": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Panis Et Circenses" - }, - "1763": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "De Noite Na Cama" - }, - "1764": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Beija Eu" - }, - "1765": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Give Me Love" - }, - "1766": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Ainda Lembro" - }, - "1769": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Ao Meu Redor" - }, - "1770": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Bem Leve" - }, - "1771": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Segue O Seco" - }, - "1772": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "O Xote Das Meninas" - } - }, - "Title": "Barulhinho Bom", - "artist": { - "ArtistId": 103, - "Name": "Marisa Monte" - } - }, - "146": { - "tracks": { - "1773": { - "Composer": null, - "Name": "Wherever I Lay My Hat" - }, - "1774": { - "Composer": null, - "Name": "Get My Hands On Some Lovin'" - }, - "1775": { - "Composer": "William \"Mickey\" Stevenson", - "Name": "No Good Without You" - }, - "1776": { - "Composer": "Brian Holland/Eddie Holland/Lamont Dozier", - "Name": "You've Been A Long Time Coming" - }, - "1777": { - "Composer": "Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson", - "Name": "When I Had Your Love" - }, - "1778": { - "Composer": "Allen Story/George Gordy/Robert Gordy", - "Name": "You're What's Happening (In The World Today)" - }, - "1779": { - "Composer": "Ivy Hunter/Stevie Wonder", - "Name": "Loving You Is Sweeter Than Ever" - }, - "1780": { - "Composer": "Smokey Robinson/Warren \"Pete\" Moore", - "Name": "It's A Bitter Pill To Swallow" - }, - "1781": { - "Composer": "Ivy Hunter/William \"Mickey\" Stevenson", - "Name": "Seek And You Shall Find" - }, - "1782": { - "Composer": "Barrett Strong/Norman Whitfield", - "Name": "Gonna Keep On Tryin' Till I Win Your Love" - }, - "1783": { - "Composer": "Barrett Strong/Norman Whitfield", - "Name": "Gonna Give Her All The Love I've Got" - }, - "1784": { - "Composer": "Barrett Strong/Norman Whitfield/Roger Penzabene", - "Name": "I Wish It Would Rain" - }, - "1785": { - "Composer": "Dick Holler", - "Name": "Abraham, Martin And John" - }, - "1786": { - "Composer": "Al Cleveland/Marvin Gaye/Renaldo Benson", - "Name": "Save The Children" - }, - "1787": { - "Composer": "Marvin Gaye", - "Name": "You Sure Love To Ball" - }, - "1788": { - "Composer": "Marvin Gaye", - "Name": "Ego Tripping Out" - }, - "1789": { - "Composer": "Marvin Gaye", - "Name": "Praise" - }, - "1790": { - "Composer": "Marvin Gaye", - "Name": "Heavy Love Affair" - } - }, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)", - "artist": { - "ArtistId": 104, - "Name": "Marvin Gaye" - } - }, - "147": { - "tracks": { - "1791": { - "Composer": null, - "Name": "Down Under" - }, - "1792": { - "Composer": null, - "Name": "Overkill" - }, - "1793": { - "Composer": null, - "Name": "Be Good Johnny" - }, - "1794": { - "Composer": null, - "Name": "Everything I Need" - }, - "1795": { - "Composer": null, - "Name": "Down by the Sea" - }, - "1796": { - "Composer": null, - "Name": "Who Can It Be Now?" - }, - "1797": { - "Composer": null, - "Name": "It's a Mistake" - }, - "1798": { - "Composer": null, - "Name": "Dr. Heckyll & Mr. Jive" - }, - "1799": { - "Composer": null, - "Name": "Shakes and Ladders" - }, - "1800": { - "Composer": null, - "Name": "No Sign of Yesterday" - } - }, - "Title": "The Best Of Men At Work", - "artist": { - "ArtistId": 105, - "Name": "Men At Work" - } - }, - "148": { - "tracks": { - "1801": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Enter Sandman" - }, - "1802": { - "Composer": "Ulrich", - "Name": "Sad But True" - }, - "1803": { - "Composer": "Ulrich", - "Name": "Holier Than Thou" - }, - "1804": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "The Unforgiven" - }, - "1805": { - "Composer": "Ulrich", - "Name": "Wherever I May Roam" - }, - "1806": { - "Composer": "Ulrich", - "Name": "Don't Tread On Me" - }, - "1807": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Through The Never" - }, - "1808": { - "Composer": "Ulrich", - "Name": "Nothing Else Matters" - }, - "1809": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Of Wolf And Man" - }, - "1810": { - "Composer": "Ulrich", - "Name": "The God That Failed" - }, - "1811": { - "Composer": "James Hetfield, Lars Ulrich and Jason Newsted", - "Name": "My Friend Of Misery" - }, - "1812": { - "Composer": "Ulrich", - "Name": "The Struggle Within" - } - }, - "Title": "Black Album", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "149": { - "tracks": { - "1813": { - "Composer": "Harris/Tatler", - "Name": "Helpless" - }, - "1814": { - "Composer": "Holocaust", - "Name": "The Small Hours" - }, - "1815": { - "Composer": "Killing Joke", - "Name": "The Wait" - }, - "1816": { - "Composer": "Bourge/Phillips/Shelley", - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Composer": "Danzig", - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Composer": "Harris/Tatler", - "Name": "Am I Evil?" - }, - "1819": { - "Composer": "Jones/Sirotto/Smith", - "Name": "Blitzkrieg" - }, - "1820": { - "Composer": "Bourge/Phillips/Shelley", - "Name": "Breadfan" - }, - "1821": { - "Composer": "Harris/Tatler", - "Name": "The Prince" - }, - "1822": { - "Composer": "Deacon/May/Mercury/Taylor", - "Name": "Stone Cold Crazy" - }, - "1823": { - "Composer": "Culmer/Exalt", - "Name": "So What" - }, - "1824": { - "Composer": "Sweet Savage", - "Name": "Killing Time" - }, - "1825": { - "Composer": "Clarke/Kilmister/Tayler", - "Name": "Overkill" - }, - "1826": { - "Composer": "Clarke/Farren/Kilmister/Tayler", - "Name": "Damage Case" - }, - "1827": { - "Composer": "Clarke/Kilmister/Tayler", - "Name": "Stone Dead Forever" - }, - "1828": { - "Composer": "Clarke/Kilmister/Tayler", - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "150": { - "tracks": { - "1829": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Hit The Lights" - }, - "1830": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "The Four Horsemen" - }, - "1831": { - "Composer": "James Hetfield", - "Name": "Motorbreath" - }, - "1832": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "Jump In The Fire" - }, - "1833": { - "Composer": "Cliff Burton", - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Whiplash" - }, - "1835": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "Phantom Lord" - }, - "1836": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "No Remorse" - }, - "1837": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Seek & Destroy" - }, - "1838": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "151": { - "tracks": { - "1839": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Ain't My Bitch" - }, - "1840": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "2 X 4" - }, - "1841": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "The House Jack Built" - }, - "1842": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Until It Sleeps" - }, - "1843": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "King Nothing" - }, - "1844": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Hero Of The Day" - }, - "1845": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Bleeding Me" - }, - "1846": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Cure" - }, - "1847": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Poor Twisted Me" - }, - "1848": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Wasted My Hate" - }, - "1849": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Mama Said" - }, - "1850": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Thorn Within" - }, - "1851": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Ronnie" - }, - "1852": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "The Outlaw Torn" - } - }, - "Title": "Load", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "152": { - "tracks": { - "1853": { - "Composer": "J.Hetfield/L.Ulrich", - "Name": "Battery" - }, - "1854": { - "Composer": "K.Hammett", - "Name": "Master Of Puppets" - }, - "1855": { - "Composer": "K.Hammett", - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Composer": "K.Hammett", - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Composer": "J.Hetfield/L.Ulrich", - "Name": "Disposable Heroes" - }, - "1858": { - "Composer": "C.Burton", - "Name": "Leper Messiah" - }, - "1859": { - "Composer": "K.Hammett", - "Name": "Orion" - }, - "1860": { - "Composer": "K.Hammett", - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "153": { - "tracks": { - "1861": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Fuel" - }, - "1862": { - "Composer": "Hetfield, Ulrich", - "Name": "The Memory Remains" - }, - "1863": { - "Composer": "Hetfield, Ulrich", - "Name": "Devil's Dance" - }, - "1864": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "The Unforgiven II" - }, - "1865": { - "Composer": "Hetfield, Ulrich", - "Name": "Better Than You" - }, - "1866": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Slither" - }, - "1867": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Carpe Diem Baby" - }, - "1868": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Bad Seed" - }, - "1869": { - "Composer": "Hetfield, Ulrich, Newsted", - "Name": "Where The Wild Things Are" - }, - "1870": { - "Composer": "Hetfield, Ulrich", - "Name": "Prince Charming" - }, - "1871": { - "Composer": "Hetfield, Ulrich", - "Name": "Low Man's Lyric" - }, - "1872": { - "Composer": "Hetfield, Ulrich", - "Name": "Attitude" - }, - "1873": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Fixxxer" - } - }, - "Title": "ReLoad", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "154": { - "tracks": { - "1874": { - "Composer": "Metallica", - "Name": "Fight Fire With Fire" - }, - "1875": { - "Composer": "Metallica", - "Name": "Ride The Lightning" - }, - "1876": { - "Composer": "Metallica", - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Composer": "Metallica", - "Name": "Fade To Black" - }, - "1878": { - "Composer": "Metallica", - "Name": "Trapped Under Ice" - }, - "1879": { - "Composer": "Metallica", - "Name": "Escape" - }, - "1880": { - "Composer": "Metallica", - "Name": "Creeping Death" - }, - "1881": { - "Composer": "Metallica", - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "155": { - "tracks": { - "1882": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Frantic" - }, - "1883": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "St. Anger" - }, - "1884": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Some Kind Of Monster" - }, - "1885": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Dirty Window" - }, - "1886": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Invisible Kid" - }, - "1887": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "My World" - }, - "1888": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Shoot Me Again" - }, - "1889": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Sweet Amber" - }, - "1890": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "The Unnamed Feeling" - }, - "1891": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Purify" - }, - "1892": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "156": { - "tracks": { - "1893": { - "Composer": "James Hetfield, Lars Ulrich & Jason Newsted", - "Name": "Blackened" - }, - "1894": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "Name": "...And Justice For All" - }, - "1895": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "Name": "Eye Of The Beholder" - }, - "1896": { - "Composer": "James Hetfield & Lars Ulrich", - "Name": "One" - }, - "1897": { - "Composer": "James Hetfield and Lars Ulrich", - "Name": "The Shortest Straw" - }, - "1898": { - "Composer": "James Hetfield and Lars Ulrich", - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Composer": "James Hetfield, Lars Ulrich and Cliff Burton", - "Name": "To Live Is To Die" - }, - "1901": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All", - "artist": { - "ArtistId": 50, - "Name": "Metallica" - } - }, - "157": { - "tracks": { - "1902": { - "Composer": "J. Carisi", - "Name": "Springsville" - }, - "1903": { - "Composer": "L. Delibes", - "Name": "The Maids Of Cadiz" - }, - "1904": { - "Composer": "Dave Brubeck", - "Name": "The Duke" - }, - "1905": { - "Composer": "Ira Gershwin, Kurt Weill", - "Name": "My Ship" - }, - "1906": { - "Composer": "Miles Davis, Gil Evans", - "Name": "Miles Ahead" - }, - "1907": { - "Composer": "Gil Evans", - "Name": "Blues For Pablo" - }, - "1908": { - "Composer": "A. Jamal", - "Name": "New Rhumba" - }, - "1909": { - "Composer": "R. Troup, L. Worth", - "Name": "The Meaning Of The Blues" - }, - "1910": { - "Composer": "J.J. Johnson", - "Name": "Lament" - }, - "1911": { - "Composer": "H. Spina, J. Elliott", - "Name": "I Don't Wanna Be Kissed (By Anyone But You)" - }, - "1912": { - "Composer": "J. Carisi", - "Name": "Springsville (Alternate Take)" - }, - "1913": { - "Composer": "Gil Evans", - "Name": "Blues For Pablo (Alternate Take)" - }, - "1914": { - "Composer": "J.J. Johnson/R. Troup, L. Worth", - "Name": "The Meaning Of The Blues/Lament (Alternate Take)" - }, - "1915": { - "Composer": "H. Spina, J. Elliott", - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)" - } - }, - "Title": "Miles Ahead", - "artist": { - "ArtistId": 68, - "Name": "Miles Davis" - } - }, - "158": { - "tracks": { - "1917": { - "Composer": "Dolores Duran", - "Name": "A Noite Do Meu Bem" - }, - "1919": { - "Composer": "Folclore", - "Name": "Cuitelinho" - }, - "1921": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Nos Bailes Da Vida" - }, - "1922": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Menestrel Das Alagoas" - }, - "1923": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Brasil" - }, - "1925": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Name": "Um Gosto De Sol" - }, - "1926": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Solar" - }, - "1928": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Maria, Maria" - } - }, - "Title": "Milton Nascimento Ao Vivo", - "artist": { - "ArtistId": 42, - "Name": "Milton Nascimento" - } - }, - "159": { - "tracks": { - "1929": { - "Composer": "Milton Nascimento, Caetano Veloso", - "Name": "Minas" - }, - "1931": { - "Composer": "Toninho Horta", - "Name": "Beijo Partido" - }, - "1934": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Ponta de Areia" - }, - "1935": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Name": "Trastevere" - }, - "1936": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Idolatrada" - }, - "1937": { - "Composer": "Milton Nascimento", - "Name": "Leila (Venha Ser Feliz)" - }, - "1938": { - "Composer": "Milton Nascimento, Caetano Veloso", - "Name": "Paula E Bebeto" - }, - "1939": { - "Composer": "Nelson Angelo", - "Name": "Simples" - }, - "1940": { - "Composer": "John Lennon, Paul McCartney", - "Name": "Norwegian Wood" - } - }, - "Title": "Minas", - "artist": { - "ArtistId": 42, - "Name": "Milton Nascimento" - } - }, - "163": { - "tracks": { - "1986": { - "Composer": "Kurt Cobain", - "Name": "Intro" - }, - "1987": { - "Composer": "Kurt Cobain", - "Name": "School" - }, - "1988": { - "Composer": "Kurt Cobain", - "Name": "Drain You" - }, - "1989": { - "Composer": "Nirvana", - "Name": "Aneurysm" - }, - "1990": { - "Composer": "Nirvana", - "Name": "Smells Like Teen Spirit" - }, - "1991": { - "Composer": "Kurt Cobain", - "Name": "Been A Son" - }, - "1992": { - "Composer": "Kurt Cobain", - "Name": "Lithium" - }, - "1993": { - "Composer": "Kurt Cobain", - "Name": "Sliver" - }, - "1994": { - "Composer": "Kurt Cobain", - "Name": "Spank Thru" - }, - "1995": { - "Composer": "Nirvana", - "Name": "Scentless Apprentice" - }, - "1996": { - "Composer": "Kurt Cobain", - "Name": "Heart-Shaped Box" - }, - "1997": { - "Composer": "Kurt Cobain", - "Name": "Milk It" - }, - "1998": { - "Composer": "Kurt Cobain", - "Name": "Negative Creep" - }, - "1999": { - "Composer": "Kurt Cobain", - "Name": "Polly" - }, - "2000": { - "Composer": "Kurt Cobain", - "Name": "Breed" - }, - "2001": { - "Composer": "Kurt Cobain", - "Name": "Tourette's" - }, - "2002": { - "Composer": "Kurt Cobain", - "Name": "Blew" - } - }, - "Title": "From The Muddy Banks Of The Wishkah [Live]", - "artist": { - "ArtistId": 110, - "Name": "Nirvana" - } - }, - "164": { - "tracks": { - "2003": { - "Composer": "Kurt Cobain", - "Name": "Smells Like Teen Spirit" - }, - "2004": { - "Composer": "Kurt Cobain", - "Name": "In Bloom" - }, - "2005": { - "Composer": "Kurt Cobain", - "Name": "Come As You Are" - }, - "2006": { - "Composer": "Kurt Cobain", - "Name": "Breed" - }, - "2007": { - "Composer": "Kurt Cobain", - "Name": "Lithium" - }, - "2008": { - "Composer": "Kurt Cobain", - "Name": "Polly" - }, - "2009": { - "Composer": "Kurt Cobain", - "Name": "Territorial Pissings" - }, - "2010": { - "Composer": "Kurt Cobain", - "Name": "Drain You" - }, - "2011": { - "Composer": "Kurt Cobain", - "Name": "Lounge Act" - }, - "2012": { - "Composer": "Kurt Cobain", - "Name": "Stay Away" - }, - "2013": { - "Composer": "Kurt Cobain", - "Name": "On A Plain" - }, - "2014": { - "Composer": "Kurt Cobain", - "Name": "Something In The Way" - } - }, - "Title": "Nevermind", - "artist": { - "ArtistId": 110, - "Name": "Nirvana" - } - }, - "166": { - "tracks": { - "2030": { - "Composer": null, - "Name": "Requebra" - }, - "2032": { - "Composer": null, - "Name": "Olodum - Alegria Geral" - }, - "2035": { - "Composer": null, - "Name": "Todo Amor (Asas Da Liberdade)" - }, - "2038": { - "Composer": null, - "Name": "Cartao Postal" - }, - "2039": { - "Composer": null, - "Name": "Jeito Faceiro" - }, - "2040": { - "Composer": null, - "Name": "Revolta Olodum" - }, - "2042": { - "Composer": null, - "Name": "Protesto Do Olodum (Ao Vivo)" - }, - "2043": { - "Composer": null, - "Name": "Olodum - Smile (Instrumental)" - } - }, - "Title": "Olodum", - "artist": { - "ArtistId": 112, - "Name": "Olodum" - } - }, - "168": { - "tracks": { - "2065": { - "Composer": "Fito Paez/Herbert Vianna", - "Name": "Trac Trac" - }, - "2067": { - "Composer": "Herbert Vianna", - "Name": "Mensagen De Amor (2000)" - }, - "2068": { - "Composer": "Bahiano/Diego Blanco/Herbert Vianna", - "Name": "Lourinha Bombril" - }, - "2069": { - "Composer": "Herbert Vianna", - "Name": "La Bella Luna" - }, - "2070": { - "Composer": "Herbert Vianna", - "Name": "Busca Vida" - }, - "2071": { - "Composer": "Carlinhos Brown/Herbert Vianna", - "Name": "Uma Brasileira" - }, - "2072": { - "Composer": "Herbert Vianna", - "Name": "Luis Inacio (300 Picaretas)" - }, - "2073": { - "Composer": "Herbert Vianna", - "Name": "Saber Amar" - }, - "2074": { - "Composer": "Herbert Vianna", - "Name": "Ela Disse Adeus" - }, - "2075": { - "Composer": "Herbert Vianna", - "Name": "O Amor Nao Sabe Esperar" - } - }, - "Title": "Arquivo II", - "artist": { - "ArtistId": 113, - "Name": "Os Paralamas Do Sucesso" - } - }, - "169": { - "tracks": { - "2079": { - "Composer": null, - "Name": "Cinema Mudo" - }, - "2080": { - "Composer": null, - "Name": "Alagados" - }, - "2081": { - "Composer": null, - "Name": "Lanterna Dos Afogados" - }, - "2083": { - "Composer": null, - "Name": "Vital E Sua Moto" - }, - "2084": { - "Composer": null, - "Name": "O Beco" - }, - "2085": { - "Composer": null, - "Name": "Meu Erro" - }, - "2086": { - "Composer": null, - "Name": "Perplexo" - }, - "2087": { - "Composer": null, - "Name": "Me Liga" - }, - "2088": { - "Composer": null, - "Name": "Quase Um Segundo" - }, - "2089": { - "Composer": null, - "Name": "Selvagem" - }, - "2090": { - "Composer": null, - "Name": "Romance Ideal" - }, - "2092": { - "Composer": null, - "Name": "SKA" - } - }, - "Title": "Arquivo Os Paralamas Do Sucesso", - "artist": { - "ArtistId": 113, - "Name": "Os Paralamas Do Sucesso" - } - }, - "170": { - "tracks": { - "2093": { - "Composer": "O. Osbourne", - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)", - "artist": { - "ArtistId": 114, - "Name": "Ozzy Osbourne" - } - }, - "171": { - "tracks": { - "2094": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "Name": "I Don't Know" - }, - "2095": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz", - "artist": { - "ArtistId": 114, - "Name": "Ozzy Osbourne" - } - }, - "172": { - "tracks": { - "2096": { - "Composer": "L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads", - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)", - "artist": { - "ArtistId": 114, - "Name": "Ozzy Osbourne" - } - }, - "173": { - "tracks": { - "2097": { - "Composer": "L. Kilmister, O. Osbourne & Z. Wylde", - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Composer": "J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde", - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)", - "artist": { - "ArtistId": 114, - "Name": "Ozzy Osbourne" - } - }, - "174": { - "tracks": { - "2099": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "I Don't Know" - }, - "2100": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Crazy Train" - }, - "2101": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Believer" - }, - "2102": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Mr. Crowley" - }, - "2103": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake", - "Name": "Flying High Again" - }, - "2104": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Steal Away (The Night)" - }, - "2106": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Name": "Iron Man" - }, - "2108": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Name": "Children Of The Grave" - }, - "2109": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Name": "Paranoid" - }, - "2110": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Goodbye To Romance" - }, - "2111": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "No Bone Movies" - }, - "2112": { - "Composer": "R. Rhoads", - "Name": "Dee" - } - }, - "Title": "Tribute", - "artist": { - "ArtistId": 114, - "Name": "Ozzy Osbourne" - } - }, - "175": { - "tracks": { - "2113": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Shining In The Light" - }, - "2114": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "When The World Was Young" - }, - "2115": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Upon A Golden Horse" - }, - "2116": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Blue Train" - }, - "2117": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Please Read The Letter" - }, - "2118": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Most High" - }, - "2119": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Heart In Your Hand" - }, - "2120": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Walking Into Clarksdale" - }, - "2121": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Burning Up" - }, - "2122": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "When I Was A Child" - }, - "2123": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "House Of Love" - }, - "2124": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Sons Of Freedom" - } - }, - "Title": "Walking Into Clarksdale", - "artist": { - "ArtistId": 115, - "Name": "Page & Plant" - } - }, - "176": { - "tracks": { - "2125": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "United Colours" - }, - "2126": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Slug" - }, - "2127": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Your Blue Room" - }, - "2128": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Always Forever Now" - }, - "2129": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "A Different Kind Of Blue" - }, - "2130": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Beach Sequence" - }, - "2131": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Miss Sarajevo" - }, - "2132": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Ito Okashi" - }, - "2133": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "One Minute Warning" - }, - "2134": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Corpse (These Chains Are Way Too Long)" - }, - "2135": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Elvis Ate America" - }, - "2136": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Plot 180" - }, - "2137": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Theme From The Swan" - }, - "2138": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Theme From Let's Go Native" - } - }, - "Title": "Original Soundtracks 1", - "artist": { - "ArtistId": 116, - "Name": "Passengers" - } - }, - "177": { - "tracks": { - "2139": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "2140": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Killers" - }, - "2141": { - "Composer": "Steve Harris", - "Name": "Prowler" - }, - "2142": { - "Composer": "Steve Harris", - "Name": "Murders In The Rue Morgue" - }, - "2143": { - "Composer": "Greg Macainsh", - "Name": "Women In Uniform" - }, - "2144": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Remember Tomorrow" - }, - "2145": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "Sanctuary" - }, - "2146": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Running Free" - }, - "2147": { - "Composer": "Steve Harris", - "Name": "Phantom Of The Opera" - }, - "2148": { - "Composer": "Steve Harris", - "Name": "Iron Maiden" - } - }, - "Title": "The Beast Live", - "artist": { - "ArtistId": 117, - "Name": "Paul D'Ianno" - } - }, - "178": { - "tracks": { - "2149": { - "Composer": "Pearl Jam & Eddie Vedder", - "Name": "Corduroy" - }, - "2150": { - "Composer": "Eddie Vedder & Mike McCready", - "Name": "Given To Fly" - }, - "2151": { - "Composer": "Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready", - "Name": "Hail, Hail" - }, - "2152": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "Name": "Daughter" - }, - "2153": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Composer": "Pearl Jam", - "Name": "Untitled" - }, - "2155": { - "Composer": "Eddie Vedder", - "Name": "MFC" - }, - "2156": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "Name": "Go" - }, - "2157": { - "Composer": "Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder", - "Name": "Red Mosquito" - }, - "2158": { - "Composer": "Stone Gossard & Eddie Vedder", - "Name": "Even Flow" - }, - "2159": { - "Composer": "Eddie Vedder", - "Name": "Off He Goes" - }, - "2160": { - "Composer": "Jeff Ament & Eddie Vedder", - "Name": "Nothingman" - }, - "2161": { - "Composer": "Eddie Vedder & Stone Gossard", - "Name": "Do The Evolution" - }, - "2162": { - "Composer": "Eddie Vedder", - "Name": "Better Man" - }, - "2163": { - "Composer": "Stone Gossard & Eddie Vedder", - "Name": "Black" - }, - "2164": { - "Composer": "Neil Young", - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]", - "artist": { - "ArtistId": 118, - "Name": "Pearl Jam" - } - }, - "179": { - "tracks": { - "2165": { - "Composer": "Stone Gossard", - "Name": "Life Wasted" - }, - "2166": { - "Composer": "Eddie Vedder", - "Name": "World Wide Suicide" - }, - "2167": { - "Composer": "Mike McCready & Stone Gossard", - "Name": "Comatose" - }, - "2168": { - "Composer": "Eddie Vedder", - "Name": "Severed Hand" - }, - "2169": { - "Composer": "Mike McCready", - "Name": "Marker In The Sand" - }, - "2170": { - "Composer": "Stone Gossard", - "Name": "Parachutes" - }, - "2171": { - "Composer": "Matt Cameron & Mike McCready", - "Name": "Unemployable" - }, - "2172": { - "Composer": "Jeff Ament", - "Name": "Big Wave" - }, - "2173": { - "Composer": "Eddie Vedder", - "Name": "Gone" - }, - "2174": { - "Composer": "Stone Gossard", - "Name": "Wasted Reprise" - }, - "2175": { - "Composer": "Jeff Ament", - "Name": "Army Reserve" - }, - "2176": { - "Composer": "Eddie Vedder & Mike McCready", - "Name": "Come Back" - }, - "2177": { - "Composer": "Eddie Vedder & Mike McCready", - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam", - "artist": { - "ArtistId": 118, - "Name": "Pearl Jam" - } - }, - "180": { - "tracks": { - "2178": { - "Composer": "Eddie Vedder", - "Name": "Can't Keep" - }, - "2179": { - "Composer": "Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard", - "Name": "Save You" - }, - "2180": { - "Composer": "Eddie Vedder", - "Name": "Love Boat Captain" - }, - "2181": { - "Composer": "Matt Cameron", - "Name": "Cropduster" - }, - "2182": { - "Composer": "Jeff Ament", - "Name": "Ghost" - }, - "2183": { - "Composer": "Eddie Vedder", - "Name": "I Am Mine" - }, - "2184": { - "Composer": "Eddie Vedder", - "Name": "Thumbing My Way" - }, - "2185": { - "Composer": "Matt Cameron", - "Name": "You Are" - }, - "2186": { - "Composer": "Matt Cameron", - "Name": "Get Right" - }, - "2187": { - "Composer": "Eddie Vedder", - "Name": "Green Disease" - }, - "2188": { - "Composer": "Jeff Ament", - "Name": "Help Help" - }, - "2189": { - "Composer": "Stone Gossard", - "Name": "Bushleager" - }, - "2190": { - "Composer": "Jeff Ament", - "Name": "1/2 Full" - }, - "2191": { - "Composer": "Pearl Jam", - "Name": "Arc" - }, - "2192": { - "Composer": "Stone Gossard", - "Name": "All or None" - } - }, - "Title": "Riot Act", - "artist": { - "ArtistId": 118, - "Name": "Pearl Jam" - } - }, - "181": { - "tracks": { - "2193": { - "Composer": "Stone Gossard", - "Name": "Once" - }, - "2194": { - "Composer": "Stone Gossard", - "Name": "Evenflow" - }, - "2195": { - "Composer": "Stone Gossard", - "Name": "Alive" - }, - "2196": { - "Composer": "Jeff Ament", - "Name": "Why Go" - }, - "2197": { - "Composer": "Dave Krusen/Stone Gossard", - "Name": "Black" - }, - "2198": { - "Composer": "Jeff Ament", - "Name": "Jeremy" - }, - "2199": { - "Composer": "Jeff Ament/Stone Gossard", - "Name": "Oceans" - }, - "2200": { - "Composer": "Eddie Vedder", - "Name": "Porch" - }, - "2201": { - "Composer": "Jeff Ament/Stone Gossard", - "Name": "Garden" - }, - "2202": { - "Composer": "Jeff Ament/Stone Gossard", - "Name": "Deep" - }, - "2203": { - "Composer": "Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Release" - } - }, - "Title": "Ten", - "artist": { - "ArtistId": 118, - "Name": "Pearl Jam" - } - }, - "182": { - "tracks": { - "2204": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Go" - }, - "2205": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Animal" - }, - "2206": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Daughter" - }, - "2207": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Glorified G" - }, - "2208": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Dissident" - }, - "2209": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "W.M.A." - }, - "2210": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Blood" - }, - "2211": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Rearviewmirror" - }, - "2212": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Rats" - }, - "2213": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Leash" - }, - "2215": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Indifference" - } - }, - "Title": "Vs.", - "artist": { - "ArtistId": 118, - "Name": "Pearl Jam" - } - }, - "183": { - "tracks": { - "2229": { - "Composer": "Mason/Waters, Gilmour, Wright", - "Name": "Speak To Me/Breathe" - }, - "2230": { - "Composer": "Gilmour, Waters", - "Name": "On The Run" - }, - "2231": { - "Composer": "Mason, Waters, Wright, Gilmour", - "Name": "Time" - }, - "2232": { - "Composer": "Wright, Waters", - "Name": "The Great Gig In The Sky" - }, - "2233": { - "Composer": "Waters", - "Name": "Money" - }, - "2234": { - "Composer": "Waters, Wright", - "Name": "Us And Them" - }, - "2235": { - "Composer": "Gilmour, Mason, Wright, Waters", - "Name": "Any Colour You Like" - }, - "2236": { - "Composer": "Waters", - "Name": "Brain Damage" - }, - "2237": { - "Composer": "Waters", - "Name": "Eclipse" - } - }, - "Title": "Dark Side Of The Moon", - "artist": { - "ArtistId": 120, - "Name": "Pink Floyd" - } - }, - "185": { - "tracks": { - "2254": { - "Composer": "Mercury, Freddie", - "Name": "Bohemian Rhapsody" - }, - "2255": { - "Composer": "Deacon, John", - "Name": "Another One Bites The Dust" - }, - "2256": { - "Composer": "Mercury, Freddie", - "Name": "Killer Queen" - }, - "2257": { - "Composer": "May, Brian", - "Name": "Fat Bottomed Girls" - }, - "2258": { - "Composer": "Mercury, Freddie", - "Name": "Bicycle Race" - }, - "2259": { - "Composer": "Deacon, John", - "Name": "You're My Best Friend" - }, - "2260": { - "Composer": "Mercury, Freddie", - "Name": "Don't Stop Me Now" - }, - "2261": { - "Composer": "May, Brian", - "Name": "Save Me" - }, - "2262": { - "Composer": "Mercury, Freddie", - "Name": "Crazy Little Thing Called Love" - }, - "2263": { - "Composer": "Mercury, Freddie", - "Name": "Somebody To Love" - }, - "2264": { - "Composer": "May, Brian", - "Name": "Now I'm Here" - }, - "2265": { - "Composer": "Mercury, Freddie", - "Name": "Good Old-Fashioned Lover Boy" - }, - "2266": { - "Composer": "Mercury, Freddie", - "Name": "Play The Game" - }, - "2267": { - "Composer": "May, Brian", - "Name": "Flash" - }, - "2268": { - "Composer": "Mercury, Freddie", - "Name": "Seven Seas Of Rhye" - }, - "2269": { - "Composer": "Deacon, John/May, Brian", - "Name": "We Will Rock You" - }, - "2270": { - "Composer": "Mercury, Freddie", - "Name": "We Are The Champions" - } - }, - "Title": "Greatest Hits I", - "artist": { - "ArtistId": 51, - "Name": "Queen" - } - }, - "186": { - "tracks": { - "2271": { - "Composer": "May", - "Name": "We Will Rock You" - }, - "2272": { - "Composer": "Mercury", - "Name": "We Are The Champions" - }, - "2273": { - "Composer": "Taylor", - "Name": "Sheer Heart Attack" - }, - "2274": { - "Composer": "May", - "Name": "All Dead, All Dead" - }, - "2275": { - "Composer": "Deacon", - "Name": "Spread Your Wings" - }, - "2276": { - "Composer": "Taylor", - "Name": "Fight From The Inside" - }, - "2277": { - "Composer": "Mercury", - "Name": "Get Down, Make Love" - }, - "2278": { - "Composer": "May", - "Name": "Sleep On The Sidewalk" - }, - "2279": { - "Composer": "Deacon", - "Name": "Who Needs You" - }, - "2280": { - "Composer": "May", - "Name": "It's Late" - }, - "2281": { - "Composer": "Mercury", - "Name": "My Melancholy Blues" - } - }, - "Title": "News Of The World", - "artist": { - "ArtistId": 51, - "Name": "Queen" - } - }, - "187": { - "tracks": { - "2282": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Shiny Happy People" - }, - "2283": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Me In Honey" - }, - "2284": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Radio Song" - }, - "2310": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Losing My Religion" - }, - "2311": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Low" - }, - "2312": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Near Wild Heaven" - }, - "2313": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Endgame" - }, - "2314": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Belong" - }, - "2315": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Half A World Away" - }, - "2316": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Texarkana" - }, - "2317": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Country Feedback" - } - }, - "Title": "Out Of Time", - "artist": { - "ArtistId": 122, - "Name": "R.E.M. Feat. Kate Pearson" - } - }, - "188": { - "tracks": { - "2285": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Pop Song 89" - }, - "2286": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Get Up" - }, - "2287": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "You Are The Everything" - }, - "2288": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Stand" - }, - "2289": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "World Leader Pretend" - }, - "2290": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "The Wrong Child" - }, - "2291": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Orange Crush" - }, - "2292": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Turn You Inside-Out" - }, - "2293": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Hairshirt" - }, - "2294": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "I Remember California" - }, - "2295": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Untitled" - } - }, - "Title": "Green", - "artist": { - "ArtistId": 124, - "Name": "R.E.M." - } - }, - "189": { - "tracks": { - "2296": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "How The West Was Won And Where It Got Us" - }, - "2297": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "The Wake-Up Bomb" - }, - "2298": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "New Test Leper" - }, - "2299": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Undertow" - }, - "2300": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "E-Bow The Letter" - }, - "2301": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Leave" - }, - "2302": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Departure" - }, - "2303": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Bittersweet Me" - }, - "2304": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Be Mine" - }, - "2305": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Binky The Doormat" - }, - "2306": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Zither" - }, - "2307": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "So Fast, So Numb" - }, - "2308": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Low Desert" - }, - "2309": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Electrolite" - } - }, - "Title": "New Adventures In Hi-Fi", - "artist": { - "ArtistId": 124, - "Name": "R.E.M." - } - }, - "190": { - "tracks": { - "2318": { - "Composer": "R.E.M.", - "Name": "Carnival Of Sorts" - }, - "2319": { - "Composer": "R.E.M.", - "Name": "Radio Free Aurope" - }, - "2320": { - "Composer": "R.E.M.", - "Name": "Perfect Circle" - }, - "2321": { - "Composer": "R.E.M.", - "Name": "Talk About The Passion" - }, - "2322": { - "Composer": "R.E.M.", - "Name": "So Central Rain" - }, - "2323": { - "Composer": "R.E.M.", - "Name": "Don't Go Back To Rockville" - }, - "2324": { - "Composer": "R.E.M.", - "Name": "Pretty Persuasion" - }, - "2325": { - "Composer": "R.E.M.", - "Name": "Green Grow The Rushes" - }, - "2326": { - "Composer": "R.E.M.", - "Name": "Can't Get There From Here" - }, - "2327": { - "Composer": "R.E.M.", - "Name": "Driver 8" - }, - "2328": { - "Composer": "R.E.M.", - "Name": "Fall On Me" - }, - "2329": { - "Composer": "R.E.M.", - "Name": "I Believe" - }, - "2330": { - "Composer": "R.E.M.", - "Name": "Cuyahoga" - }, - "2331": { - "Composer": "R.E.M.", - "Name": "The One I Love" - }, - "2332": { - "Composer": "R.E.M.", - "Name": "The Finest Worksong" - }, - "2333": { - "Composer": "R.E.M.", - "Name": "It's The End Of The World As We Know It (And I Feel Fine)" - } - }, - "Title": "The Best Of R.E.M.: The IRS Years", - "artist": { - "ArtistId": 124, - "Name": "R.E.M." - } - }, - "192": { - "tracks": { - "2344": { - "Composer": null, - "Name": "Maluco Beleza" - }, - "2345": { - "Composer": null, - "Name": "O Dia Em Que A Terra Parou" - }, - "2346": { - "Composer": null, - "Name": "No Fundo Do Quintal Da Escola" - }, - "2347": { - "Composer": null, - "Name": "O Segredo Do Universo" - }, - "2348": { - "Composer": null, - "Name": "As Profecias" - }, - "2349": { - "Composer": null, - "Name": "Mata Virgem" - }, - "2350": { - "Composer": null, - "Name": "Sapato 36" - }, - "2351": { - "Composer": null, - "Name": "Todo Mundo Explica" - }, - "2353": { - "Composer": null, - "Name": "Diamante De Mendigo" - }, - "2357": { - "Composer": null, - "Name": "Rock Das Aranhas (Ao Vivo) (Live)" - } - }, - "Title": "Raul Seixas", - "artist": { - "ArtistId": 126, - "Name": "Raul Seixas" - } - }, - "193": { - "tracks": { - "2358": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "The Power Of Equality" - }, - "2359": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "If You Have To Ask" - }, - "2360": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Breaking The Girl" - }, - "2361": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Funky Monks" - }, - "2362": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Suck My Kiss" - }, - "2363": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "I Could Have Lied" - }, - "2364": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Mellowship Slinky In B Major" - }, - "2365": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "The Righteous & The Wicked" - }, - "2366": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Give It Away" - }, - "2367": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Blood Sugar Sex Magik" - }, - "2368": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Under The Bridge" - }, - "2369": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Naked In The Rain" - }, - "2370": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Apache Rose Peacock" - }, - "2371": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "The Greeting Song" - }, - "2372": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "My Lovely Man" - }, - "2373": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Sir Psycho Sexy" - }, - "2374": { - "Composer": "Robert Johnson", - "Name": "They're Red Hot" - } - }, - "Title": "Blood Sugar Sex Magik", - "artist": { - "ArtistId": 127, - "Name": "Red Hot Chili Peppers" - } - }, - "194": { - "tracks": { - "2375": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "By The Way" - }, - "2376": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Universally Speaking" - }, - "2377": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "This Is The Place" - }, - "2378": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Dosed" - }, - "2379": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Don't Forget Me" - }, - "2380": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "The Zephyr Song" - }, - "2381": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Can't Stop" - }, - "2382": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "I Could Die For You" - }, - "2383": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Midnight" - }, - "2384": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Throw Away Your Television" - }, - "2385": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Cabron" - }, - "2386": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Tear" - }, - "2387": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "On Mercury" - }, - "2388": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Minor Thing" - }, - "2389": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Warm Tape" - }, - "2390": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Venice Queen" - } - }, - "Title": "By The Way", - "artist": { - "ArtistId": 127, - "Name": "Red Hot Chili Peppers" - } - }, - "195": { - "tracks": { - "2391": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Around The World" - }, - "2392": { - "Composer": "Red Hot Chili Peppers", - "Name": "Parallel Universe" - }, - "2393": { - "Composer": "Red Hot Chili Peppers", - "Name": "Scar Tissue" - }, - "2394": { - "Composer": "Red Hot Chili Peppers", - "Name": "Otherside" - }, - "2395": { - "Composer": "Red Hot Chili Peppers", - "Name": "Get On Top" - }, - "2396": { - "Composer": "Red Hot Chili Peppers", - "Name": "Californication" - }, - "2397": { - "Composer": "Red Hot Chili Peppers", - "Name": "Easily" - }, - "2398": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Porcelain" - }, - "2399": { - "Composer": "Red Hot Chili Peppers", - "Name": "Emit Remmus" - }, - "2400": { - "Composer": "Red Hot Chili Peppers", - "Name": "I Like Dirt" - }, - "2401": { - "Composer": "Red Hot Chili Peppers", - "Name": "This Velvet Glove" - }, - "2402": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Savior" - }, - "2403": { - "Composer": "Red Hot Chili Peppers", - "Name": "Purple Stain" - }, - "2404": { - "Composer": "Red Hot Chili Peppers", - "Name": "Right On Time" - }, - "2405": { - "Composer": "Red Hot Chili Peppers", - "Name": "Road Trippin'" - } - }, - "Title": "Californication", - "artist": { - "ArtistId": 127, - "Name": "Red Hot Chili Peppers" - } - }, - "196": { - "tracks": { - "2406": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "The Spirit Of Radio" - }, - "2407": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "The Trees" - }, - "2408": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Something For Nothing" - }, - "2409": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Freewill" - }, - "2410": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Xanadu" - }, - "2411": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Bastille Day" - }, - "2412": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "By-Tor And The Snow Dog" - }, - "2413": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Anthem" - }, - "2414": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Closer To The Heart" - }, - "2415": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "2112 Overture" - }, - "2416": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "The Temples Of Syrinx" - }, - "2417": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "La Villa Strangiato" - }, - "2418": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Fly By Night" - }, - "2419": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Finding My Way" - } - }, - "Title": "Retrospective I (1974-1980)", - "artist": { - "ArtistId": 128, - "Name": "Rush" - } - }, - "197": { - "tracks": { - "2420": { - "Composer": "M.Babatunde Olantunji", - "Name": "Jingo" - }, - "2421": { - "Composer": "E.Weiss", - "Name": "El Corazon Manda" - }, - "2422": { - "Composer": "E.Weiss", - "Name": "La Puesta Del Sol" - }, - "2423": { - "Composer": "Carlos Santana", - "Name": "Persuasion" - }, - "2424": { - "Composer": "Albert King", - "Name": "As The Years Go by" - }, - "2425": { - "Composer": "Carlos Santana", - "Name": "Soul Sacrifice" - }, - "2426": { - "Composer": "W.Correa", - "Name": "Fried Neckbones And Home Fries" - }, - "2427": { - "Composer": "Carlos Santana", - "Name": "Santana Jam" - } - }, - "Title": "Santana - As Years Go By", - "artist": { - "ArtistId": 59, - "Name": "Santana" - } - }, - "198": { - "tracks": { - "2428": { - "Composer": null, - "Name": "Evil Ways" - }, - "2429": { - "Composer": null, - "Name": "We've Got To Get Together/Jingo" - }, - "2430": { - "Composer": null, - "Name": "Rock Me" - }, - "2431": { - "Composer": null, - "Name": "Just Ain't Good Enough" - }, - "2432": { - "Composer": null, - "Name": "Funky Piano" - }, - "2433": { - "Composer": null, - "Name": "The Way You Do To Mer" - } - }, - "Title": "Santana Live", - "artist": { - "ArtistId": 59, - "Name": "Santana" - } - }, - "199": { - "tracks": { - "2451": { - "Composer": "Chico Amaral/Samuel Rosa", - "Name": "Ela Desapareceu" - }, - "2455": { - "Composer": "Chico Amaral/Samuel Rosa", - "Name": "Maquinarama" - }, - "2458": { - "Composer": "Chico Amaral/Samuel Rosa", - "Name": "Fica" - }, - "2459": { - "Composer": "Nando Reis/Samuel Rosa", - "Name": "Ali" - } - }, - "Title": "Maquinarama", - "artist": { - "ArtistId": 130, - "Name": "Skank" - } - }, - "201": { - "tracks": { - "2472": { - "Composer": "Billy Corgan", - "Name": "Lucky 13" - }, - "2473": { - "Composer": "Billy Corgan", - "Name": "Aeroplane Flies High" - }, - "2474": { - "Composer": "Billy Corgan", - "Name": "Because You Are" - }, - "2475": { - "Composer": "Billy Corgan", - "Name": "Slow Dawn" - }, - "2476": { - "Composer": "James Iha", - "Name": "Believe" - }, - "2477": { - "Composer": "Billy Corgan", - "Name": "My Mistake" - }, - "2478": { - "Composer": "Billy Corgan", - "Name": "Marquis In Spades" - }, - "2479": { - "Composer": "Billy Corgan", - "Name": "Here's To The Atom Bomb" - }, - "2480": { - "Composer": "Billy Corgan", - "Name": "Sparrow" - }, - "2481": { - "Composer": "Billy Corgan", - "Name": "Waiting" - }, - "2482": { - "Composer": "Billy Corgan", - "Name": "Saturnine" - }, - "2483": { - "Composer": "David Cook", - "Name": "Rock On" - }, - "2484": { - "Composer": "Billy Corgan", - "Name": "Set The Ray To Jerry" - }, - "2485": { - "Composer": "Billy Corgan", - "Name": "Winterlong" - }, - "2486": { - "Composer": "Billy Corgan", - "Name": "Soot & Stars" - }, - "2487": { - "Composer": "Billy Corgan", - "Name": "Blissed & Gone" - } - }, - "Title": "Judas 0: B-Sides and Rarities", - "artist": { - "ArtistId": 131, - "Name": "Smashing Pumpkins" - } - }, - "202": { - "tracks": { - "2488": { - "Composer": "Billy Corgan", - "Name": "Siva" - }, - "2489": { - "Composer": "Billy Corgan", - "Name": "Rhinocerous" - }, - "2490": { - "Composer": "Billy Corgan", - "Name": "Drown" - }, - "2491": { - "Composer": "Billy Corgan", - "Name": "Cherub Rock" - }, - "2492": { - "Composer": "Billy Corgan", - "Name": "Today" - }, - "2493": { - "Composer": "Billy Corgan", - "Name": "Disarm" - }, - "2494": { - "Composer": "Stevie Nicks", - "Name": "Landslide" - }, - "2495": { - "Composer": "Billy Corgan", - "Name": "Bullet With Butterfly Wings" - }, - "2496": { - "Composer": "Billy Corgan", - "Name": "1979" - }, - "2497": { - "Composer": "Billy Corgan", - "Name": "Zero" - }, - "2498": { - "Composer": "Billy Corgan", - "Name": "Tonight, Tonight" - }, - "2499": { - "Composer": "Billy Corgan", - "Name": "Eye" - }, - "2500": { - "Composer": "Billy Corgan", - "Name": "Ava Adore" - }, - "2501": { - "Composer": "Billy Corgan", - "Name": "Perfect" - }, - "2502": { - "Composer": "Billy Corgan", - "Name": "The Everlasting Gaze" - }, - "2503": { - "Composer": "Billy Corgan", - "Name": "Stand Inside Your Love" - }, - "2504": { - "Composer": "Billy Corgan", - "Name": "Real Love" - }, - "2505": { - "Composer": "Billy Corgan", - "Name": "[Untitled]" - } - }, - "Title": "Rotten Apples: Greatest Hits", - "artist": { - "ArtistId": 131, - "Name": "Smashing Pumpkins" - } - }, - "203": { - "tracks": { - "2506": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Nothing To Say" - }, - "2507": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Flower" - }, - "2508": { - "Composer": "Chris Cornell", - "Name": "Loud Love" - }, - "2509": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Hands All Over" - }, - "2510": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Get On The Snake" - }, - "2511": { - "Composer": "Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron", - "Name": "Jesus Christ Pose" - }, - "2512": { - "Composer": "Chris Cornell", - "Name": "Outshined" - }, - "2513": { - "Composer": "Chris Cornell", - "Name": "Rusty Cage" - }, - "2514": { - "Composer": "Chris Cornell", - "Name": "Spoonman" - }, - "2515": { - "Composer": "Chris Cornell", - "Name": "The Day I Tried To Live" - }, - "2516": { - "Composer": "Soundgarden", - "Name": "Black Hole Sun" - }, - "2517": { - "Composer": "Chris Cornell", - "Name": "Fell On Black Days" - }, - "2518": { - "Composer": "Chris Cornell", - "Name": "Pretty Noose" - }, - "2519": { - "Composer": "Chris Cornell", - "Name": "Burden In My Hand" - }, - "2520": { - "Composer": "Chris Cornell", - "Name": "Blow Up The Outside World" - }, - "2521": { - "Composer": "Ben Shepherd/Chris Cornell", - "Name": "Ty Cobb" - }, - "2522": { - "Composer": "Chris Cornell", - "Name": "Bleed Together" - } - }, - "Title": "A-Sides", - "artist": { - "ArtistId": 132, - "Name": "Soundgarden" - } - }, - "204": { - "tracks": { - "2523": { - "Composer": "Jay Beckenstein", - "Name": "Morning Dance" - }, - "2524": { - "Composer": "Jeremy Wall", - "Name": "Jubilee" - }, - "2525": { - "Composer": "Jeremy Wall", - "Name": "Rasul" - }, - "2526": { - "Composer": "Jay Beckenstein", - "Name": "Song For Lorraine" - }, - "2527": { - "Composer": "Jeremy Wall", - "Name": "Starburst" - }, - "2528": { - "Composer": "Jay Beckenstein", - "Name": "Heliopolis" - }, - "2529": { - "Composer": "Chet Catallo", - "Name": "It Doesn't Matter" - }, - "2530": { - "Composer": "Jeremy Wall", - "Name": "Little Linda" - }, - "2531": { - "Composer": "Rick Strauss", - "Name": "End Of Romanticism" - } - }, - "Title": "Morning Dance", - "artist": { - "ArtistId": 53, - "Name": "Spyro Gyra" - } - }, - "205": { - "tracks": { - "2532": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "The House Is Rockin'" - }, - "2533": { - "Composer": "B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon", - "Name": "Crossfire" - }, - "2534": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "Tightrope" - }, - "2535": { - "Composer": "Willie Dixon", - "Name": "Let Me Love You Baby" - }, - "2536": { - "Composer": "B. Guy", - "Name": "Leave My Girl Alone" - }, - "2537": { - "Composer": "Stevie Ray Vaughan", - "Name": "Travis Walk" - }, - "2538": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "Wall Of Denial" - }, - "2539": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "Scratch-N-Sniff" - }, - "2540": { - "Composer": "C. Burnett", - "Name": "Love Me Darlin'" - }, - "2541": { - "Composer": "Stevie Ray Vaughan", - "Name": "Riviera Paradise" - } - }, - "Title": "In Step", - "artist": { - "ArtistId": 133, - "Name": "Stevie Ray Vaughan & Double Trouble" - } - }, - "206": { - "tracks": { - "2542": { - "Composer": "R. DeLeo/Weiland", - "Name": "Dead And Bloated" - }, - "2543": { - "Composer": "D. DeLeo/Kretz/Weiland", - "Name": "Sex Type Thing" - }, - "2544": { - "Composer": "D. DeLeo/R. DeLeo/Weiland", - "Name": "Wicked Garden" - }, - "2545": { - "Composer": "Dean Deleo", - "Name": "No Memory" - }, - "2546": { - "Composer": "R. DeLeo/Weiland", - "Name": "Sin" - }, - "2547": { - "Composer": "D. DeLeo/Kretz/R. DeLeo/Weiland", - "Name": "Naked Sunday" - }, - "2548": { - "Composer": "R. DeLeo/Weiland", - "Name": "Creep" - }, - "2549": { - "Composer": "R. DeLeo/Weiland", - "Name": "Piece Of Pie" - }, - "2550": { - "Composer": "R. DeLeo/Weiland", - "Name": "Plush" - }, - "2551": { - "Composer": "R. DeLeo/Weiland", - "Name": "Wet My Bed" - }, - "2552": { - "Composer": "Kretz/R. DeLeo/Weiland", - "Name": "Crackerman" - }, - "2553": { - "Composer": "D. DeLeo/Kretz/Weiland", - "Name": "Where The River Goes" - } - }, - "Title": "Core", - "artist": { - "ArtistId": 134, - "Name": "Stone Temple Pilots" - } - }, - "207": { - "tracks": { - "2554": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Soldier Side - Intro" - }, - "2555": { - "Composer": "Tankian, Serj", - "Name": "B.Y.O.B." - }, - "2556": { - "Composer": "Tankian, Serj", - "Name": "Revenga" - }, - "2557": { - "Composer": "Tankian, Serj", - "Name": "Cigaro" - }, - "2558": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Radio/Video" - }, - "2559": { - "Composer": "Tankian, Serj", - "Name": "This Cocaine Makes Me Feel Like I'm On This Song" - }, - "2560": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Violent Pornography" - }, - "2561": { - "Composer": "Tankian, Serj", - "Name": "Question!" - }, - "2562": { - "Composer": "Tankian, Serj", - "Name": "Sad Statue" - }, - "2563": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Old School Hollywood" - }, - "2564": { - "Composer": "Tankian, Serj", - "Name": "Lost in Hollywood" - } - }, - "Title": "Mezmerize", - "artist": { - "ArtistId": 135, - "Name": "System Of A Down" - } - }, - "208": { - "tracks": { - "2565": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "The Sun Road" - }, - "2566": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Dark Corners" - }, - "2567": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Duende" - }, - "2568": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Black Light Syndrome" - }, - "2569": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Falling in Circles" - }, - "2570": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Book of Hours" - }, - "2571": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Chaos-Control" - } - }, - "Title": "[1997] Black Light Syndrome", - "artist": { - "ArtistId": 136, - "Name": "Terry Bozzio, Tony Levin & Steve Stevens" - } - }, - "209": { - "tracks": { - "2572": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Midnight From The Inside Out" - }, - "2573": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Sting Me" - }, - "2574": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Thick & Thin" - }, - "2575": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Greasy Grass River" - }, - "2576": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Sometimes Salvation" - }, - "2577": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Cursed Diamonds" - }, - "2578": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Miracle To Me" - }, - "2579": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Wiser Time" - }, - "2580": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Girl From A Pawnshop" - }, - "2581": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Cosmic Fiend" - } - }, - "Title": "Live [Disc 1]", - "artist": { - "ArtistId": 137, - "Name": "The Black Crowes" - } - }, - "210": { - "tracks": { - "2582": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Black Moon Creeping" - }, - "2583": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "High Head Blues" - }, - "2584": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Title Song" - }, - "2585": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "She Talks To Angels" - }, - "2586": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Twice As Hard" - }, - "2587": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Lickin'" - }, - "2588": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Soul Singing" - }, - "2589": { - "Composer": "A.Isbell/A.Jones/O.Redding", - "Name": "Hard To Handle" - }, - "2590": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Remedy" - } - }, - "Title": "Live [Disc 2]", - "artist": { - "ArtistId": 137, - "Name": "The Black Crowes" - } - }, - "211": { - "tracks": { - "2591": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "White Riot" - }, - "2592": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Remote Control" - }, - "2593": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Complete Control" - }, - "2594": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Clash City Rockers" - }, - "2595": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "(White Man) In Hammersmith Palais" - }, - "2596": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Tommy Gun" - }, - "2597": { - "Composer": "Mick Jones/Traditional arr. Joe Strummer", - "Name": "English Civil War" - }, - "2598": { - "Composer": "Sonny Curtis", - "Name": "I Fought The Law" - }, - "2599": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "London Calling" - }, - "2600": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Train In Vain" - }, - "2601": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Bankrobber" - }, - "2602": { - "Composer": "The Clash", - "Name": "The Call Up" - }, - "2603": { - "Composer": "The Clash", - "Name": "Hitsville UK" - }, - "2604": { - "Composer": "The Clash", - "Name": "The Magnificent Seven" - }, - "2605": { - "Composer": "The Clash", - "Name": "This Is Radio Clash" - }, - "2606": { - "Composer": "The Clash", - "Name": "Know Your Rights" - }, - "2607": { - "Composer": "The Clash", - "Name": "Rock The Casbah" - }, - "2608": { - "Composer": "The Clash", - "Name": "Should I Stay Or Should I Go" - } - }, - "Title": "The Singles", - "artist": { - "ArtistId": 138, - "Name": "The Clash" - } - }, - "212": { - "tracks": { - "2609": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "War (The Process)" - }, - "2610": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "The Saint" - }, - "2611": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Rise" - }, - "2612": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Take The Power" - }, - "2613": { - "Composer": "Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones", - "Name": "Breathe" - }, - "2614": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Nico" - }, - "2615": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "American Gothic" - }, - "2616": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Name": "Ashes And Ghosts" - }, - "2617": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Shape The Sky" - }, - "2618": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Name": "Speed Of Light" - }, - "2619": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "True Believers" - }, - "2620": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "My Bridges Burn" - } - }, - "Title": "Beyond Good And Evil", - "artist": { - "ArtistId": 139, - "Name": "The Cult" - } - }, - "213": { - "tracks": { - "2621": { - "Composer": null, - "Name": "She Sells Sanctuary" - }, - "2622": { - "Composer": null, - "Name": "Fire Woman" - }, - "2623": { - "Composer": null, - "Name": "Lil' Evil" - }, - "2624": { - "Composer": null, - "Name": "Spirit Walker" - }, - "2625": { - "Composer": null, - "Name": "The Witch" - }, - "2626": { - "Composer": null, - "Name": "Revolution" - }, - "2627": { - "Composer": null, - "Name": "Wild Hearted Son" - }, - "2628": { - "Composer": null, - "Name": "Love Removal Machine" - }, - "2629": { - "Composer": null, - "Name": "Rain" - }, - "2630": { - "Composer": null, - "Name": "Edie (Ciao Baby)" - }, - "2631": { - "Composer": null, - "Name": "Heart Of Soul" - }, - "2632": { - "Composer": null, - "Name": "Love" - }, - "2633": { - "Composer": null, - "Name": "Wild Flower" - }, - "2634": { - "Composer": null, - "Name": "Go West" - }, - "2635": { - "Composer": null, - "Name": "Resurrection Joe" - }, - "2636": { - "Composer": null, - "Name": "Sun King" - }, - "2637": { - "Composer": null, - "Name": "Sweet Soul Sister" - }, - "2638": { - "Composer": null, - "Name": "Earth Mofo" - } - }, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]", - "artist": { - "ArtistId": 139, - "Name": "The Cult" - } - }, - "214": { - "tracks": { - "2639": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Break on Through" - }, - "2640": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Soul Kitchen" - }, - "2641": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "The Crystal Ship" - }, - "2642": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Twentienth Century Fox" - }, - "2643": { - "Composer": "Weill-Brecht", - "Name": "Alabama Song" - }, - "2644": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Light My Fire" - }, - "2645": { - "Composer": "Willie Dixon, C. Burnett", - "Name": "Back Door Man" - }, - "2646": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "I Looked At You" - }, - "2647": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "End Of The Night" - }, - "2648": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Take It As It Comes" - }, - "2649": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "The End" - } - }, - "Title": "The Doors", - "artist": { - "ArtistId": 140, - "Name": "The Doors" - } - }, - "215": { - "tracks": { - "2650": { - "Composer": "G M Sumner", - "Name": "Roxanne" - }, - "2651": { - "Composer": "G M Sumner", - "Name": "Can't Stand Losing You" - }, - "2652": { - "Composer": "G M Sumner", - "Name": "Message in a Bottle" - }, - "2653": { - "Composer": "G M Sumner", - "Name": "Walking on the Moon" - }, - "2654": { - "Composer": "G M Sumner", - "Name": "Don't Stand so Close to Me" - }, - "2655": { - "Composer": "G M Sumner", - "Name": "De Do Do Do, De Da Da Da" - }, - "2656": { - "Composer": "G M Sumner", - "Name": "Every Little Thing She Does is Magic" - }, - "2657": { - "Composer": "G M Sumner", - "Name": "Invisible Sun" - }, - "2658": { - "Composer": "G M Sumner", - "Name": "Spirit's in the Material World" - }, - "2659": { - "Composer": "G M Sumner", - "Name": "Every Breath You Take" - }, - "2660": { - "Composer": "G M Sumner", - "Name": "King Of Pain" - }, - "2661": { - "Composer": "G M Sumner", - "Name": "Wrapped Around Your Finger" - }, - "2662": { - "Composer": "G M Sumner", - "Name": "Don't Stand So Close to Me '86" - }, - "2663": { - "Composer": "G M Sumner", - "Name": "Message in a Bottle (new classic rock mix)" - } - }, - "Title": "The Police Greatest Hits", - "artist": { - "ArtistId": 141, - "Name": "The Police" - } - }, - "216": { - "tracks": { - "2664": { - "Composer": "Jerry Ragavoy", - "Name": "Time Is On My Side" - }, - "2665": { - "Composer": "Jagger/Richards", - "Name": "Heart Of Stone" - }, - "2666": { - "Composer": "Nanker Phelge", - "Name": "Play With Fire" - }, - "2667": { - "Composer": "Jagger/Richards", - "Name": "Satisfaction" - }, - "2668": { - "Composer": "Jagger/Richards/Oldham", - "Name": "As Tears Go By" - }, - "2669": { - "Composer": "Jagger/Richards", - "Name": "Get Off Of My Cloud" - }, - "2670": { - "Composer": "Jagger/Richards", - "Name": "Mother's Little Helper" - }, - "2671": { - "Composer": "Jagger/Richards", - "Name": "19th Nervous Breakdown" - }, - "2672": { - "Composer": "Jagger/Richards", - "Name": "Paint It Black" - }, - "2673": { - "Composer": "Jagger/Richards", - "Name": "Under My Thumb" - }, - "2674": { - "Composer": "Jagger/Richards", - "Name": "Ruby Tuesday" - }, - "2675": { - "Composer": "Jagger/Richards", - "Name": "Let's Spend The Night Together" - } - }, - "Title": "Hot Rocks, 1964-1971 (Disc 1)", - "artist": { - "ArtistId": 142, - "Name": "The Rolling Stones" - } - }, - "217": { - "tracks": { - "2676": { - "Composer": "Jagger/Richards", - "Name": "Intro" - }, - "2677": { - "Composer": "Jagger/Richards", - "Name": "You Got Me Rocking" - }, - "2678": { - "Composer": "Jagger/Richards", - "Name": "Gimmie Shelters" - }, - "2679": { - "Composer": "Jagger/Richards", - "Name": "Flip The Switch" - }, - "2680": { - "Composer": "Jagger/Richards", - "Name": "Memory Motel" - }, - "2681": { - "Composer": "Jesse Ed Davis III/Taj Mahal", - "Name": "Corinna" - }, - "2682": { - "Composer": "Jagger/Richards", - "Name": "Saint Of Me" - }, - "2683": { - "Composer": "Jagger/Richards", - "Name": "Wainting On A Friend" - }, - "2684": { - "Composer": "Faithfull/Jagger/Richards", - "Name": "Sister Morphine" - }, - "2685": { - "Composer": "Jagger/Richards", - "Name": "Live With Me" - }, - "2686": { - "Composer": "Jagger/Richards", - "Name": "Respectable" - }, - "2687": { - "Composer": "De Beauport/Jagger/Richards", - "Name": "Thief In The Night" - }, - "2688": { - "Composer": "Jagger/Richards", - "Name": "The Last Time" - }, - "2689": { - "Composer": "Jagger/Richards", - "Name": "Out Of Control" - } - }, - "Title": "No Security", - "artist": { - "ArtistId": 142, - "Name": "The Rolling Stones" - } - }, - "218": { - "tracks": { - "2690": { - "Composer": "Jagger/Richards", - "Name": "Love Is Strong" - }, - "2691": { - "Composer": "Jagger/Richards", - "Name": "You Got Me Rocking" - }, - "2692": { - "Composer": "Jagger/Richards", - "Name": "Sparks Will Fly" - }, - "2693": { - "Composer": "Jagger/Richards", - "Name": "The Worst" - }, - "2694": { - "Composer": "Jagger/Richards", - "Name": "New Faces" - }, - "2695": { - "Composer": "Jagger/Richards", - "Name": "Moon Is Up" - }, - "2696": { - "Composer": "Jagger/Richards", - "Name": "Out Of Tears" - }, - "2697": { - "Composer": "Jagger/Richards", - "Name": "I Go Wild" - }, - "2698": { - "Composer": "Jagger/Richards", - "Name": "Brand New Car" - }, - "2699": { - "Composer": "Jagger/Richards", - "Name": "Sweethearts Together" - }, - "2700": { - "Composer": "Jagger/Richards", - "Name": "Suck On The Jugular" - }, - "2701": { - "Composer": "Jagger/Richards", - "Name": "Blinded By Rainbows" - }, - "2702": { - "Composer": "Jagger/Richards", - "Name": "Baby Break It Down" - }, - "2703": { - "Composer": "Jagger/Richards", - "Name": "Thru And Thru" - }, - "2704": { - "Composer": "Jagger/Richards", - "Name": "Mean Disposition" - } - }, - "Title": "Voodoo Lounge", - "artist": { - "ArtistId": 142, - "Name": "The Rolling Stones" - } - }, - "219": { - "tracks": { - "2705": { - "Composer": "The Tea Party", - "Name": "Walking Wounded" - }, - "2706": { - "Composer": "The Tea Party", - "Name": "Temptation" - }, - "2707": { - "Composer": "Daniel Lanois", - "Name": "The Messenger" - }, - "2708": { - "Composer": "The Tea Party", - "Name": "Psychopomp" - }, - "2709": { - "Composer": "The Tea Party", - "Name": "Sister Awake" - }, - "2710": { - "Composer": "The Tea Party", - "Name": "The Bazaar" - }, - "2711": { - "Composer": "The Tea Party", - "Name": "Save Me (Remix)" - }, - "2712": { - "Composer": "The Tea Party", - "Name": "Fire In The Head" - }, - "2713": { - "Composer": "The Tea Party", - "Name": "Release" - }, - "2714": { - "Composer": "The Tea Party", - "Name": "Heaven Coming Down" - }, - "2715": { - "Composer": "The Tea Party", - "Name": "The River (Remix)" - }, - "2716": { - "Composer": "The Tea Party", - "Name": "Babylon" - }, - "2717": { - "Composer": "The Tea Party", - "Name": "Waiting On A Sign" - }, - "2718": { - "Composer": "The Tea Party", - "Name": "Life Line" - }, - "2719": { - "Composer": "Keith Richards/Mick Jagger", - "Name": "Paint It Black" - } - }, - "Title": "Tangents", - "artist": { - "ArtistId": 143, - "Name": "The Tea Party" - } - }, - "220": { - "tracks": { - "2720": { - "Composer": "The Tea Party", - "Name": "Temptation" - }, - "2721": { - "Composer": "The Tea Party", - "Name": "Army Ants" - }, - "2722": { - "Composer": "The Tea Party", - "Name": "Psychopomp" - }, - "2723": { - "Composer": "The Tea Party", - "Name": "Gyroscope" - }, - "2724": { - "Composer": "The Tea Party", - "Name": "Alarum" - }, - "2725": { - "Composer": "The Tea Party", - "Name": "Release" - }, - "2726": { - "Composer": "The Tea Party", - "Name": "Transmission" - }, - "2727": { - "Composer": "The Tea Party", - "Name": "Babylon" - }, - "2728": { - "Composer": "The Tea Party", - "Name": "Pulse" - }, - "2729": { - "Composer": "The Tea Party", - "Name": "Emerald" - }, - "2730": { - "Composer": "The Tea Party", - "Name": "Aftermath" - } - }, - "Title": "Transmission", - "artist": { - "ArtistId": 143, - "Name": "The Tea Party" - } - }, - "221": { - "tracks": { - "2731": { - "Composer": "Pete Townshend", - "Name": "I Can't Explain" - }, - "2732": { - "Composer": "Pete Townshend, Roger Daltrey", - "Name": "Anyway, Anyhow, Anywhere" - }, - "2733": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "My Generation" - }, - "2734": { - "Composer": "Pete Townshend", - "Name": "Substitute" - }, - "2735": { - "Composer": "Pete Townshend", - "Name": "I'm A Boy" - }, - "2736": { - "Composer": "John Entwistle", - "Name": "Boris The Spider" - }, - "2737": { - "Composer": "Pete Townshend", - "Name": "Happy Jack" - }, - "2738": { - "Composer": "Pete Townshend", - "Name": "Pictures Of Lily" - }, - "2739": { - "Composer": "Pete Townshend", - "Name": "I Can See For Miles" - }, - "2740": { - "Composer": "Pete Townshend", - "Name": "Magic Bus" - }, - "2741": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Pinball Wizard" - }, - "2742": { - "Composer": "Pete Townshend", - "Name": "The Seeker" - }, - "2743": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Baba O'Riley" - }, - "2744": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Won't Get Fooled Again (Full Length Version)" - }, - "2745": { - "Composer": "Pete Townshend", - "Name": "Let's See Action" - }, - "2746": { - "Composer": "Pete Townshend", - "Name": "5.15" - }, - "2747": { - "Composer": "Pete Townshend", - "Name": "Join Together" - }, - "2748": { - "Composer": "Pete Townshend", - "Name": "Squeeze Box" - }, - "2749": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Who Are You (Single Edit Version)" - }, - "2750": { - "Composer": "Pete Townshend", - "Name": "You Better You Bet" - } - }, - "Title": "My Generation - The Very Best Of The Who", - "artist": { - "ArtistId": 144, - "Name": "The Who" - } - }, - "222": { - "tracks": { - "2751": { - "Composer": "Genival Cassiano/Silvio Rochael", - "Name": "Primavera" - }, - "2752": { - "Composer": "Tim Maia", - "Name": "Chocolate" - }, - "2753": { - "Composer": "Tim Maia", - "Name": "Azul Da Cor Do Mar" - }, - "2757": { - "Composer": "Tim Maia", - "Name": "New Love" - }, - "2763": { - "Composer": "Tim Maia", - "Name": "Compadre" - }, - "2764": { - "Composer": "Tim Maia", - "Name": "Over Again" - } - }, - "Title": "Serie Sem Limite (Disc 1)", - "artist": { - "ArtistId": 145, - "Name": "Tim Maia" - } - }, - "223": { - "tracks": { - "2766": { - "Composer": null, - "Name": "O Que Me Importa" - }, - "2771": { - "Composer": null, - "Name": "A Festa Do Santo Reis" - }, - "2772": { - "Composer": null, - "Name": "I Don't Know What To Do With Myself" - }, - "2774": { - "Composer": null, - "Name": "Nosso Adeus" - }, - "2776": { - "Composer": null, - "Name": "Preciso Ser Amado" - }, - "2780": { - "Composer": null, - "Name": "Formigueiro" - } - }, - "Title": "Serie Sem Limite (Disc 2)", - "artist": { - "ArtistId": 145, - "Name": "Tim Maia" - } - }, - "226": { - "tracks": { - "2819": { - "Composer": null, - "Name": "Battlestar Galactica: The Story So Far" - } - }, - "Title": "Battlestar Galactica: The Story So Far", - "artist": { - "ArtistId": 147, - "Name": "Battlestar Galactica" - } - }, - "227": { - "tracks": { - "2820": { - "Composer": null, - "Name": "Occupation / Precipice" - }, - "2821": { - "Composer": null, - "Name": "Exodus, Pt. 1" - }, - "2822": { - "Composer": null, - "Name": "Exodus, Pt. 2" - }, - "2823": { - "Composer": null, - "Name": "Collaborators" - }, - "2824": { - "Composer": null, - "Name": "Torn" - }, - "2825": { - "Composer": null, - "Name": "A Measure of Salvation" - }, - "2826": { - "Composer": null, - "Name": "Hero" - }, - "2827": { - "Composer": null, - "Name": "Unfinished Business" - }, - "2828": { - "Composer": null, - "Name": "The Passage" - }, - "2829": { - "Composer": null, - "Name": "The Eye of Jupiter" - }, - "2830": { - "Composer": null, - "Name": "Rapture" - }, - "2831": { - "Composer": null, - "Name": "Taking a Break from All Your Worries" - }, - "2832": { - "Composer": null, - "Name": "The Woman King" - }, - "2833": { - "Composer": null, - "Name": "A Day In the Life" - }, - "2834": { - "Composer": null, - "Name": "Dirty Hands" - }, - "2835": { - "Composer": null, - "Name": "Maelstrom" - }, - "2836": { - "Composer": null, - "Name": "The Son Also Rises" - }, - "2837": { - "Composer": null, - "Name": "Crossroads, Pt. 1" - }, - "2838": { - "Composer": null, - "Name": "Crossroads, Pt. 2" - } - }, - "Title": "Battlestar Galactica, Season 3", - "artist": { - "ArtistId": 147, - "Name": "Battlestar Galactica" - } - }, - "228": { - "tracks": { - "2839": { - "Composer": null, - "Name": "Genesis" - }, - "2840": { - "Composer": null, - "Name": "Don't Look Back" - }, - "2841": { - "Composer": null, - "Name": "One Giant Leap" - }, - "2842": { - "Composer": null, - "Name": "Collision" - }, - "2843": { - "Composer": null, - "Name": "Hiros" - }, - "2844": { - "Composer": null, - "Name": "Better Halves" - }, - "2845": { - "Composer": null, - "Name": "Nothing to Hide" - }, - "2846": { - "Composer": null, - "Name": "Seven Minutes to Midnight" - }, - "2847": { - "Composer": null, - "Name": "Homecoming" - }, - "2848": { - "Composer": null, - "Name": "Six Months Ago" - }, - "2849": { - "Composer": null, - "Name": "Fallout" - }, - "2850": { - "Composer": null, - "Name": "The Fix" - }, - "2851": { - "Composer": null, - "Name": "Distractions" - }, - "2852": { - "Composer": null, - "Name": "Run!" - }, - "2853": { - "Composer": null, - "Name": "Unexpected" - }, - "2854": { - "Composer": null, - "Name": "Company Man" - }, - "2855": { - "Composer": null, - "Name": "Company Man" - }, - "2856": { - "Composer": null, - "Name": "Parasite" - }, - "3166": { - "Composer": null, - "Name": ".07%" - }, - "3167": { - "Composer": null, - "Name": "Five Years Gone" - }, - "3168": { - "Composer": null, - "Name": "The Hard Part" - }, - "3171": { - "Composer": null, - "Name": "Landslide" - }, - "3223": { - "Composer": null, - "Name": "How to Stop an Exploding Man" - } - }, - "Title": "Heroes, Season 1", - "artist": { - "ArtistId": 148, - "Name": "Heroes" - } - }, - "229": { - "tracks": { - "2857": { - "Composer": null, - "Name": "A Tale of Two Cities" - }, - "2862": { - "Composer": null, - "Name": "The Glass Ballerina" - }, - "2863": { - "Composer": null, - "Name": "Further Instructions" - }, - "2866": { - "Composer": null, - "Name": "Every Man for Himself" - }, - "2870": { - "Composer": null, - "Name": "The Cost of Living" - }, - "2874": { - "Composer": null, - "Name": "I Do" - }, - "2875": { - "Composer": null, - "Name": "Not In Portland" - }, - "2876": { - "Composer": null, - "Name": "Not In Portland" - }, - "2881": { - "Composer": null, - "Name": "Flashes Before Your Eyes" - }, - "2882": { - "Composer": null, - "Name": "Lost Survival Guide" - }, - "2886": { - "Composer": null, - "Name": "Stranger In a Strange Land" - }, - "2890": { - "Composer": null, - "Name": "Tricia Tanaka Is Dead" - }, - "2891": { - "Composer": null, - "Name": "Enter 77" - }, - "2895": { - "Composer": null, - "Name": "Par Avion" - }, - "2899": { - "Composer": null, - "Name": "The Man from Tallahassee" - }, - "2903": { - "Composer": null, - "Name": "Left Behind" - }, - "2908": { - "Composer": null, - "Name": "One of Us" - }, - "2909": { - "Composer": null, - "Name": "Catch-22" - }, - "2912": { - "Composer": null, - "Name": "D.O.C." - }, - "3165": { - "Composer": null, - "Name": "The Brig" - }, - "3169": { - "Composer": null, - "Name": "The Man Behind the Curtain" - }, - "3170": { - "Composer": null, - "Name": "Greatest Hits" - }, - "3224": { - "Composer": null, - "Name": "Through a Looking Glass" - }, - "3251": { - "Composer": null, - "Name": "Through the Looking Glass, Pt. 2" - }, - "3252": { - "Composer": null, - "Name": "Through the Looking Glass, Pt. 1" - } - }, - "Title": "Lost, Season 3", - "artist": { - "ArtistId": 149, - "Name": "Lost" - } - }, - "230": { - "tracks": { - "2858": { - "Composer": null, - "Name": "Lost (Pilot, Part 1) [Premiere]" - }, - "2861": { - "Composer": null, - "Name": "Lost (Pilot, Part 2)" - }, - "2865": { - "Composer": null, - "Name": "Tabula Rasa" - }, - "2868": { - "Composer": null, - "Name": "Walkabout" - }, - "2871": { - "Composer": null, - "Name": "White Rabbit" - }, - "2873": { - "Composer": null, - "Name": "House of the Rising Sun" - }, - "2877": { - "Composer": null, - "Name": "The Moth" - }, - "2880": { - "Composer": null, - "Name": "Confidence Man" - }, - "2883": { - "Composer": null, - "Name": "Solitary" - }, - "2885": { - "Composer": null, - "Name": "Raised By Another" - }, - "2888": { - "Composer": null, - "Name": "All the Best Cowboys Have Daddy Issues" - }, - "2893": { - "Composer": null, - "Name": "Whatever the Case May Be" - }, - "2894": { - "Composer": null, - "Name": "Hearts and Minds" - }, - "2898": { - "Composer": null, - "Name": "Special" - }, - "2901": { - "Composer": null, - "Name": "Homecoming" - }, - "2904": { - "Composer": null, - "Name": "Outlaws" - }, - "2906": { - "Composer": null, - "Name": "...In Translation" - }, - "2911": { - "Composer": null, - "Name": "Numbers" - }, - "2913": { - "Composer": null, - "Name": "Deus Ex Machina" - }, - "2915": { - "Composer": null, - "Name": "Do No Harm" - }, - "2917": { - "Composer": null, - "Name": "The Greater Good" - }, - "2919": { - "Composer": null, - "Name": "Born to Run" - }, - "2921": { - "Composer": null, - "Name": "Exodus (Part 1)" - }, - "2923": { - "Composer": null, - "Name": "Exodus (Part 2) [Season Finale]" - }, - "2925": { - "Composer": null, - "Name": "Exodus (Part 3) [Season Finale]" - } - }, - "Title": "Lost, Season 1", - "artist": { - "ArtistId": 149, - "Name": "Lost" - } - }, - "231": { - "tracks": { - "2859": { - "Composer": null, - "Name": "Man of Science, Man of Faith (Premiere)" - }, - "2860": { - "Composer": null, - "Name": "Adrift" - }, - "2864": { - "Composer": null, - "Name": "Orientation" - }, - "2867": { - "Composer": null, - "Name": "Everybody Hates Hugo" - }, - "2869": { - "Composer": null, - "Name": "...And Found" - }, - "2872": { - "Composer": null, - "Name": "Abandoned" - }, - "2878": { - "Composer": null, - "Name": "The Other 48 Days" - }, - "2879": { - "Composer": null, - "Name": "Collision" - }, - "2884": { - "Composer": null, - "Name": "What Kate Did" - }, - "2887": { - "Composer": null, - "Name": "The 23rd Psalm" - }, - "2889": { - "Composer": null, - "Name": "The Hunting Party" - }, - "2892": { - "Composer": null, - "Name": "Fire + Water" - }, - "2896": { - "Composer": null, - "Name": "The Long Con" - }, - "2897": { - "Composer": null, - "Name": "One of Them" - }, - "2902": { - "Composer": null, - "Name": "Maternity Leave" - }, - "2905": { - "Composer": null, - "Name": "The Whole Truth" - }, - "2907": { - "Composer": null, - "Name": "Lockdown" - }, - "2910": { - "Composer": null, - "Name": "Dave" - }, - "2914": { - "Composer": null, - "Name": "S.O.S." - }, - "2916": { - "Composer": null, - "Name": "Two for the Road" - }, - "2918": { - "Composer": null, - "Name": "\"?\"" - }, - "2920": { - "Composer": null, - "Name": "Three Minutes" - }, - "2922": { - "Composer": null, - "Name": "Live Together, Die Alone, Pt. 1" - }, - "2924": { - "Composer": null, - "Name": "Live Together, Die Alone, Pt. 2" - } - }, - "Title": "Lost, Season 2", - "artist": { - "ArtistId": 149, - "Name": "Lost" - } - }, - "232": { - "tracks": { - "2926": { - "Composer": "U2", - "Name": "Zoo Station" - }, - "2927": { - "Composer": "U2", - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Composer": "U2", - "Name": "One" - }, - "2929": { - "Composer": "U2", - "Name": "Until The End Of The World" - }, - "2930": { - "Composer": "U2", - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Composer": "U2", - "Name": "So Cruel" - }, - "2932": { - "Composer": "U2", - "Name": "The Fly" - }, - "2933": { - "Composer": "U2", - "Name": "Mysterious Ways" - }, - "2934": { - "Composer": "U2", - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Composer": "U2", - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Composer": "U2", - "Name": "Acrobat" - }, - "2937": { - "Composer": "U2", - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "233": { - "tracks": { - "2938": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Beautiful Day" - }, - "2939": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Elevation" - }, - "2941": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Walk On" - }, - "2942": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Kite" - }, - "2943": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "In A Little While" - }, - "2944": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Wild Honey" - }, - "2945": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Peace On Earth" - }, - "2946": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "When I Look At The World" - }, - "2947": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "New York" - }, - "2948": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "234": { - "tracks": { - "2949": { - "Composer": "U2", - "Name": "The Three Sunrises" - }, - "2950": { - "Composer": "U2", - "Name": "Spanish Eyes" - }, - "2951": { - "Composer": "U2", - "Name": "Sweetest Thing" - }, - "2952": { - "Composer": "U2", - "Name": "Love Comes Tumbling" - }, - "2953": { - "Composer": "U2", - "Name": "Bass Trap" - }, - "2954": { - "Composer": "Ivan Kral/Patti Smith", - "Name": "Dancing Barefoot" - }, - "2955": { - "Composer": "Buzz Cason/Mac Gayden", - "Name": "Everlasting Love" - }, - "2956": { - "Composer": "Alex North/Hy Zaret", - "Name": "Unchained Melody" - }, - "2957": { - "Composer": "U2", - "Name": "Walk To The Water" - }, - "2958": { - "Composer": "Brian Eno/U2", - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Composer": "U2", - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Composer": "Bono", - "Name": "Silver And Gold" - }, - "2961": { - "Composer": "U2", - "Name": "Endless Deep" - }, - "2962": { - "Composer": "U2", - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Composer": "U2", - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "235": { - "tracks": { - "2964": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Vertigo" - }, - "2965": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Miracle Drug" - }, - "2966": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Love And Peace Or Else" - }, - "2968": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "City Of Blinding Lights" - }, - "2969": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "All Because Of You" - }, - "2970": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "A Man And A Woman" - }, - "2971": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Crumbs From Your Table" - }, - "2972": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "One Step Closer" - }, - "2973": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Original Of The Species" - }, - "2974": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "236": { - "tracks": { - "2975": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Discotheque" - }, - "2976": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Do You Feel Loved" - }, - "2977": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Mofo" - }, - "2978": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "If God Will Send His Angels" - }, - "2979": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Staring At The Sun" - }, - "2980": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Last Night On Earth" - }, - "2981": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Gone" - }, - "2982": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Miami" - }, - "2983": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "The Playboy Mansion" - }, - "2984": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Please" - }, - "2986": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "237": { - "tracks": { - "2987": { - "Composer": "Lennon, John/McCartney, Paul", - "Name": "Helter Skelter" - }, - "2988": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Van Diemen's Land" - }, - "2989": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Desire" - }, - "2990": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Hawkmoon 269" - }, - "2991": { - "Composer": "Dylan, Bob", - "Name": "All Along The Watchtower" - }, - "2992": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Composer": "Mabins, Macie/Magee, Sterling/Robinson, Bobby", - "Name": "Freedom For My People" - }, - "2994": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Silver And Gold" - }, - "2995": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Angel Of Harlem" - }, - "2997": { - "Composer": "Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge", - "Name": "Love Rescue Me" - }, - "2998": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "When Love Comes To Town" - }, - "2999": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Heartland" - }, - "3000": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "God Part II" - }, - "3001": { - "Composer": "Hendrix, Jimi", - "Name": "The Star Spangled Banner" - }, - "3002": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "238": { - "tracks": { - "3004": { - "Composer": "U2", - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Composer": "U2", - "Name": "New Year's Day" - }, - "3006": { - "Composer": "U2", - "Name": "With Or Without You" - }, - "3007": { - "Composer": "U2", - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Composer": "U2", - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Composer": "U2", - "Name": "Bad" - }, - "3010": { - "Composer": "U2", - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Composer": "U2", - "Name": "I Will Follow" - }, - "3012": { - "Composer": "U2", - "Name": "The Unforgettable Fire" - }, - "3013": { - "Composer": "U2 & Daragh O'Toole", - "Name": "Sweetest Thing" - }, - "3014": { - "Composer": "U2", - "Name": "Desire" - }, - "3015": { - "Composer": "U2", - "Name": "When Love Comes To Town" - }, - "3016": { - "Composer": "U2", - "Name": "Angel Of Harlem" - }, - "3017": { - "Composer": "U2 & Van Dyke Parks", - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "239": { - "tracks": { - "3018": { - "Composer": "U2", - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Composer": "U2", - "Name": "Seconds" - }, - "3020": { - "Composer": "U2", - "Name": "New Year's Day" - }, - "3021": { - "Composer": "U2", - "Name": "Like A Song..." - }, - "3022": { - "Composer": "U2", - "Name": "Drowning Man" - }, - "3023": { - "Composer": "U2", - "Name": "The Refugee" - }, - "3024": { - "Composer": "U2", - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Composer": "U2", - "Name": "Red Light" - }, - "3026": { - "Composer": "U2", - "Name": "Surrender" - }, - "3027": { - "Composer": "U2", - "Name": "\"40\"" - } - }, - "Title": "War", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "240": { - "tracks": { - "3028": { - "Composer": "U2; Bono", - "Name": "Zooropa" - }, - "3029": { - "Composer": "U2; Bono", - "Name": "Babyface" - }, - "3030": { - "Composer": "U2; Edge, The", - "Name": "Numb" - }, - "3031": { - "Composer": "U2; Bono", - "Name": "Lemon" - }, - "3032": { - "Composer": "U2; Bono", - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Composer": "U2; Bono", - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Composer": "U2; Bono", - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Composer": "U2; Bono", - "Name": "The First Time" - }, - "3036": { - "Composer": "U2; Bono & Edge, The", - "Name": "Dirty Day" - }, - "3037": { - "Composer": "U2; Bono", - "Name": "The Wanderer" - } - }, - "Title": "Zooropa", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "241": { - "tracks": { - "3038": { - "Composer": null, - "Name": "Breakfast In Bed" - }, - "3039": { - "Composer": null, - "Name": "Where Did I Go Wrong" - }, - "3040": { - "Composer": null, - "Name": "I Would Do For You" - }, - "3041": { - "Composer": null, - "Name": "Homely Girl" - }, - "3042": { - "Composer": null, - "Name": "Here I Am (Come And Take Me)" - }, - "3043": { - "Composer": null, - "Name": "Kingston Town" - }, - "3044": { - "Composer": null, - "Name": "Wear You To The Ball" - }, - "3045": { - "Composer": null, - "Name": "(I Can't Help) Falling In Love With You" - }, - "3046": { - "Composer": null, - "Name": "Higher Ground" - }, - "3047": { - "Composer": null, - "Name": "Bring Me Your Cup" - }, - "3048": { - "Composer": null, - "Name": "C'est La Vie" - }, - "3049": { - "Composer": null, - "Name": "Reggae Music" - }, - "3050": { - "Composer": null, - "Name": "Superstition" - }, - "3051": { - "Composer": null, - "Name": "Until My Dying Day" - } - }, - "Title": "UB40 The Best Of - Volume Two [UK]", - "artist": { - "ArtistId": 151, - "Name": "UB40" - } - }, - "242": { - "tracks": { - "3052": { - "Composer": "Ray Davies", - "Name": "Where Have All The Good Times Gone?" - }, - "3053": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Hang 'Em High" - }, - "3054": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Cathedral" - }, - "3055": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Secrets" - }, - "3056": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Intruder" - }, - "3057": { - "Composer": "Bill Dees/Roy Orbison", - "Name": "(Oh) Pretty Woman" - }, - "3058": { - "Composer": "Ivy Jo Hunter/Marvin Gaye/William Stevenson", - "Name": "Dancing In The Street" - }, - "3059": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Little Guitars (Intro)" - }, - "3060": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Little Guitars" - }, - "3061": { - "Composer": "Jack Yellen/Milton Ager", - "Name": "Big Bad Bill (Is Sweet William Now)" - }, - "3062": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "The Full Bug" - }, - "3063": { - "Composer": "Dale Evans", - "Name": "Happy Trails" - } - }, - "Title": "Diver Down", - "artist": { - "ArtistId": 152, - "Name": "Van Halen" - } - }, - "243": { - "tracks": { - "3064": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Eruption" - }, - "3065": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Ain't Talkin' 'bout Love" - }, - "3066": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Runnin' With The Devil" - }, - "3067": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Dance the Night Away" - }, - "3068": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "And the Cradle Will Rock..." - }, - "3069": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Unchained" - }, - "3070": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Name": "Jump" - }, - "3071": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Name": "Panama" - }, - "3072": { - "Composer": "Van Halen", - "Name": "Why Can't This Be Love" - }, - "3073": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "Dreams" - }, - "3074": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "When It's Love" - }, - "3075": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "Poundcake" - }, - "3076": { - "Composer": "Van Halen", - "Name": "Right Now" - }, - "3077": { - "Composer": "Van Halen", - "Name": "Can't Stop Loving You" - }, - "3078": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "Humans Being" - }, - "3079": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Name": "Can't Get This Stuff No More" - }, - "3080": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Name": "Me Wise Magic" - } - }, - "Title": "The Best Of Van Halen, Vol. I", - "artist": { - "ArtistId": 152, - "Name": "Van Halen" - } - }, - "244": { - "tracks": { - "3081": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Runnin' With The Devil" - }, - "3082": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Eruption" - }, - "3083": { - "Composer": "Ray Davies", - "Name": "You Really Got Me" - }, - "3084": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Ain't Talkin' 'Bout Love" - }, - "3085": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "I'm The One" - }, - "3086": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Jamie's Cryin'" - }, - "3087": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Atomic Punk" - }, - "3088": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Feel Your Love Tonight" - }, - "3089": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Little Dreamer" - }, - "3090": { - "Composer": "John Brim", - "Name": "Ice Cream Man" - }, - "3091": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "On Fire" - } - }, - "Title": "Van Halen", - "artist": { - "ArtistId": 152, - "Name": "Van Halen" - } - }, - "245": { - "tracks": { - "3092": { - "Composer": "Van Halen", - "Name": "Neworld" - }, - "3093": { - "Composer": "Van Halen", - "Name": "Without You" - }, - "3094": { - "Composer": "Van Halen", - "Name": "One I Want" - }, - "3095": { - "Composer": "Van Halen", - "Name": "From Afar" - }, - "3096": { - "Composer": "Van Halen", - "Name": "Dirty Water Dog" - }, - "3097": { - "Composer": "Van Halen", - "Name": "Once" - }, - "3098": { - "Composer": "Van Halen", - "Name": "Fire in the Hole" - }, - "3099": { - "Composer": "Van Halen", - "Name": "Josephina" - }, - "3100": { - "Composer": "Van Halen", - "Name": "Year to the Day" - }, - "3101": { - "Composer": "Van Halen", - "Name": "Primary" - }, - "3102": { - "Composer": "Van Halen", - "Name": "Ballot or the Bullet" - }, - "3103": { - "Composer": "Van Halen", - "Name": "How Many Say I" - } - }, - "Title": "Van Halen III", - "artist": { - "ArtistId": 152, - "Name": "Van Halen" - } - }, - "246": { - "tracks": { - "3104": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Sucker Train Blues" - }, - "3105": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Do It For The Kids" - }, - "3106": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Big Machine" - }, - "3107": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Illegal I Song" - }, - "3108": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Spectacle" - }, - "3109": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Fall To Pieces" - }, - "3110": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Headspace" - }, - "3111": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Superhuman" - }, - "3112": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Set Me Free" - }, - "3113": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "You Got No Right" - }, - "3114": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Slither" - }, - "3115": { - "Composer": "Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash", - "Name": "Dirty Little Thing" - }, - "3116": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Loving The Alien" - } - }, - "Title": "Contraband", - "artist": { - "ArtistId": 153, - "Name": "Velvet Revolver" - } - }, - "248": { - "tracks": { - "3149": { - "Composer": "Alcides Dias Lopes", - "Name": "Vivo Isolado Do Mundo" - }, - "3153": { - "Composer": "Augusto Garcez/Nelson Cavaquinho", - "Name": "Rugas" - }, - "3155": { - "Composer": "Aldir Blanc/Jayme Vignoli", - "Name": "Sem Essa de Malandro Agulha" - }, - "3158": { - "Composer": "Acyr Marques/Arlindo Cruz/Franco", - "Name": "Saudade Louca" - }, - "3160": { - "Composer": "Nei Lopes/Wilson Moreira", - "Name": "Sapopemba e Maxambomba" - }, - "3162": { - "Composer": "Ratinho/Zeca Pagodinho", - "Name": "Lua de Ogum" - }, - "3164": { - "Composer": "Carlinhos Santana/Nelson Rufino", - "Name": "Verdade" - } - }, - "Title": "Ao Vivo [IMPORT]", - "artist": { - "ArtistId": 155, - "Name": "Zeca Pagodinho" - } - }, - "249": { - "tracks": { - "3172": { - "Composer": null, - "Name": "The Office: An American Workplace (Pilot)" - }, - "3173": { - "Composer": null, - "Name": "Diversity Day" - }, - "3174": { - "Composer": null, - "Name": "Health Care" - }, - "3175": { - "Composer": null, - "Name": "The Alliance" - }, - "3176": { - "Composer": null, - "Name": "Basketball" - }, - "3177": { - "Composer": null, - "Name": "Hot Girl" - } - }, - "Title": "The Office, Season 1", - "artist": { - "ArtistId": 156, - "Name": "The Office" - } - }, - "250": { - "tracks": { - "3178": { - "Composer": null, - "Name": "The Dundies" - }, - "3179": { - "Composer": null, - "Name": "Sexual Harassment" - }, - "3180": { - "Composer": null, - "Name": "Office Olympics" - }, - "3181": { - "Composer": null, - "Name": "The Fire" - }, - "3182": { - "Composer": null, - "Name": "Halloween" - }, - "3183": { - "Composer": null, - "Name": "The Fight" - }, - "3184": { - "Composer": null, - "Name": "The Client" - }, - "3185": { - "Composer": null, - "Name": "Performance Review" - }, - "3186": { - "Composer": null, - "Name": "Email Surveillance" - }, - "3187": { - "Composer": null, - "Name": "Christmas Party" - }, - "3188": { - "Composer": null, - "Name": "Booze Cruise" - }, - "3189": { - "Composer": null, - "Name": "The Injury" - }, - "3190": { - "Composer": null, - "Name": "The Secret" - }, - "3191": { - "Composer": null, - "Name": "The Carpet" - }, - "3192": { - "Composer": null, - "Name": "Boys and Girls" - }, - "3193": { - "Composer": null, - "Name": "Valentine's Day" - }, - "3194": { - "Composer": null, - "Name": "Dwight's Speech" - }, - "3195": { - "Composer": null, - "Name": "Take Your Daughter to Work Day" - }, - "3196": { - "Composer": null, - "Name": "Michael's Birthday" - }, - "3197": { - "Composer": null, - "Name": "Drug Testing" - }, - "3198": { - "Composer": null, - "Name": "Conflict Resolution" - }, - "3199": { - "Composer": null, - "Name": "Casino Night - Season Finale" - } - }, - "Title": "The Office, Season 2", - "artist": { - "ArtistId": 156, - "Name": "The Office" - } - }, - "251": { - "tracks": { - "3200": { - "Composer": null, - "Name": "Gay Witch Hunt" - }, - "3201": { - "Composer": null, - "Name": "The Convention" - }, - "3202": { - "Composer": null, - "Name": "The Coup" - }, - "3203": { - "Composer": null, - "Name": "Grief Counseling" - }, - "3204": { - "Composer": null, - "Name": "The Initiation" - }, - "3205": { - "Composer": null, - "Name": "Diwali" - }, - "3206": { - "Composer": null, - "Name": "Branch Closing" - }, - "3207": { - "Composer": null, - "Name": "The Merger" - }, - "3208": { - "Composer": null, - "Name": "The Convict" - }, - "3209": { - "Composer": null, - "Name": "A Benihana Christmas, Pts. 1 & 2" - }, - "3210": { - "Composer": null, - "Name": "Back from Vacation" - }, - "3211": { - "Composer": null, - "Name": "Traveling Salesmen" - }, - "3212": { - "Composer": null, - "Name": "Producer's Cut: The Return" - }, - "3213": { - "Composer": null, - "Name": "Ben Franklin" - }, - "3214": { - "Composer": null, - "Name": "Phyllis's Wedding" - }, - "3215": { - "Composer": null, - "Name": "Business School" - }, - "3216": { - "Composer": null, - "Name": "Cocktails" - }, - "3217": { - "Composer": null, - "Name": "The Negotiation" - }, - "3218": { - "Composer": null, - "Name": "Safety Training" - }, - "3219": { - "Composer": null, - "Name": "Product Recall" - }, - "3220": { - "Composer": null, - "Name": "Women's Appreciation" - }, - "3221": { - "Composer": null, - "Name": "Beach Games" - }, - "3222": { - "Composer": null, - "Name": "The Job" - }, - "3428": { - "Composer": null, - "Name": "Branch Closing" - }, - "3429": { - "Composer": null, - "Name": "The Return" - } - }, - "Title": "The Office, Season 3", - "artist": { - "ArtistId": 156, - "Name": "The Office" - } - }, - "252": { - "tracks": { - "3225": { - "Composer": "Page, Jones", - "Name": "Your Time Is Gonna Come" - } - }, - "Title": "Un-Led-Ed", - "artist": { - "ArtistId": 157, - "Name": "Dread Zeppelin" - } - }, - "253": { - "tracks": { - "3226": { - "Composer": null, - "Name": "Battlestar Galactica, Pt. 1" - }, - "3227": { - "Composer": null, - "Name": "Battlestar Galactica, Pt. 2" - }, - "3228": { - "Composer": null, - "Name": "Battlestar Galactica, Pt. 3" - }, - "3229": { - "Composer": null, - "Name": "Lost Planet of the Gods, Pt. 1" - }, - "3230": { - "Composer": null, - "Name": "Lost Planet of the Gods, Pt. 2" - }, - "3231": { - "Composer": null, - "Name": "The Lost Warrior" - }, - "3232": { - "Composer": null, - "Name": "The Long Patrol" - }, - "3233": { - "Composer": null, - "Name": "The Gun On Ice Planet Zero, Pt. 1" - }, - "3234": { - "Composer": null, - "Name": "The Gun On Ice Planet Zero, Pt. 2" - }, - "3235": { - "Composer": null, - "Name": "The Magnificent Warriors" - }, - "3236": { - "Composer": null, - "Name": "The Young Lords" - }, - "3237": { - "Composer": null, - "Name": "The Living Legend, Pt. 1" - }, - "3238": { - "Composer": null, - "Name": "The Living Legend, Pt. 2" - }, - "3239": { - "Composer": null, - "Name": "Fire In Space" - }, - "3240": { - "Composer": null, - "Name": "War of the Gods, Pt. 1" - }, - "3241": { - "Composer": null, - "Name": "War of the Gods, Pt. 2" - }, - "3242": { - "Composer": null, - "Name": "The Man With Nine Lives" - }, - "3243": { - "Composer": null, - "Name": "Murder On the Rising Star" - }, - "3244": { - "Composer": null, - "Name": "Greetings from Earth, Pt. 1" - }, - "3245": { - "Composer": null, - "Name": "Greetings from Earth, Pt. 2" - }, - "3246": { - "Composer": null, - "Name": "Baltar's Escape" - }, - "3247": { - "Composer": null, - "Name": "Experiment In Terra" - }, - "3248": { - "Composer": null, - "Name": "Take the Celestra" - }, - "3249": { - "Composer": null, - "Name": "The Hand of God" - } - }, - "Title": "Battlestar Galactica (Classic), Season 1", - "artist": { - "ArtistId": 158, - "Name": "Battlestar Galactica (Classic)" - } - }, - "254": { - "tracks": { - "3250": { - "Composer": null, - "Name": "Pilot" - } - }, - "Title": "Aquaman", - "artist": { - "ArtistId": 159, - "Name": "Aquaman" - } - }, - "255": { - "tracks": { - "3253": { - "Composer": null, - "Name": "Instant Karma" - }, - "3254": { - "Composer": null, - "Name": "#9 Dream" - }, - "3255": { - "Composer": null, - "Name": "Mother" - }, - "3256": { - "Composer": null, - "Name": "Give Peace a Chance" - }, - "3257": { - "Composer": null, - "Name": "Cold Turkey" - }, - "3258": { - "Composer": null, - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Composer": null, - "Name": "I'm Losing You" - }, - "3260": { - "Composer": null, - "Name": "Gimme Some Truth" - }, - "3261": { - "Composer": null, - "Name": "Oh, My Love" - }, - "3262": { - "Composer": null, - "Name": "Imagine" - }, - "3263": { - "Composer": null, - "Name": "Nobody Told Me" - }, - "3264": { - "Composer": null, - "Name": "Jealous Guy" - }, - "3265": { - "Composer": null, - "Name": "Working Class Hero" - }, - "3266": { - "Composer": null, - "Name": "Power to the People" - }, - "3267": { - "Composer": null, - "Name": "Imagine" - }, - "3268": { - "Composer": null, - "Name": "Beautiful Boy" - }, - "3269": { - "Composer": null, - "Name": "Isolation" - }, - "3270": { - "Composer": null, - "Name": "Watching the Wheels" - }, - "3271": { - "Composer": null, - "Name": "Grow Old With Me" - }, - "3272": { - "Composer": null, - "Name": "Gimme Some Truth" - }, - "3273": { - "Composer": null, - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Composer": null, - "Name": "God" - }, - "3275": { - "Composer": null, - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur", - "artist": { - "ArtistId": 150, - "Name": "U2" - } - }, - "256": { - "tracks": { - "3276": { - "Composer": null, - "Name": "Sympton of the Universe" - }, - "3277": { - "Composer": null, - "Name": "Snowblind" - }, - "3278": { - "Composer": null, - "Name": "Black Sabbath" - }, - "3279": { - "Composer": null, - "Name": "Fairies Wear Boots" - }, - "3280": { - "Composer": null, - "Name": "War Pigs" - }, - "3281": { - "Composer": null, - "Name": "The Wizard" - }, - "3282": { - "Composer": null, - "Name": "N.I.B." - }, - "3283": { - "Composer": null, - "Name": "Sweet Leaf" - }, - "3284": { - "Composer": null, - "Name": "Never Say Die" - }, - "3285": { - "Composer": null, - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Composer": null, - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Composer": null, - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil", - "artist": { - "ArtistId": 114, - "Name": "Ozzy Osbourne" - } - }, - "257": { - "tracks": { - "3288": { - "Composer": null, - "Name": "Rock You Like a Hurricane" - }, - "3289": { - "Composer": null, - "Name": "No One Like You" - }, - "3290": { - "Composer": null, - "Name": "The Zoo" - }, - "3291": { - "Composer": null, - "Name": "Loving You Sunday Morning" - }, - "3292": { - "Composer": null, - "Name": "Still Loving You" - }, - "3293": { - "Composer": null, - "Name": "Big City Nights" - }, - "3294": { - "Composer": null, - "Name": "Believe in Love" - }, - "3295": { - "Composer": null, - "Name": "Rhythm of Love" - }, - "3296": { - "Composer": null, - "Name": "I Can't Explain" - }, - "3297": { - "Composer": null, - "Name": "Tease Me Please Me" - }, - "3298": { - "Composer": null, - "Name": "Wind of Change" - }, - "3299": { - "Composer": null, - "Name": "Send Me an Angel" - } - }, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions", - "artist": { - "ArtistId": 179, - "Name": "Scorpions" - } - }, - "258": { - "tracks": { - "3300": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Jump Around" - }, - "3301": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Salutations" - }, - "3302": { - "Composer": "E. Schrody/L. Freese/L. Muggerud", - "Name": "Put Your Head Out" - }, - "3303": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Top O' The Morning To Ya" - }, - "3304": { - "Composer": "L. Muggerud", - "Name": "Commercial 1" - }, - "3305": { - "Composer": "E. Schrody/J. Vasquez/L. Dimant", - "Name": "House And The Rising Sun" - }, - "3306": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Shamrocks And Shenanigans" - }, - "3307": { - "Composer": "E. Schrody/L. Dimant", - "Name": "House Of Pain Anthem" - }, - "3308": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Danny Boy, Danny Boy" - }, - "3309": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Guess Who's Back" - }, - "3310": { - "Composer": "L. Muggerud", - "Name": "Commercial 2" - }, - "3311": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Put On Your Shit Kickers" - }, - "3312": { - "Composer": "E. Schrody/L. Muggerud/R. Medrano", - "Name": "Come And Get Some Of This" - }, - "3313": { - "Composer": "E. Schrody/R. Medrano", - "Name": "Life Goes On" - }, - "3314": { - "Composer": "E. Schrody/L. Dimant/L. Muggerud", - "Name": "One For The Road" - }, - "3315": { - "Composer": "E. Schrody/R. Medrano", - "Name": "Feel It" - }, - "3316": { - "Composer": "E. Schrody/L. Dimant", - "Name": "All My Love" - }, - "3317": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Jump Around (Pete Rock Remix)" - }, - "3318": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)" - } - }, - "Title": "House of Pain", - "artist": { - "ArtistId": 180, - "Name": "House Of Pain" - } - }, - "259": { - "tracks": { - "3319": { - "Composer": null, - "Name": "Instinto Colectivo" - }, - "3320": { - "Composer": null, - "Name": "Chapa o Coco" - }, - "3321": { - "Composer": null, - "Name": "Prostituta" - }, - "3322": { - "Composer": null, - "Name": "Eu So Queria Sumir" - }, - "3323": { - "Composer": null, - "Name": "Tres Reis" - }, - "3324": { - "Composer": null, - "Name": "Um Lugar ao Sol" - }, - "3325": { - "Composer": null, - "Name": "Batalha Naval" - }, - "3326": { - "Composer": null, - "Name": "Todo o Carnaval tem seu Fim" - }, - "3327": { - "Composer": null, - "Name": "O Misterio do Samba" - }, - "3328": { - "Composer": null, - "Name": "Armadura" - }, - "3329": { - "Composer": null, - "Name": "Na Ladeira" - }, - "3330": { - "Composer": null, - "Name": "Carimbo" - }, - "3331": { - "Composer": null, - "Name": "Catimbo" - }, - "3332": { - "Composer": null, - "Name": "Funk de Bamba" - }, - "3333": { - "Composer": null, - "Name": "Chega no Suingue" - }, - "3334": { - "Composer": null, - "Name": "Mun-Ra" - }, - "3335": { - "Composer": null, - "Name": "Freestyle Love" - } - }, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro", - "artist": { - "ArtistId": 36, - "Name": "O Rappa" - } - }, - "260": { - "tracks": { - "3336": { - "Composer": null, - "Name": "War Pigs" - } - }, - "Title": "Cake: B-Sides and Rarities", - "artist": { - "ArtistId": 196, - "Name": "Cake" - } - }, - "261": { - "tracks": { - "3337": { - "Composer": null, - "Name": "Past, Present, and Future" - }, - "3338": { - "Composer": null, - "Name": "The Beginning of the End" - }, - "3339": { - "Composer": null, - "Name": "LOST Season 4 Trailer" - }, - "3340": { - "Composer": null, - "Name": "LOST In 8:15" - }, - "3341": { - "Composer": null, - "Name": "Confirmed Dead" - }, - "3342": { - "Composer": null, - "Name": "The Economist" - }, - "3343": { - "Composer": null, - "Name": "Eggtown" - }, - "3344": { - "Composer": null, - "Name": "The Constant" - }, - "3345": { - "Composer": null, - "Name": "The Other Woman" - }, - "3346": { - "Composer": null, - "Name": "Ji Yeon" - }, - "3347": { - "Composer": null, - "Name": "Meet Kevin Johnson" - }, - "3348": { - "Composer": null, - "Name": "The Shape of Things to Come" - }, - "3360": { - "Composer": null, - "Name": "Something Nice Back Home" - }, - "3361": { - "Composer": null, - "Name": "Cabin Fever" - }, - "3362": { - "Composer": null, - "Name": "There's No Place Like Home, Pt. 1" - }, - "3363": { - "Composer": null, - "Name": "There's No Place Like Home, Pt. 2" - }, - "3364": { - "Composer": null, - "Name": "There's No Place Like Home, Pt. 3" - } - }, - "Title": "LOST, Season 4", - "artist": { - "ArtistId": 149, - "Name": "Lost" - } - }, - "262": { - "tracks": { - "3349": { - "Composer": "Luca Gusella", - "Name": "Amanda" - }, - "3350": { - "Composer": "Andrea Dulbecco", - "Name": "Despertar" - } - }, - "Title": "Quiet Songs", - "artist": { - "ArtistId": 197, - "Name": "Aisha Duo" - } - }, - "264": { - "tracks": { - "3352": { - "Composer": "Karsh Kale/Vishal Vaid", - "Name": "Distance" - }, - "3358": { - "Composer": "Karsh Kale", - "Name": "One Step Beyond" - } - }, - "Title": "Realize", - "artist": { - "ArtistId": 199, - "Name": "Karsh Kale" - } - }, - "265": { - "tracks": { - "3353": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Name": "I Guess You're Right" - }, - "3355": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Name": "Love Comes" - } - }, - "Title": "Every Kind of Light", - "artist": { - "ArtistId": 200, - "Name": "The Posies" - } - }, - "266": { - "tracks": { - "3356": { - "Composer": "Luciana Souza", - "Name": "Muita Bobeira" - } - }, - "Title": "Duos II", - "artist": { - "ArtistId": 201, - "Name": "Luciana Souza/Romero Lubambo" - } - }, - "267": { - "tracks": { - "3357": { - "Composer": "Aaron Goldberg", - "Name": "OAM's Blues" - } - }, - "Title": "Worlds", - "artist": { - "ArtistId": 202, - "Name": "Aaron Goldberg" - } - }, - "268": { - "tracks": { - "3359": { - "Composer": "Ludwig van Beethoven", - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace" - } - }, - "Title": "The Best of Beethoven", - "artist": { - "ArtistId": 203, - "Name": "Nicolaus Esterhazy Sinfonia" - } - }, - "269": { - "tracks": { - "3365": { - "Composer": null, - "Name": "Say Hello 2 Heaven" - }, - "3366": { - "Composer": null, - "Name": "Reach Down" - }, - "3367": { - "Composer": null, - "Name": "Hunger Strike" - }, - "3368": { - "Composer": null, - "Name": "Pushin Forward Back" - }, - "3369": { - "Composer": null, - "Name": "Call Me a Dog" - }, - "3370": { - "Composer": null, - "Name": "Times of Trouble" - }, - "3371": { - "Composer": null, - "Name": "Wooden Jesus" - }, - "3372": { - "Composer": null, - "Name": "Your Savior" - }, - "3373": { - "Composer": null, - "Name": "Four Walled World" - }, - "3374": { - "Composer": null, - "Name": "All Night Thing" - } - }, - "Title": "Temple of the Dog", - "artist": { - "ArtistId": 204, - "Name": "Temple of the Dog" - } - }, - "270": { - "tracks": { - "3375": { - "Composer": "Chris Cornell", - "Name": "No Such Thing" - }, - "3376": { - "Composer": "Chris Cornell", - "Name": "Poison Eye" - }, - "3377": { - "Composer": "Chris Cornell", - "Name": "Arms Around Your Love" - }, - "3378": { - "Composer": "Chris Cornell", - "Name": "Safe and Sound" - }, - "3379": { - "Composer": "Chris Cornell", - "Name": "She'll Never Be Your Man" - }, - "3380": { - "Composer": "Chris Cornell", - "Name": "Ghosts" - }, - "3381": { - "Composer": "Chris Cornell", - "Name": "Killing Birds" - }, - "3382": { - "Composer": "Michael Jackson", - "Name": "Billie Jean" - }, - "3383": { - "Composer": "Chris Cornell", - "Name": "Scar On the Sky" - }, - "3384": { - "Composer": "Chris Cornell", - "Name": "Your Soul Today" - }, - "3385": { - "Composer": "Chris Cornell", - "Name": "Finally Forever" - }, - "3386": { - "Composer": "Chris Cornell", - "Name": "Silence the Voices" - }, - "3387": { - "Composer": "Chris Cornell", - "Name": "Disappearing Act" - }, - "3388": { - "Composer": "Chris Cornell", - "Name": "You Know My Name" - } - }, - "Title": "Carry On", - "artist": { - "ArtistId": 205, - "Name": "Chris Cornell" - } - }, - "271": { - "tracks": { - "3389": { - "Composer": null, - "Name": "Revelations" - }, - "3390": { - "Composer": null, - "Name": "One and the Same" - }, - "3391": { - "Composer": null, - "Name": "Sound of a Gun" - }, - "3392": { - "Composer": null, - "Name": "Until We Fall" - }, - "3393": { - "Composer": null, - "Name": "Original Fire" - }, - "3394": { - "Composer": null, - "Name": "Broken City" - }, - "3395": { - "Composer": null, - "Name": "Somedays" - }, - "3396": { - "Composer": null, - "Name": "Shape of Things to Come" - }, - "3397": { - "Composer": null, - "Name": "Jewel of the Summertime" - }, - "3398": { - "Composer": null, - "Name": "Wide Awake" - }, - "3399": { - "Composer": null, - "Name": "Nothing Left to Say But Goodbye" - }, - "3400": { - "Composer": null, - "Name": "Moth" - }, - "3401": { - "Composer": null, - "Name": "Show Me How to Live (Live at the Quart Festival)" - }, - "3402": { - "Composer": null, - "Name": "Band Members Discuss Tracks from \"Revelations\"" - } - }, - "Title": "Revelations", - "artist": { - "ArtistId": 8, - "Name": "Audioslave" - } - }, - "272": { - "tracks": { - "3403": { - "Composer": "Anonymous", - "Name": "Intoitus: Adorate Deum" - } - }, - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass", - "artist": { - "ArtistId": 206, - "Name": "Alberto Turco & Nova Schola Gregoriana" - } - }, - "273": { - "tracks": { - "3404": { - "Composer": "Gregorio Allegri", - "Name": "Miserere mei, Deus" - } - }, - "Title": "Allegri: Miserere", - "artist": { - "ArtistId": 207, - "Name": "Richard Marlow & The Choir of Trinity College, Cambridge" - } - }, - "274": { - "tracks": { - "3405": { - "Composer": "Johann Pachelbel", - "Name": "Canon and Gigue in D Major: I. Canon" - } - }, - "Title": "Pachelbel: Canon & Gigue", - "artist": { - "ArtistId": 208, - "Name": "English Concert & Trevor Pinnock" - } - }, - "275": { - "tracks": { - "3406": { - "Composer": "Antonio Vivaldi", - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro" - } - }, - "Title": "Vivaldi: The Four Seasons", - "artist": { - "ArtistId": 209, - "Name": "Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker" - } - }, - "276": { - "tracks": { - "3407": { - "Composer": "Johann Sebastian Bach", - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace" - } - }, - "Title": "Bach: Violin Concertos", - "artist": { - "ArtistId": 210, - "Name": "Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer" - } - }, - "277": { - "tracks": {}, - "Title": "Bach: Goldberg Variations", - "artist": { - "ArtistId": 211, - "Name": "Wilhelm Kempff" - } - }, - "278": { - "tracks": {}, - "Title": "Bach: The Cello Suites", - "artist": { - "ArtistId": 212, - "Name": "Yo-Yo Ma" - } - }, - "279": { - "tracks": { - "3410": { - "Composer": "George Frideric Handel", - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound" - } - }, - "Title": "Handel: The Messiah (Highlights)", - "artist": { - "ArtistId": 213, - "Name": "Scholars Baroque Ensemble" - } - }, - "280": { - "tracks": { - "3411": { - "Composer": "George Frideric Handel", - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba" - }, - "3438": { - "Composer": "Ralph Vaughan Williams", - "Name": "Fantasia On Greensleeves" - } - }, - "Title": "The World of Classical Favourites", - "artist": { - "ArtistId": 214, - "Name": "Academy of St. Martin in the Fields & Sir Neville Marriner" - } - }, - "281": { - "tracks": { - "3412": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro" - } - }, - "Title": "Sir Neville Marriner: A Celebration", - "artist": { - "ArtistId": 215, - "Name": "Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner" - } - }, - "282": { - "tracks": { - "3413": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio" - } - }, - "Title": "Mozart: Wind Concertos", - "artist": { - "ArtistId": 216, - "Name": "Berliner Philharmoniker, Claudio Abbado & Sabine Meyer" - } - }, - "283": { - "tracks": { - "3414": { - "Composer": "Franz Joseph Haydn", - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso" - } - }, - "Title": "Haydn: Symphonies 99 - 104", - "artist": { - "ArtistId": 217, - "Name": "Royal Philharmonic Orchestra & Sir Thomas Beecham" - } - }, - "285": { - "tracks": { - "3416": { - "Composer": "Franz Schubert", - "Name": "Ave Maria" - } - }, - "Title": "A Soprano Inspired", - "artist": { - "ArtistId": 219, - "Name": "Britten Sinfonia, Ivor Bolton & Lesley Garrett" - } - }, - "286": { - "tracks": { - "3417": { - "Composer": "Giuseppe Verdi", - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"" - } - }, - "Title": "Great Opera Choruses", - "artist": { - "ArtistId": 220, - "Name": "Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti" - } - }, - "287": { - "tracks": {}, - "Title": "Wagner: Favourite Overtures", - "artist": { - "ArtistId": 221, - "Name": "Sir Georg Solti & Wiener Philharmoniker" - } - }, - "289": { - "tracks": { - "3420": { - "Composer": "Peter Ilyich Tchaikovsky", - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy" - } - }, - "Title": "Tchaikovsky: The Nutcracker", - "artist": { - "ArtistId": 223, - "Name": "London Symphony Orchestra & Sir Charles Mackerras" - } - }, - "290": { - "tracks": { - "3421": { - "Composer": "Edward Elgar", - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"" - } - }, - "Title": "The Last Night of the Proms", - "artist": { - "ArtistId": 224, - "Name": "Barry Wordsworth & BBC Concert Orchestra" - } - }, - "291": { - "tracks": {}, - "Title": "Puccini: Madama Butterfly - Highlights", - "artist": { - "ArtistId": 225, - "Name": "Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker" - } - }, - "292": { - "tracks": { - "3423": { - "Composer": "Gustav Holst", - "Name": "Jupiter, the Bringer of Jollity" - } - }, - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies", - "artist": { - "ArtistId": 226, - "Name": "Eugene Ormandy" - } - }, - "293": { - "tracks": { - "3424": { - "Composer": "Giacomo Puccini", - "Name": "Turandot, Act III, Nessun dorma!" - } - }, - "Title": "Pavarotti's Opera Made Easy", - "artist": { - "ArtistId": 227, - "Name": "Luciano Pavarotti" - } - }, - "294": { - "tracks": { - "3425": { - "Composer": "Samuel Barber", - "Name": "Adagio for Strings from the String Quartet, Op. 11" - } - }, - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings", - "artist": { - "ArtistId": 228, - "Name": "Leonard Bernstein & New York Philharmonic" - } - }, - "295": { - "tracks": { - "3426": { - "Composer": "Carl Orff", - "Name": "Carmina Burana: O Fortuna" - } - }, - "Title": "Carmina Burana", - "artist": { - "ArtistId": 229, - "Name": "Boston Symphony Orchestra & Seiji Ozawa" - } - }, - "296": { - "tracks": { - "3427": { - "Composer": "Aaron Copland", - "Name": "Fanfare for the Common Man" - } - }, - "Title": "A Copland Celebration, Vol. I", - "artist": { - "ArtistId": 230, - "Name": "Aaron Copland & London Symphony Orchestra" - } - }, - "297": { - "tracks": { - "3430": { - "Composer": "Johann Sebastian Bach", - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata" - } - }, - "Title": "Bach: Toccata & Fugue in D Minor", - "artist": { - "ArtistId": 231, - "Name": "Ton Koopman" - } - }, - "298": { - "tracks": { - "3431": { - "Composer": "Sergei Prokofiev", - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio" - } - }, - "Title": "Prokofiev: Symphony No.1", - "artist": { - "ArtistId": 232, - "Name": "Sergei Prokofiev & Yuri Temirkanov" - } - }, - "299": { - "tracks": { - "3432": { - "Composer": "Nikolai Rimsky-Korsakov", - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship" - } - }, - "Title": "Scheherazade", - "artist": { - "ArtistId": 233, - "Name": "Chicago Symphony Orchestra & Fritz Reiner" - } - }, - "300": { - "tracks": { - "3433": { - "Composer": "Johann Sebastian Bach", - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro" - } - }, - "Title": "Bach: The Brandenburg Concertos", - "artist": { - "ArtistId": 234, - "Name": "Orchestra of The Age of Enlightenment" - } - }, - "301": { - "tracks": {}, - "Title": "Chopin: Piano Concertos Nos. 1 & 2", - "artist": { - "ArtistId": 235, - "Name": "Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra" - } - }, - "302": { - "tracks": { - "3435": { - "Composer": "Pietro Mascagni", - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico" - } - }, - "Title": "Mascagni: Cavalleria Rusticana", - "artist": { - "ArtistId": 236, - "Name": "James Levine" - } - }, - "303": { - "tracks": { - "3436": { - "Composer": "Jean Sibelius", - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)" - } - }, - "Title": "Sibelius: Finlandia", - "artist": { - "ArtistId": 237, - "Name": "Berliner Philharmoniker & Hans Rosbaud" - } - }, - "304": { - "tracks": { - "3437": { - "Composer": "Ludwig van Beethoven", - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto" - } - }, - "Title": "Beethoven Piano Sonatas: Moonlight & Pastorale", - "artist": { - "ArtistId": 238, - "Name": "Maurizio Pollini" - } - }, - "305": { - "tracks": { - "3439": { - "Composer": "Gustav Mahler", - "Name": "Das Lied Von Der Erde, Von Der Jugend" - } - }, - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde", - "artist": { - "ArtistId": 240, - "Name": "Gustav Mahler" - } - }, - "307": { - "tracks": { - "3441": { - "Composer": "John Adams", - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine" - } - }, - "Title": "Adams, John: The Chairman Dances", - "artist": { - "ArtistId": 242, - "Name": "Edo de Waart & San Francisco Symphony" - } - }, - "309": { - "tracks": { - "3443": { - "Composer": "Giovanni Pierluigi da Palestrina", - "Name": "Missa Papae Marcelli: Kyrie" - } - }, - "Title": "Palestrina: Missa Papae Marcelli & Allegri: Miserere", - "artist": { - "ArtistId": 244, - "Name": "Choir Of Westminster Abbey & Simon Preston" - } - }, - "310": { - "tracks": { - "3444": { - "Composer": null, - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers" - } - }, - "Title": "Prokofiev: Romeo & Juliet", - "artist": { - "ArtistId": 245, - "Name": "Michael Tilson Thomas & San Francisco Symphony" - } - }, - "311": { - "tracks": { - "3445": { - "Composer": "Johann Strauss II", - "Name": "On the Beautiful Blue Danube" - } - }, - "Title": "Strauss: Waltzes", - "artist": { - "ArtistId": 226, - "Name": "Eugene Ormandy" - } - }, - "312": { - "tracks": { - "3446": { - "Composer": "Hector Berlioz", - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat" - } - }, - "Title": "Berlioz: Symphonie Fantastique", - "artist": { - "ArtistId": 245, - "Name": "Michael Tilson Thomas & San Francisco Symphony" - } - }, - "313": { - "tracks": { - "3447": { - "Composer": "Georges Bizet", - "Name": "Carmen: Overture" - } - }, - "Title": "Bizet: Carmen Highlights", - "artist": { - "ArtistId": 246, - "Name": "Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker" - } - }, - "314": { - "tracks": { - "3448": { - "Composer": "Thomas Tallis", - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio" - }, - "3492": { - "Composer": "William Byrd", - "Name": "Sing Joyfully" - } - }, - "Title": "English Renaissance", - "artist": { - "ArtistId": 247, - "Name": "The King's Singers" - } - }, - "315": { - "tracks": {}, - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)", - "artist": { - "ArtistId": 208, - "Name": "English Concert & Trevor Pinnock" - } - }, - "317": { - "tracks": {}, - "Title": "Mozart Gala: Famous Arias", - "artist": { - "ArtistId": 249, - "Name": "Sir Georg Solti, Sumi Jo & Wiener Philharmoniker" - } - }, - "318": { - "tracks": { - "3452": { - "Composer": null, - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11" - } - }, - "Title": "SCRIABIN: Vers la flamme", - "artist": { - "ArtistId": 250, - "Name": "Christopher O'Riley" - } - }, - "319": { - "tracks": { - "3453": { - "Composer": "John Dowland", - "Name": "Pavan, Lachrimae Antiquae" - } - }, - "Title": "Armada: Music from the Courts of England and Spain", - "artist": { - "ArtistId": 251, - "Name": "Fretwork" - } - }, - "320": { - "tracks": { - "3454": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro" - } - }, - "Title": "Mozart: Symphonies Nos. 40 & 41", - "artist": { - "ArtistId": 248, - "Name": "Berliner Philharmoniker & Herbert Von Karajan" - } - }, - "321": { - "tracks": { - "3455": { - "Composer": null, - "Name": "Rehab" - }, - "3456": { - "Composer": null, - "Name": "You Know I'm No Good" - }, - "3457": { - "Composer": null, - "Name": "Me & Mr. Jones" - }, - "3458": { - "Composer": null, - "Name": "Just Friends" - }, - "3459": { - "Composer": "Mark Ronson", - "Name": "Back to Black" - }, - "3460": { - "Composer": null, - "Name": "Love Is a Losing Game" - }, - "3461": { - "Composer": "Nickolas Ashford & Valerie Simpson", - "Name": "Tears Dry On Their Own" - }, - "3462": { - "Composer": "Paul O'duffy", - "Name": "Wake Up Alone" - }, - "3463": { - "Composer": null, - "Name": "Some Unholy War" - }, - "3464": { - "Composer": "Richard Poindexter & Robert Poindexter", - "Name": "He Can Only Hold Her" - }, - "3465": { - "Composer": null, - "Name": "You Know I'm No Good (feat. Ghostface Killah)" - }, - "3466": { - "Composer": null, - "Name": "Rehab (Hot Chip Remix)" - } - }, - "Title": "Back to Black", - "artist": { - "ArtistId": 252, - "Name": "Amy Winehouse" - } - }, - "322": { - "tracks": { - "3467": { - "Composer": null, - "Name": "Intro / Stronger Than Me" - }, - "3468": { - "Composer": null, - "Name": "You Sent Me Flying / Cherry" - }, - "3469": { - "Composer": "Salaam Remi", - "Name": "F**k Me Pumps" - }, - "3470": { - "Composer": null, - "Name": "I Heard Love Is Blind" - }, - "3471": { - "Composer": "Isham Jones & Marty Symes", - "Name": "(There Is) No Greater Love (Teo Licks)" - }, - "3472": { - "Composer": "Salaam Remi", - "Name": "In My Bed" - }, - "3473": { - "Composer": "Luke Smith", - "Name": "Take the Box" - }, - "3474": { - "Composer": "Matt Rowe & Stefan Skarbek", - "Name": "October Song" - }, - "3475": { - "Composer": "Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole", - "Name": "What Is It About Men" - }, - "3476": { - "Composer": "Freddy James, Jimmy hogarth & Larry Stock", - "Name": "Help Yourself" - }, - "3477": { - "Composer": "Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek", - "Name": "Amy Amy Amy (Outro)" - } - }, - "Title": "Frank", - "artist": { - "ArtistId": 252, - "Name": "Amy Winehouse" - } - }, - "323": { - "tracks": { - "3478": { - "Composer": null, - "Name": "Slowness" - } - }, - "Title": "Carried to Dust (Bonus Track Version)", - "artist": { - "ArtistId": 253, - "Name": "Calexico" - } - }, - "324": { - "tracks": { - "3479": { - "Composer": "Ludwig van Beethoven", - "Name": "Prometheus Overture, Op. 43" - } - }, - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc.", - "artist": { - "ArtistId": 254, - "Name": "Otto Klemperer & Philharmonia Orchestra" - } - }, - "325": { - "tracks": {}, - "Title": "Bartok: Violin & Viola Concertos", - "artist": { - "ArtistId": 255, - "Name": "Yehudi Menuhin" - } - }, - "326": { - "tracks": { - "3481": { - "Composer": null, - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno" - } - }, - "Title": "Mendelssohn: A Midsummer Night's Dream", - "artist": { - "ArtistId": 256, - "Name": "Philharmonia Orchestra & Sir Neville Marriner" - } - }, - "327": { - "tracks": { - "3482": { - "Composer": "Johann Sebastian Bach", - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I & II" - } - }, - "Title": "Bach: Orchestral Suites Nos. 1 - 4", - "artist": { - "ArtistId": 257, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart" - } - }, - "328": { - "tracks": { - "3483": { - "Composer": "Marc-Antoine Charpentier", - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude" - } - }, - "Title": "Charpentier: Divertissements, Airs & Concerts", - "artist": { - "ArtistId": 258, - "Name": "Les Arts Florissants & William Christie" - } - }, - "329": { - "tracks": { - "3484": { - "Composer": "Astor Piazzolla", - "Name": "Adios nonino" - } - }, - "Title": "South American Getaway", - "artist": { - "ArtistId": 259, - "Name": "The 12 Cellists of The Berlin Philharmonic" - } - }, - "331": { - "tracks": { - "3486": { - "Composer": "Henry Purcell", - "Name": "Act IV, Symphony" - } - }, - "Title": "Purcell: The Fairy Queen", - "artist": { - "ArtistId": 261, - "Name": "Roger Norrington, London Classical Players" - } - }, - "333": { - "tracks": { - "3488": { - "Composer": "Henry Purcell", - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"" - } - }, - "Title": "Purcell: Music for the Queen Mary", - "artist": { - "ArtistId": 263, - "Name": "Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir" - } - }, - "335": { - "tracks": { - "3490": { - "Composer": "Johann Sebastian Bach", - "Name": "Partita in E Major, BWV 1006A: I. Prelude" - } - }, - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro", - "artist": { - "ArtistId": 265, - "Name": "Julian Bream" - } - }, - "336": { - "tracks": { - "3491": { - "Composer": "Igor Stravinsky", - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds" - } - }, - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps", - "artist": { - "ArtistId": 248, - "Name": "Berliner Philharmoniker & Herbert Von Karajan" - } - }, - "337": { - "tracks": { - "3493": { - "Composer": "Karol Szymanowski", - "Name": "Metopes, Op. 29: Calypso" - } - }, - "Title": "Szymanowski: Piano Works, Vol. 1", - "artist": { - "ArtistId": 266, - "Name": "Martin Roscoe" - } - }, - "339": { - "tracks": {}, - "Title": "Great Recordings of the Century: Paganini's 24 Caprices", - "artist": { - "ArtistId": 268, - "Name": "Itzhak Perlman" - } - }, - "341": { - "tracks": { - "3497": { - "Composer": null, - "Name": "Erlkonig, D.328" - } - }, - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder", - "artist": { - "ArtistId": 270, - "Name": "Gerald Moore" - } - }, - "342": { - "tracks": { - "3498": { - "Composer": "Pietro Antonio Locatelli", - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro" - } - }, - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3", - "artist": { - "ArtistId": 271, - "Name": "Mela Tenenbaum, Pro Musica Prague & Richard Kapp" - } - }, - "343": { - "tracks": { - "3499": { - "Composer": null, - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia" - } - }, - "Title": "Respighi:Pines of Rome", - "artist": { - "ArtistId": 226, - "Name": "Eugene Ormandy" - } - }, - "344": { - "tracks": { - "3500": { - "Composer": "Franz Schubert", - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai" - } - }, - "Title": "Schubert: The Late String Quartets & String Quintet (3 CD's)", - "artist": { - "ArtistId": 272, - "Name": "Emerson String Quartet" - } - }, - "345": { - "tracks": { - "3501": { - "Composer": "Claudio Monteverdi", - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)" - } - }, - "Title": "Monteverdi: L'Orfeo", - "artist": { - "ArtistId": 273, - "Name": "C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu" - } - }, - "346": { - "tracks": { - "3502": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro" - } - }, - "Title": "Mozart: Chamber Music", - "artist": { - "ArtistId": 274, - "Name": "Nash Ensemble" - } - }, - "347": { - "tracks": { - "3503": { - "Composer": "Philip Glass", - "Name": "Koyaanisqatsi" - } - }, - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)", - "artist": { - "ArtistId": 275, - "Name": "Philip Glass Ensemble" - } - } - }, - "f2g_test_Track": { - "1": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "For Those About To Rock (We Salute You)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2": { - "Composer": null, - "album": { - "AlbumId": 2, - "Title": "Balls to the Wall" - }, - "Name": "Balls to the Wall", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3": { - "Composer": "F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman", - "album": { - "AlbumId": 3, - "Title": "Restless and Wild" - }, - "Name": "Fast As a Shark", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "4": { - "Composer": "F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman", - "album": { - "AlbumId": 3, - "Title": "Restless and Wild" - }, - "Name": "Restless and Wild", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "5": { - "Composer": "Deaffy & R.A. Smith-Diesel", - "album": { - "AlbumId": 3, - "Title": "Restless and Wild" - }, - "Name": "Princess of the Dawn", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "6": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Put The Finger On You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "7": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Let's Get It Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "8": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Inject The Venom", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "9": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Snowballed", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "10": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Evil Walks", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "11": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "C.O.D.", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "12": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Breaking The Rules", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "13": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Night Of The Long Knives", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "14": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "AlbumId": 1, - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Spellbound", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "15": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Go Down", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "16": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Dog Eat Dog", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "17": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Let There Be Rock", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "18": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Bad Boy Boogie", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "19": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Problem Child", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "20": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Overdose", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "21": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Hell Ain't A Bad Place To Be", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "22": { - "Composer": "AC/DC", - "album": { - "AlbumId": 4, - "Title": "Let There Be Rock" - }, - "Name": "Whole Lotta Rosie", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "23": { - "Composer": "Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Walk On Water", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "24": { - "Composer": "Steven Tyler, Joe Perry", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Love In An Elevator", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "25": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance, Holly Knight", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Rag Doll", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "26": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "What It Takes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "27": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Dude (Looks Like A Lady)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "28": { - "Composer": "Steven Tyler, Tom Hamilton", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Janie's Got A Gun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "29": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Cryin'", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "30": { - "Composer": "Steven Tyler, Richie Supa", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Amazing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "31": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Blind Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "32": { - "Composer": "Steven Tyler, Jim Vallance", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Deuces Are Wild", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "33": { - "Composer": "Steven Tyler, Jim Vallance", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "The Other Side", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "34": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Crazy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "35": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Eat The Rich", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "36": { - "Composer": "Steven Tyler, Desmond Child", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Angel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "37": { - "Composer": "Steven Tyler, Joe Perry, Mark Hudson", - "album": { - "AlbumId": 5, - "Title": "Big Ones" - }, - "Name": "Livin' On The Edge", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "38": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "All I Really Want", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "39": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "You Oughta Know", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "40": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Perfect", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "41": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Hand In My Pocket", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "42": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Right Through You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "43": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Forgiven", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "44": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "You Learn", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "45": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Head Over Feet", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "46": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Mary Jane", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "47": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Ironic", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "48": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Not The Doctor", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "49": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "Wake Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "50": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "AlbumId": 6, - "Title": "Jagged Little Pill" - }, - "Name": "You Oughta Know (Alternate)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "51": { - "Composer": "Jerry Cantrell", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "We Die Young", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "52": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Man In The Box", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "53": { - "Composer": "Jerry Cantrell", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Sea Of Sorrow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "54": { - "Composer": "Jerry Cantrell", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Bleed The Freak", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "55": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "I Can't Remember", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "56": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Love, Hate, Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "57": { - "Composer": "Jerry Cantrell, Michael Starr, Sean Kinney", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "It Ain't Like That", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "58": { - "Composer": "Jerry Cantrell", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Sunshine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "59": { - "Composer": "Jerry Cantrell", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Put You Down", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "60": { - "Composer": "Jerry Cantrell, Michael Starr, Layne Staley", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Confusion", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "61": { - "Composer": "Jerry Cantrell", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "I Know Somethin (Bout You)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "62": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "AlbumId": 7, - "Title": "Facelift" - }, - "Name": "Real Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "77": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Enter Sandman", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "78": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Master Of Puppets", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "79": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Harvester Of Sorrow", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "80": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "The Unforgiven", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "81": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Sad But True", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "82": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Creeping Death", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "83": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Wherever I May Roam", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "84": { - "Composer": "Apocalyptica", - "album": { - "AlbumId": 9, - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Welcome Home (Sanitarium)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "85": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Cochise", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "86": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Show Me How to Live", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "87": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Gasoline", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "88": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "What You Are", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "89": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Like a Stone", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "90": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Set It Off", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "91": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Shadow on the Sun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "92": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "I am the Highway", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "93": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Exploder", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "94": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Hypnotize", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "95": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Bring'em Back Alive", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "96": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Light My Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "97": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "Getaway Car", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "98": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "AlbumId": 10, - "Title": "Audioslave" - }, - "Name": "The Last Remaining Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "99": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Your Time Has Come", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "100": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Out Of Exile", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "101": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Be Yourself", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "102": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Doesn't Remind Me", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "103": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Drown Me Slowly", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "104": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Heaven's Dead", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "105": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "The Worm", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "106": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Man Or Animal", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "107": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Yesterday To Tomorrow", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "108": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "Dandelion", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "109": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "#1 Zero", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "110": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "AlbumId": 11, - "Title": "Out Of Exile" - }, - "Name": "The Curse", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "111": { - "Composer": "Berry Gordy, Jr./Janie Bradford", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Money", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "112": { - "Composer": "Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Long Tall Sally", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "113": { - "Composer": "Larry Williams", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Bad Boy", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "114": { - "Composer": "Bert Russell/Phil Medley", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Twist And Shout", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "115": { - "Composer": "Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Please Mr. Postman", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "116": { - "Composer": "Eddie Cochran/Jerry Capehart", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "C'Mon Everybody", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "117": { - "Composer": "Chuck Berry", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Rock 'N' Roll Music", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "118": { - "Composer": "Larry Williams", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Slow Down", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "119": { - "Composer": "Bo Diddley", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Roadrunner", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "120": { - "Composer": "Chuck Berry", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Carol", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "121": { - "Composer": "Little Richard", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "Good Golly Miss Molly", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "122": { - "Composer": "Ned Fairchild", - "album": { - "AlbumId": 12, - "Title": "BackBeat Soundtrack" - }, - "Name": "20 Flight Rock", - "genre": { - "Name": "Rock And Roll", - "GenreId": 5 - } - }, - "123": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Quadrant", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "124": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Snoopy's search-Red baron", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "125": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "126": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Moon germs", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "127": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Stratus", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "128": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "The pleasant pheasant", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "129": { - "Composer": "Billy Cobham", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Solo-Panhandler", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "130": { - "Composer": "George Duke", - "album": { - "AlbumId": 13, - "Title": "The Best Of Billy Cobham" - }, - "Name": "Do what cha wanna", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "131": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Intro/ Low Down", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "132": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "13 Years Of Grief", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "133": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Stronger Than Death", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "134": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "All For You", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "135": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Super Terrorizer", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "136": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Phoney Smile Fake Hellos", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "137": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Lost My Better Half", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "138": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Bored To Tears", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "139": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "A.N.D.R.O.T.A.Z.", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "140": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Born To Booze", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "141": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "World Of Trouble", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "142": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "No More Tears", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "143": { - "Composer": null, - "album": { - "AlbumId": 14, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "The Begining... At Last", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "144": { - "Composer": null, - "album": { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Heart Of Gold", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "145": { - "Composer": null, - "album": { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Snowblind", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "146": { - "Composer": null, - "album": { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Like A Bird", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "147": { - "Composer": null, - "album": { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Blood In The Wall", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "148": { - "Composer": null, - "album": { - "AlbumId": 15, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "The Beginning...At Last", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "149": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "Black Sabbath", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "150": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "The Wizard", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "151": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "Behind The Wall Of Sleep", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "152": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "N.I.B.", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "153": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "Evil Woman", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "154": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "Sleeping Village", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "155": { - "Composer": null, - "album": { - "AlbumId": 16, - "Title": "Black Sabbath" - }, - "Name": "Warning", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "156": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Wheels Of Confusion / The Straightener", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "157": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Tomorrow's Dream", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "158": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Changes", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "159": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "FX", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "160": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Supernaut", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "161": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Snowblind", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "162": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Cornucopia", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "163": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Laguna Sunrise", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "164": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "St. Vitus Dance", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "165": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 17, - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Under The Sun/Every Day Comes and Goes", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "166": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Smoked Pork", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "167": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Body Count's In The House", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "168": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Now Sports", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "169": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Body Count", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "170": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "A Statistic", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "171": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Bowels Of The Devil", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "172": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "The Real Problem", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "173": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "KKK Bitch", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "174": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "D Note", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "175": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Voodoo", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "176": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "The Winner Loses", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "177": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "There Goes The Neighborhood", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "178": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Oprah", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "179": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Evil Dick", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "180": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Body Count Anthem", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "181": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Momma's Gotta Die Tonight", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "182": { - "Composer": null, - "album": { - "AlbumId": 18, - "Title": "Body Count" - }, - "Name": "Freedom Of Speech", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "183": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "King In Crimson", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "184": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Chemical Wedding", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "185": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "The Tower", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "186": { - "Composer": "Adrian Smith", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Killing Floor", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "187": { - "Composer": "Eddie Casillas/Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Book Of Thel", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "188": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Gates Of Urizen", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "189": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Jerusalem", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "190": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Trupets Of Jericho", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "191": { - "Composer": "Adrian Smith", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Machine Men", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "192": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "The Alchemist", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "193": { - "Composer": "Roy Z", - "album": { - "AlbumId": 19, - "Title": "Chemical Wedding" - }, - "Name": "Realword", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "194": { - "Composer": "Eurreal Montgomery", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "First Time I Met The Blues", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "195": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Let Me Love You Baby", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "196": { - "Composer": "Buddy Guy", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Stone Crazy", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "197": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Pretty Baby", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "198": { - "Composer": "Al Perkins/Willie Dixon", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "When My Left Eye Jumps", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "199": { - "Composer": "Buddy Guy", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Leave My Girl Alone", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "200": { - "Composer": "Buddy Guy", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "She Suits Me To A Tee", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "201": { - "Composer": "Sonny Boy Williamson [I]", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Keep It To Myself (Aka Keep It To Yourself)", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "202": { - "Composer": "Robert Geddins/Ron Badger/Sheldon Feinberg", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "My Time After Awhile", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "203": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Too Many Ways (Alternate)", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "204": { - "Composer": "Amos Blakemore/Buddy Guy", - "album": { - "AlbumId": 20, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Talkin' 'Bout Women Obviously", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "206": { - "Composer": "Tradicional", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Prenda Minha", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "208": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Terra", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "209": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Eclipse Oculto", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "210": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Texto \"Verdade Tropical\"", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "211": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Bem Devagar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "213": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Saudosismo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "214": { - "Composer": "Chico Buarque", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Carolina", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "215": { - "Composer": "Peninha", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Sozinho", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "216": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Esse Cara", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "218": { - "Composer": "Caetano Veloso - Djavan", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Linha Do Equador", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "219": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Odara", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "220": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "A Luz De Tieta", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "222": { - "Composer": "Fausto Nilo - Armandinho", - "album": { - "AlbumId": 21, - "Title": "Prenda Minha" - }, - "Name": "Vida Boa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "223": { - "Composer": null, - "album": { - "AlbumId": 22, - "Title": "Sozinho Remix Ao Vivo" - }, - "Name": "Sozinho (Hitmakers Classic Mix)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "224": { - "Composer": null, - "album": { - "AlbumId": 22, - "Title": "Sozinho Remix Ao Vivo" - }, - "Name": "Sozinho (Hitmakers Classic Radio Edit)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "226": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Carolina", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "228": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Vai Passar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "229": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Samba De Orly", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "230": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Bye, Bye Brasil", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "231": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Atras Da Porta", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "232": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Tatuagem", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "234": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Morena De Angola", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "236": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "A Banda", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "237": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Minha Historia", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "239": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Brejo Da Cruz", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "240": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Meu Caro Amigo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "241": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Geni E O Zepelim", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "243": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Vai Trabalhar Vagabundo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "301": { - "Composer": "Da Gama/Toni Garrido", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "A Sombra Da Maldade", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "302": { - "Composer": "Da Gama/Lazao/Toni Garrido", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "A Estrada", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "303": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Falar A Verdade", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "304": { - "Composer": "Harry Lawes/Winston Foster-Vers", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Firmamento", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "305": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Pensamento", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "306": { - "Composer": "Bino/Da Gamma/Lazao/Toni Garrido", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Realidade Virtual", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "307": { - "Composer": "Bino/Da Gama/Toni Garrido", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Doutor", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "308": { - "Composer": "Bino/Da Gama/Lazao/Ras Bernardo", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Na Frente Da TV", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "309": { - "Composer": "Cidade Negra", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "Downtown", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "311": { - "Composer": "Bernardo Vilhena/Da Gama/Lazao", - "album": { - "AlbumId": 27, - "Title": "Cidade Negra - Hits" - }, - "Name": "A Cor Do Sol", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "337": { - "Composer": "J B Lenoir/Willie Dixon", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "You Shook Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "338": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "I Can't Quit You Baby", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "339": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Communication Breakdown", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "340": { - "Composer": "Jimmy Page", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Dazed and Confused", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "341": { - "Composer": "Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "The Girl I Love She Got Long Black Wavy Hair", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "342": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "What is and Should Never Be", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "343": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Communication Breakdown(2)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "344": { - "Composer": "Jimmy Page/Robert Johnson/Robert Plant", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Travelling Riverside Blues", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "345": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Whole Lotta Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "346": { - "Composer": "Bob Cochran/Sharon Sheeley", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Somethin' Else", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "347": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Communication Breakdown(3)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "348": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "I Can't Quit You Baby(2)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "349": { - "Composer": "J B Lenoir/Willie Dixon", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "You Shook Me(2)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "350": { - "Composer": "Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant", - "album": { - "AlbumId": 30, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "How Many More Times", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "351": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Debra Kadabra", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "352": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Carolina Hard-Core Ecstasy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "353": { - "Composer": "Don Van Vliet", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Sam With The Showing Scalp Flat Top", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "354": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Poofter's Froth Wyoming Plans Ahead", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "355": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "200 Years Old", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "356": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Cucamonga", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "357": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Advance Romance", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "358": { - "Composer": "Don Van Vliet", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Man With The Woman Head", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "359": { - "Composer": "Frank Zappa", - "album": { - "AlbumId": 31, - "Title": "Bongo Fury" - }, - "Name": "Muffin Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "360": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Vai-Vai 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "361": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "X-9 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "362": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Gavioes 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "363": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Nene 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "364": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Rosas De Ouro 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "365": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Mocidade Alegre 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "366": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Camisa Verde 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "367": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Leandro De Itaquera 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "368": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Tucuruvi 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "369": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Aguia De Ouro 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "370": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Ipiranga 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "371": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Morro Da Casa Verde 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "372": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Perola Negra 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "373": { - "Composer": null, - "album": { - "AlbumId": 32, - "Title": "Carnaval 2001" - }, - "Name": "Sao Lucas 2001", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "374": { - "Composer": "Marcos Valle", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Guanabara", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "375": { - "Composer": "Jorge Ben", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Mas Que Nada", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "377": { - "Composer": "Donato/Gilberto Gil", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "A Paz", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "378": { - "Composer": "Antonio Carlos Jobim", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Wave (Vou te Contar)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "381": { - "Composer": "Jorge Vercilo/Jota Maranhao", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Pode Parar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "382": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Menino do Rio", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "383": { - "Composer": "Caetano Veloso", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Ando Meio Desligado", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "385": { - "Composer": "Nando Reis", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "All Star", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "386": { - "Composer": "Alexandre Brazil/Pedro Luis/Rodrigo Cabelo", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Menina Bonita", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "390": { - "Composer": "Alba Carvalho/Fernando Porto", - "album": { - "AlbumId": 33, - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Sambassim (dj patife remix)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "408": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Free Speech For The Dumb", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "409": { - "Composer": "Harris/Tatler", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "It's Electric", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "410": { - "Composer": "Black Sabbath", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Sabbra Cadabra", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "411": { - "Composer": "Seger", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Turn The Page", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "412": { - "Composer": "Danzig", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Die Die My Darling", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "413": { - "Composer": "Cave", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Loverman", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "414": { - "Composer": "Diamond/Shermann", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Mercyful Fate", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "415": { - "Composer": "A.Bouchard/J.Bouchard/S.Pearlman", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Astronomy", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "416": { - "Composer": "Traditional", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Whiskey In The Jar", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "417": { - "Composer": "Collins/Van Zandt", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Tuesday's Gone", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "418": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "album": { - "AlbumId": 35, - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "The More I See", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "419": { - "Composer": "Roger Taylor", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "A Kind Of Magic", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "420": { - "Composer": "Queen & David Bowie", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Under Pressure", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "421": { - "Composer": "Roger Taylor", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Radio GA GA", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "422": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "I Want It All", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "423": { - "Composer": "John Deacon", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "I Want To Break Free", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "424": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Innuendo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "425": { - "Composer": "Freddie Mercury", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "It's A Hard Life", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "426": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Breakthru", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "427": { - "Composer": "Brian May", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Who Wants To Live Forever", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "428": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Headlong", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "429": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "The Miracle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "430": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "I'm Going Slightly Mad", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "431": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "The Invisible Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "432": { - "Composer": "Brian May", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Hammer To Fall", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "433": { - "Composer": "Freddie Mercury & John Deacon", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "Friends Will Be Friends", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "434": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "The Show Must Go On", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "435": { - "Composer": "Queen", - "album": { - "AlbumId": 36, - "Title": "Greatest Hits II" - }, - "Name": "One Vision", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "436": { - "Composer": "Paul Stanley, B. Ezrin", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Detroit Rock City", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "437": { - "Composer": "Paul Stanley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Black Diamond", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "438": { - "Composer": "Paul Stanley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Hard Luck Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "439": { - "Composer": "Paul Stanley, Vincent Poncia", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Sure Know Something", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "440": { - "Composer": "Paul Stanley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Love Gun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "441": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Deuce", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "442": { - "Composer": "Gene Simmons, S. Coronel", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Goin' Blind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "443": { - "Composer": "Ace Frehley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Shock Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "444": { - "Composer": "Paul Stanley, B. Ezrin, K. Fowley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Do You Love Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "445": { - "Composer": "Gene Simmons, S. Coronel", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "She", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "446": { - "Composer": "Paul Stanley, Vincent Poncia, Desmond Child", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "I Was Made For Loving You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "447": { - "Composer": "Paul Stanley, Gene Simmons, B. Ezrin", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Shout It Out Loud", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "448": { - "Composer": "Paul Stanley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "God Of Thunder", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "449": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Calling Dr. Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "450": { - "Composer": "S. Penridge, Bob Ezrin, Peter Criss", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Beth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "451": { - "Composer": "Paul Stanley, Gene Simmons", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Strutter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "452": { - "Composer": "Paul Stanley, Gene Simmons", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Rock And Roll All Nite", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "453": { - "Composer": "Ace Frehley", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Cold Gin", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "454": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "Plaster Caster", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "455": { - "Composer": "Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin", - "album": { - "AlbumId": 37, - "Title": "Greatest Kiss" - }, - "Name": "God Gave Rock 'n' Roll To You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "456": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Heart of the Night", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "457": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "De La Luz", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "458": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Westwood Moon", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "459": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Midnight", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "460": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Playtime", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "461": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Surrender", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "462": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Valentino's", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "463": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Believe", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "464": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "As We Sleep", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "465": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "When Evening Falls", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "466": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "J Squared", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "467": { - "Composer": null, - "album": { - "AlbumId": 38, - "Title": "Heart of the Night" - }, - "Name": "Best Thing", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "468": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Maria", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "469": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Poprocks And Coke", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "470": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Longview", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "471": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Welcome To Paradise", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "472": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Basket Case", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "473": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "When I Come Around", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "474": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "She", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "475": { - "Composer": "Mike Dirnt -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "J.A.R. (Jason Andrew Relva)", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "476": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Geek Stink Breath", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "477": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Brain Stew", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "478": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Jaded", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "479": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Walking Contradiction", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "480": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Stuck With Me", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "481": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Hitchin' A Ride", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "482": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Good Riddance (Time Of Your Life)", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "483": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Redundant", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "484": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Nice Guys Finish Last", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "485": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Minority", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "486": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Warning", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "487": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Waiting", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "488": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "AlbumId": 39, - "Title": "International Superhits" - }, - "Name": "Macy's Day Parade", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "489": { - "Composer": "David Coverdale", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Into The Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "490": { - "Composer": "David Coverdale", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "River Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "491": { - "Composer": "David Coverdale", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "She Give Me ...", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "492": { - "Composer": "David Coverdale", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Don't You Cry", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "493": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Love Is Blind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "494": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Slave", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "495": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Cry For Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "496": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Living On Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "497": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Midnight Blue", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "498": { - "Composer": "Adrian Vanderberg/David Coverdale", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Too Many Tears", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "499": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Don't Lie To Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "500": { - "Composer": "David Coverdale", - "album": { - "AlbumId": 40, - "Title": "Into The Light" - }, - "Name": "Wherever You May Go", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "501": { - "Composer": "Gonzaga Jr.", - "album": { - "AlbumId": 41, - "Title": "Meus Momentos" - }, - "Name": "Grito De Alerta", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "505": { - "Composer": "Gonzaga Jr/Gonzaguinha", - "album": { - "AlbumId": 41, - "Title": "Meus Momentos" - }, - "Name": "Sangrando", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "507": { - "Composer": "Gonzaga Jr.", - "album": { - "AlbumId": 41, - "Title": "Meus Momentos" - }, - "Name": "Lindo Lago Do Amor", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "509": { - "Composer": "Gonzaga Jr.", - "album": { - "AlbumId": 41, - "Title": "Meus Momentos" - }, - "Name": "Com A Perna No Mundo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "512": { - "Composer": "Gonzaga Jr", - "album": { - "AlbumId": 41, - "Title": "Meus Momentos" - }, - "Name": "Comportamento Geral", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "514": { - "Composer": "Gonzaguinha", - "album": { - "AlbumId": 41, - "Title": "Meus Momentos" - }, - "Name": "Espere Por Mim, Morena", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "515": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Meia-Lua Inteira", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "516": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Voce e Linda", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "517": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Um Indio", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "518": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Podres Poderes", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "519": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Voce Nao Entende Nada - Cotidiano", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "520": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "O Estrangeiro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "521": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Menino Do Rio", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "522": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Qualquer Coisa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "523": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Sampa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "524": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Queixa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "525": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "O Leaozinho", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "526": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Fora Da Ordem", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "527": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Terra", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "528": { - "Composer": null, - "album": { - "AlbumId": 23, - "Title": "Minha Historia" - }, - "Name": "Alegria, Alegria", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "543": { - "Composer": "Coverdale/Lord/Paice", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Burn", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "544": { - "Composer": "Coverdale", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Stormbringer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "545": { - "Composer": "Coverdale/Hughes/Lord/Paice", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Gypsy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "546": { - "Composer": "Coverdale", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Lady Double Dealer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "547": { - "Composer": "Coverdale", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Mistreated", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "548": { - "Composer": "Gillan/Glover/Lord/Paice", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Smoke On The Water", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "549": { - "Composer": "Coverdale/Lord/Paice", - "album": { - "AlbumId": 43, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "You Fool No One", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "550": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Custard Pie", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "551": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "The Rover", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "552": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "In My Time Of Dying", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "553": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Houses Of The Holy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "554": { - "Composer": "John Paul Jones", - "album": { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Trampled Under Foot", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "555": { - "Composer": "John Bonham", - "album": { - "AlbumId": 44, - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Kashmir", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "556": { - "Composer": "Guga/Marquinho Lessa/Tuninho Professor", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Imperatriz", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "557": { - "Composer": "Caruso/Cleber/Deo/Osmar", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Beija-Flor", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "558": { - "Composer": "Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Viradouro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "559": { - "Composer": "Domenil/J. Brito/Joaozinho/Rap, Marcelo Do", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Mocidade", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "560": { - "Composer": "Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Unidos Da Tijuca", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "561": { - "Composer": "Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Salgueiro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "565": { - "Composer": "Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Portela", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "566": { - "Composer": "Gule/Jorge 101/Lequinho/Luiz Piao", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Caprichosos", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "569": { - "Composer": "Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som", - "album": { - "AlbumId": 45, - "Title": "Sambas De Enredo 2001" - }, - "Name": "Tuiuti", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "570": { - "Composer": "Santana", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "(Da Le) Yaleo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "571": { - "Composer": "Carlos Santana & Dave Matthews", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Love Of My Life", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "572": { - "Composer": "E. Shrody", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Put Your Lights On", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "573": { - "Composer": "I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Africa Bamba", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "574": { - "Composer": "M. Itaal Shur & Rob Thomas", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Smooth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "575": { - "Composer": "L. Hill", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Do You Like The Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "576": { - "Composer": "W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Maria Maria", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "577": { - "Composer": "R. Taha, Carlos Santana & T. Lindsay", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Migra", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "578": { - "Composer": "F. Olivera", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Corazon Espinado", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "579": { - "Composer": "Eale-Eye Cherry, M. Simpson, J. King & M. Nishita", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Wishing It Was", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "580": { - "Composer": "Carlos Santana & KC Porter", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "El Farol", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "581": { - "Composer": "KC Porter & JB Eckl", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "Primavera", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "582": { - "Composer": "Carlos Santana & C. Thompson", - "album": { - "AlbumId": 46, - "Title": "Supernatural" - }, - "Name": "The Calling", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "584": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Manuel", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "586": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Um Contrato Com Deus", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "587": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Um Jantar Pra Dois", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "589": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Um Love", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "590": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Seis Da Tarde", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "591": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Baixo Rio", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "592": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Sombras Do Meu Destino", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "593": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Do You Have Other Loves?", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "594": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "Agora Que O Dia Acordou", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "596": { - "Composer": null, - "album": { - "AlbumId": 47, - "Title": "The Best of Ed Motta" - }, - "Name": "A Rua", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "597": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Now's The Time", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "598": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Jeru", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "599": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Compulsion", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "600": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Tempus Fugit", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "601": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Walkin'", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "602": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "'Round Midnight", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "603": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Bye Bye Blackbird", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "604": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "New Rhumba", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "605": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Generique", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "606": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Summertime", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "607": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "So What", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "608": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "The Pan Piper", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "609": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 48, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Someday My Prince Will Come", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "610": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "My Funny Valentine (Live)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "611": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "E.S.P.", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "612": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Nefertiti", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "613": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Petits Machins (Little Stuff)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "614": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Miles Runs The Voodoo Down", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "615": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Little Church (Live)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "616": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Black Satin", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "617": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Jean Pierre (Live)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "618": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Time After Time", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "619": { - "Composer": "Miles Davis", - "album": { - "AlbumId": 49, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Portia", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "620": { - "Composer": "Blackmore/Gillan/Glover/Lord/Paice", - "album": { - "AlbumId": 50, - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "Space Truckin'", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "621": { - "Composer": "Gillan/Glover/Lord/Nix - Blackmore/Paice", - "album": { - "AlbumId": 50, - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "Going Down / Highway Star", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "622": { - "Composer": "Blackmore/Coverdale", - "album": { - "AlbumId": 50, - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "Mistreated (Alternate Version)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "623": { - "Composer": "Blackmore/Coverdale/Lord/Paice", - "album": { - "AlbumId": 50, - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "You Fool No One (Alternate Version)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "624": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Jeepers Creepers", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "625": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Blue Rythm Fantasy", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "626": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Drum Boogie", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "627": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Let Me Off Uptown", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "628": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Leave Us Leap", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "629": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Opus No.1", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "630": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Boogie Blues", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "631": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "How High The Moon", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "632": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Disc Jockey Jump", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "633": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Up An' Atom", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "634": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Bop Boogie", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "635": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Lemon Drop", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "636": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Coronation Drop", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "637": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Overtime", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "638": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Imagination", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "639": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Don't Take Your Love From Me", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "640": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Midget", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "641": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "I'm Coming Virginia", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "642": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Payin' Them Dues Blues", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "643": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Jungle Drums", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "644": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Showcase", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "645": { - "Composer": null, - "album": { - "AlbumId": 51, - "Title": "Up An' Atom" - }, - "Name": "Swedish Schnapps", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "664": { - "Composer": null, - "album": { - "AlbumId": 53, - "Title": "Vozes do MPB" - }, - "Name": "Marina (Dorival Caymmi)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "665": { - "Composer": null, - "album": { - "AlbumId": 53, - "Title": "Vozes do MPB" - }, - "Name": "Aquarela (Toquinho)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "667": { - "Composer": null, - "album": { - "AlbumId": 53, - "Title": "Vozes do MPB" - }, - "Name": "Dona (Roupa Nova)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "670": { - "Composer": null, - "album": { - "AlbumId": 53, - "Title": "Vozes do MPB" - }, - "Name": "Romaria (Renato Teixeira)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "672": { - "Composer": null, - "album": { - "AlbumId": 53, - "Title": "Vozes do MPB" - }, - "Name": "Wave (Os Cariocas)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "673": { - "Composer": null, - "album": { - "AlbumId": 53, - "Title": "Vozes do MPB" - }, - "Name": "Garota de Ipanema (Dick Farney)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "675": { - "Composer": "Hawkins-Lewis-Broadwater", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Susie Q", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "676": { - "Composer": "Jay Hawkins", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "I Put A Spell On You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "677": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Proud Mary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "678": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Bad Moon Rising", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "679": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Lodi", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "680": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Green River", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "681": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Commotion", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "682": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Down On The Corner", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "683": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Fortunate Son", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "684": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Travelin' Band", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "685": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Who'll Stop The Rain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "686": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Up Around The Bend", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "687": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Run Through The Jungle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "688": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Lookin' Out My Back Door", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "689": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Long As I Can See The Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "690": { - "Composer": "Whitfield-Strong", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "I Heard It Through The Grapevine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "691": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Have You Ever Seen The Rain?", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "692": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Hey Tonight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "693": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Sweet Hitch-Hiker", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "694": { - "Composer": "J. C. Fogerty", - "album": { - "AlbumId": 54, - "Title": "Chronicle, Vol. 1" - }, - "Name": "Someday Never Comes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "695": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Walking On The Water", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "696": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Suzie-Q, Pt. 2", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "697": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Born On The Bayou", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "698": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Good Golly Miss Molly", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "699": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Tombstone Shadow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "700": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Wrote A Song For Everyone", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "701": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Night Time Is The Right Time", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "702": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Cotton Fields", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "703": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "It Came Out Of The Sky", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "704": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Don't Look Now", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "705": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "The Midnight Special", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "706": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Before You Accuse Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "707": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "My Baby Left Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "708": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Pagan Baby", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "709": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "(Wish I Could) Hideaway", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "710": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "It's Just A Thought", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "711": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Molina", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "712": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Born To Move", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "713": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Lookin' For A Reason", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "714": { - "Composer": "J.C. Fogerty", - "album": { - "AlbumId": 55, - "Title": "Chronicle, Vol. 2" - }, - "Name": "Hello Mary Lou", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "745": { - "Composer": "Bolin/Coverdale/Paice", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "Comin' Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "746": { - "Composer": "Cook/Coverdale", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "Lady Luck", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "747": { - "Composer": "Bolin/Hughes", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "Gettin' Tighter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "748": { - "Composer": "Bolin/Coverdale", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "Dealer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "749": { - "Composer": "Bolin/Coverdale", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "I Need Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "750": { - "Composer": "Bolin/Coverdale", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "Drifter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "751": { - "Composer": "Bolin/Coverdale", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "Love Child", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "752": { - "Composer": "Bolin/Hughes/Lord", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "This Time Around / Owed to 'G' [Instrumental]", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "753": { - "Composer": "Coverdale/Hughes", - "album": { - "AlbumId": 58, - "Title": "Come Taste The Band" - }, - "Name": "You Keep On Moving", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "754": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Speed King", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "755": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Bloodsucker", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "756": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Child In Time", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "757": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Flight Of The Rat", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "758": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Into The Fire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "759": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Living Wreck", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "760": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "AlbumId": 59, - "Title": "Deep Purple In Rock" - }, - "Name": "Hard Lovin' Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "761": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "Fireball", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "762": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "No No No", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "763": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "Strange Kind Of Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "764": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "Anyone's Daughter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "765": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "The Mule", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "766": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "Fools", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "767": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 60, - "Title": "Fireball" - }, - "Name": "No One Came", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "768": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Knocking At Your Back Door", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "769": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Bad Attitude", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "770": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Child In Time (Son Of Aleric - Instrumental)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "771": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Nobody's Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "772": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Black Night", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "773": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Perfect Strangers", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "774": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "The Unwritten Law", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "775": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Call Of The Wild", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "776": { - "Composer": "South", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Hush", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "777": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Smoke On The Water", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "778": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "AlbumId": 61, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Space Trucking", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "779": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Highway Star", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "780": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Maybe I'm A Leo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "781": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Pictures Of Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "782": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Never Before", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "783": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Smoke On The Water", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "784": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Lazy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "785": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "AlbumId": 62, - "Title": "Machine Head" - }, - "Name": "Space Truckin'", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "786": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Vavoom : Ted The Mechanic", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "787": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Loosen My Strings", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "788": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Soon Forgotten", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "789": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Sometimes I Feel Like Screaming", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "790": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Cascades : I'm Not Your Lover", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "791": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "The Aviator", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "792": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Rosa's Cantina", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "793": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "A Castle Full Of Rascals", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "794": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "A Touch Away", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "795": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Hey Cisco", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "796": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "Somebody Stole My Guitar", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "797": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "AlbumId": 63, - "Title": "Purpendicular" - }, - "Name": "The Purpendicular Waltz", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "798": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "King Of Dreams", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "799": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "The Cut Runs Deep", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "800": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Fire In The Basement", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "801": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Truth Hurts", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "802": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Breakfast In Bed", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "803": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Love Conquers All", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "804": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Fortuneteller", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "805": { - "Composer": "Turner, Held, Greenwood", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Too Much Is Not Enough", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "806": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "AlbumId": 64, - "Title": "Slaves And Masters" - }, - "Name": "Wicked Ways", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "807": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "Stormbringer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "808": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "Love Don't Mean a Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "809": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "Holy Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "810": { - "Composer": "D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "Hold On", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "811": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "Lady Double Dealer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "812": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "You Can't Do it Right (With the One You Love)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "813": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "High Ball Shooter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "814": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "The Gypsy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "815": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "album": { - "AlbumId": 65, - "Title": "Stormbringer" - }, - "Name": "Soldier Of Fortune", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "816": { - "Composer": "ian paice/jon lord", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "The Battle Rages On", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "817": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Lick It Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "818": { - "Composer": "jon lord/roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Anya", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "819": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Talk About Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "820": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Time To Kill", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "821": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Ramshackle Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "822": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "A Twist In The Tail", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "823": { - "Composer": "jon lord/roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Nasty Piece Of Work", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "824": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "Solitaire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "825": { - "Composer": "roger glover", - "album": { - "AlbumId": 66, - "Title": "The Battle Rages On" - }, - "Name": "One Man's Meat", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "826": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Pour Some Sugar On Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "827": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Photograph", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "828": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Love Bites", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "829": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Let's Get Rocked", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "830": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Two Steps Behind [Acoustic Version]", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "831": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Animal", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "832": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Heaven Is", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "833": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Rocket", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "834": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "When Love & Hate Collide", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "835": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Action", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "836": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Make Love Like A Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "837": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Armageddon It", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "838": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Have You Ever Needed Someone So Bad", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "839": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Rock Of Ages", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "840": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Hysteria", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "841": { - "Composer": null, - "album": { - "AlbumId": 67, - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Bringin' On The Heartbreak", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "842": { - "Composer": "Jim Beard", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Roll Call", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "843": { - "Composer": "John Scofield, Robert Aries, Milton Chambers and Gary Grainger", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Otay", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "844": { - "Composer": "Jim Beard", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Groovus Interruptus", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "845": { - "Composer": "Jon Herington", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Paris On Mine", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "846": { - "Composer": "Sylvester Stewart", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "In Time", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "847": { - "Composer": "Dean Brown, Dennis Chambers & Jim Beard", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Plan B", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "848": { - "Composer": "Jim Beard & Jon Herington", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Outbreak", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "849": { - "Composer": "John Scofield", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Baltimore, DC", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "850": { - "Composer": "James Brown & Bobby Byrd", - "album": { - "AlbumId": 68, - "Title": "Outbreak" - }, - "Name": "Talkin Loud and Saying Nothin", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "852": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Meu Bem-Querer", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "853": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Cigano", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "854": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Boa Noite", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "855": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Fato Consumado", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "858": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Esquinas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "859": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Se...", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "860": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Eu Te Devoro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "862": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Acelerou", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "863": { - "Composer": null, - "album": { - "AlbumId": 69, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Um Amor Puro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "864": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Samurai", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "865": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Nem Um Dia", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "866": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Oceano", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "868": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Serrado", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "869": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Flor De Lis", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "871": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Azul", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "872": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Seduzir", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "873": { - "Composer": "Djavan - Gabriel, O Pensador", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "A Carta", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "874": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Sina", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "875": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Acelerou", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "876": { - "Composer": "Djavan", - "album": { - "AlbumId": 70, - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Um Amor Puro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "891": { - "Composer": "Clapton/Gordon", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Layla", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "892": { - "Composer": "Clapton/Harrison", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Badge", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "893": { - "Composer": "Bruce/Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "I Feel Free", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "894": { - "Composer": "Bruce/Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Sunshine Of Your Love", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "895": { - "Composer": "Clapton/Robert Johnson Arr: Eric Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Crossroads", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "896": { - "Composer": "Clapton/Collins/Pappalardi", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Strange Brew", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "897": { - "Composer": "Bruce/Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "White Room", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "898": { - "Composer": "Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Bell Bottom Blues", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "899": { - "Composer": "Cale/Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Cocaine", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "900": { - "Composer": "Marley", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "I Shot The Sheriff", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "901": { - "Composer": "Clapton/J. J. Cale", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "After Midnight", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "902": { - "Composer": "Clapton/Trad. Arr. Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Swing Low Sweet Chariot", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "903": { - "Composer": "Clapton/Levy", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Lay Down Sally", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "904": { - "Composer": "Clapton/Dylan", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Knockin On Heavens Door", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "905": { - "Composer": "Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Wonderful Tonight", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "906": { - "Composer": "Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Let It Grow", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "907": { - "Composer": "Clapton/F.eldman/Linn", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "Promises", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "908": { - "Composer": "Clapton", - "album": { - "AlbumId": 72, - "Title": "The Cream Of Clapton" - }, - "Name": "I Can't Stand It", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "909": { - "Composer": "Eric Clapton", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Signe", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "910": { - "Composer": "Eugene McDaniel", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Before You Accuse Me", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "911": { - "Composer": "Big Bill Broonzy", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Hey Hey", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "912": { - "Composer": "Eric Clapton, Will Jennings", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Tears In Heaven", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "913": { - "Composer": "Eric Clapton", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Lonely Stranger", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "914": { - "Composer": "Jimmy Cox", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Nobody Knows You When You're Down & Out", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "915": { - "Composer": "Eric Clapton, Jim Gordon", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Layla", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "916": { - "Composer": "Jerry Lynn Williams", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Running On Faith", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "917": { - "Composer": "Robert Johnson", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Walkin' Blues", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "918": { - "Composer": "Traditional", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Alberta", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "919": { - "Composer": "Jesse Fuller", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "San Francisco Bay Blues", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "920": { - "Composer": "Robert Johnson", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Malted Milk", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "921": { - "Composer": "Eric Clapton, Robert Cray", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Old Love", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "922": { - "Composer": "McKinley Morgenfield (Muddy Waters)", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Rollin' And Tumblin'", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "923": { - "Composer": "Jon Hudson/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Collision", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "924": { - "Composer": "Jon Hudson/Mike Bordin/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Stripsearch", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "925": { - "Composer": "Bill Gould/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Last Cup Of Sorrow", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "926": { - "Composer": "Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Naked In Front Of The Computer", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "927": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Helpless", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "928": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Mouth To Mouth", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "929": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Ashes To Ashes", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "930": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "She Loves Me Not", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "931": { - "Composer": "Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Got That Feeling", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "932": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Paths Of Glory", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "933": { - "Composer": "Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Home Sick Home", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "934": { - "Composer": "Bill Gould/Mike Patton", - "album": { - "AlbumId": 74, - "Title": "Album Of The Year" - }, - "Name": "Pristina", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "935": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Land Of Sunshine", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "936": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Caffeine", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "937": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Midlife Crisis", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "938": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "RV", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "939": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Smaller And Smaller", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "940": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Everything's Ruined", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "941": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Malpractice", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "942": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Kindergarten", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "943": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Be Aggressive", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "944": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "A Small Victory", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "945": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Crack Hitler", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "946": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Jizzlobber", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "947": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Midnight Cowboy", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "948": { - "Composer": null, - "album": { - "AlbumId": 75, - "Title": "Angel Dust" - }, - "Name": "Easy", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "949": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Get Out", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "950": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Ricochet", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "951": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Evidence", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "952": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "The Gentle Art Of Making Enemies", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "953": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Star A.D.", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "954": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Cuckoo For Caca", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "955": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Caralho Voador", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "956": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Ugly In The Morning", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "957": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Digging The Grave", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "958": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Take This Bottle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "959": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "King For A Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "960": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "What A Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "961": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "The Last To Know", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "962": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Just A Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "963": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "AlbumId": 76, - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Absolute Zero", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "964": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "From Out Of Nowhere", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "965": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Epic", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "966": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Falling To Pieces", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "967": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Surprise! You're Dead!", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "968": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Zombie Eaters", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "969": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "The Real Thing", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "970": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Underwater Love", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "971": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "The Morning After", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "972": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Woodpecker From Mars", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "973": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "War Pigs", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "974": { - "Composer": "Faith No More", - "album": { - "AlbumId": 77, - "Title": "The Real Thing" - }, - "Name": "Edge Of The World", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "975": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Deixa Entrar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "976": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Falamansa Song", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "977": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Xote Dos Milagres", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "981": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Zeca Violeiro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "982": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Avisa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "983": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Principiando/Decolagem", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "984": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Asas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "985": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Medo De Escuro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "987": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Minha Gata", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "988": { - "Composer": null, - "album": { - "AlbumId": 78, - "Title": "Deixa Entrar" - }, - "Name": "Desaforo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "989": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "In Your Honor", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "990": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "No Way Back", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "991": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Best Of You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "992": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "DOA", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "993": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Hell", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "994": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "The Last Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "995": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Free Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "996": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Resolve", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "997": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "The Deepest Blues Are Black", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "998": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "AlbumId": 79, - "Title": "In Your Honor [Disc 1]" - }, - "Name": "End Over End", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "999": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Still", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1000": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "What If I Do?", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1001": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Miracle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1002": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Another Round", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1003": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Friend Of A Friend", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1004": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Over And Out", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1005": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "On The Mend", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1006": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Virginia Moon", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1007": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Cold Day In The Sun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1008": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "AlbumId": 80, - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Razor", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1009": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "All My Life", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1010": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Low", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1011": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Have It All", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1012": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Times Like These", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1013": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Disenchanted Lullaby", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1014": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Tired Of You", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1015": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Halo", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1016": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Lonely As You", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1017": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Overdrive", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1018": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Burn Away", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1019": { - "Composer": "Foo Fighters", - "album": { - "AlbumId": 81, - "Title": "One By One" - }, - "Name": "Come Back", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1020": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Doll", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1021": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Monkey Wrench", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1022": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Hey, Johnny Park!", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1023": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "My Poor Brain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1024": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Wind Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1025": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Up In Arms", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1026": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "My Hero", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1027": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "See You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1028": { - "Composer": "Dave Grohl", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Enough Space", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1029": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "February Stars", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1030": { - "Composer": "Dave Grohl", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Everlong", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1031": { - "Composer": "Dave Grohl", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "Walking After You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1032": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "AlbumId": 82, - "Title": "The Colour And The Shape" - }, - "Name": "New Way Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1034": { - "Composer": "berthold kaempfert/charles singleton/eddie snyder", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Strangers In The Night", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1035": { - "Composer": "fred ebb/john kander", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "New York, New York", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1036": { - "Composer": "cole porter", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "I Get A Kick Out Of You", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1037": { - "Composer": "carson c. parks", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Something Stupid", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1038": { - "Composer": "henry mancini/johnny mercer", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Moon River", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1039": { - "Composer": "carl sigman/gilbert becaud/pierre leroyer", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "What Now My Love", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1040": { - "Composer": "hans bradtke/heinz meier/johnny mercer", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Summer Love", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1041": { - "Composer": "orlando murden/ronald miller", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "For Once In My Life", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1042": { - "Composer": "jimmy van heusen/sammy cahn", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Love And Marriage", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1043": { - "Composer": "george gershwin/ira gershwin", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "They Can't Take That Away From Me", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1044": { - "Composer": "jimmy van heusen/sammy cahn", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "My Kind Of Town", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1045": { - "Composer": "bart howard", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Fly Me To The Moon", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1046": { - "Composer": "cole porter", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "I've Got You Under My Skin", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1047": { - "Composer": "carolyn leigh/cy coleman", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "The Best Is Yet To Come", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1048": { - "Composer": "ervin drake", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "It Was A Very Good Year", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1049": { - "Composer": "jimmy van heusen/sammy cahn", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Come Fly With Me", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1050": { - "Composer": "dean kay thompson/kelly gordon", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "That's Life", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1051": { - "Composer": "antonio carlos jobim/norman gimbel/vinicius de moraes", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "The Girl From Ipanema", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1052": { - "Composer": "lorenz hart/richard rodgers", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "The Lady Is A Tramp", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1053": { - "Composer": "jim croce", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Bad, Bad Leroy Brown", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1054": { - "Composer": "bert brecht/kurt weill/marc blitzstein", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Mack The Knife", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1055": { - "Composer": "rod mckuen", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Loves Been Good To Me", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1056": { - "Composer": "alan bergman/marilyn bergman/peggy lipton jones/quincy jones", - "album": { - "AlbumId": 83, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "L.A. Is My Lady", - "genre": { - "Name": "Easy Listening", - "GenreId": 12 - } - }, - "1057": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Entrando Na Sua (Intro)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1058": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Nervosa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1059": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Funk De Bamba (Com Fernanda Abreu)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1063": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Funk Hum", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1064": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Forty Days (Com DJ Hum)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1065": { - "Composer": "Emerson Villani", - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Balada Da Paula", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1066": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Dujji", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1067": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Meu Guarda-Chuva", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1069": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Whistle Stop", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1070": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "16 Toneladas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1071": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Divirta-Se (Saindo Da Sua)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1072": { - "Composer": null, - "album": { - "AlbumId": 84, - "Title": "Roda De Funk" - }, - "Name": "Forty Days Instrumental", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1088": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Palco (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1089": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Is This Love (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1090": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Stir It Up (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1091": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Refavela (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1092": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Vendedor De Caranguejo (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1093": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Quanta (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1094": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Estrela (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1095": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Pela Internet (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1098": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Copacabana (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1099": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "A Novidade (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1100": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Ghandi (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1101": { - "Composer": null, - "album": { - "AlbumId": 86, - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "De Ouro E Marfim (Live)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1105": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "A Novidade", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1106": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Tenho Sede", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1107": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Refazenda", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1108": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Realce", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1111": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "A Paz", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1112": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Beira Mar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1113": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Sampa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1115": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Tempo Rei", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1116": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Expresso 2222", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1118": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Palco", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1119": { - "Composer": "Gilberto Gil", - "album": { - "AlbumId": 73, - "Title": "Unplugged" - }, - "Name": "Toda Menina Baiana", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1121": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Straight Out Of Line", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1122": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Faceless", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1123": { - "Composer": "Sully Erna; Tony Rombola", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Changes", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1124": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Make Me Believe", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1125": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "I Stand Alone", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1126": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Re-Align", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1127": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "I Fucking Hate You", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1128": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Releasing The Demons", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1129": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Dead And Broken", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1130": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "I Am", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1131": { - "Composer": "Sully Erna", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "The Awakening", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1132": { - "Composer": "Sully Erna; Tony Rombola", - "album": { - "AlbumId": 88, - "Title": "Faceless" - }, - "Name": "Serenity", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1134": { - "Composer": "Billie Joe Armstrong/Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1137": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "Are We The Waiting", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1138": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "St. Jimmy", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1139": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "Give Me Novacaine", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1140": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "She's A Rebel", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1141": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "Extraordinary Girl", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1142": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "Letterbomb", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1145": { - "Composer": "Green Day", - "album": { - "AlbumId": 89, - "Title": "American Idiot" - }, - "Name": "Whatsername", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1146": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Welcome to the Jungle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1147": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "It's So Easy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1148": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Nightrain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1149": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Out Ta Get Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1150": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Mr. Brownstone", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1151": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Paradise City", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1152": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "My Michelle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1153": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Think About You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1154": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Sweet Child O' Mine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1155": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "You're Crazy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1156": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Anything Goes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1157": { - "Composer": null, - "album": { - "AlbumId": 90, - "Title": "Appetite for Destruction" - }, - "Name": "Rocket Queen", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1158": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Right Next Door to Hell", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1159": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Dust N' Bones", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1160": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Live and Let Die", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1161": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Don't Cry (Original)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1162": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Perfect Crime", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1163": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "You Ain't the First", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1164": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Bad Obsession", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1165": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Back off Bitch", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1166": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Double Talkin' Jive", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1167": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "November Rain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1168": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "The Garden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1169": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Garden of Eden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1170": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Don't Damn Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1171": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Bad Apples", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1172": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Dead Horse", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1173": { - "Composer": null, - "album": { - "AlbumId": 91, - "Title": "Use Your Illusion I" - }, - "Name": "Coma", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1174": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Civil War", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1175": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "14 Years", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1176": { - "Composer": "Billy/Del James/W. Axl Rose/West Arkeen", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Yesterdays", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1177": { - "Composer": "Bob Dylan", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Knockin' On Heaven's Door", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1178": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Get In The Ring", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1179": { - "Composer": "W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Shotgun Blues", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1180": { - "Composer": "W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Breakdown", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1181": { - "Composer": "Izzy Stradlin'", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Pretty Tied Up", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1182": { - "Composer": "Slash/W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Locomotive", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1183": { - "Composer": "Duff McKagan", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "So Fine", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1184": { - "Composer": "W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Estranged", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1185": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "You Could Be Mine", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1186": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "Don't Cry", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1187": { - "Composer": "W. Axl Rose", - "album": { - "AlbumId": 92, - "Title": "Use Your Illusion II" - }, - "Name": "My World", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1188": { - "Composer": "Richard Bull", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Colibri", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1189": { - "Composer": "R. Carless", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Love Is The Colour", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1190": { - "Composer": "Patrick Claher/Richard Bull", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Magnetic Ocean", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1191": { - "Composer": "Richard Bull", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Deep Waters", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1192": { - "Composer": "Kevin Robinson/Richard Bull", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "L'Arc En Ciel De Miles", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1193": { - "Composer": "Kevin Robinson", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Gypsy", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1194": { - "Composer": "Jean Paul Maunick", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Journey Into Sunlight", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1195": { - "Composer": "Graham Harvey", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Sunchild", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1196": { - "Composer": "Maxton Gig Beesley Jnr.", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Millenium", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1197": { - "Composer": "Fayyaz Virgi/Richard Bull", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Thinking 'Bout Tomorrow", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1198": { - "Composer": "Julian Crampton", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Jacob's Ladder", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1199": { - "Composer": "G Harvey/R Hope-Taylor", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "She Wears Black", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1200": { - "Composer": "Jean Paul Maunick", - "album": { - "AlbumId": 93, - "Title": "Blue Moods" - }, - "Name": "Dark Side Of The Cog", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1201": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "Different World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1202": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "These Colours Don't Run", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1203": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "Brighter Than a Thousand Suns", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1204": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "The Pilgrim", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1205": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "The Longest Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1206": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "Out of the Shadows", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1207": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "The Reincarnation of Benjamin Breeg", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1208": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "For the Greater Good of God", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1209": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "Lord of Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1210": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "The Legacy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1211": { - "Composer": null, - "album": { - "AlbumId": 94, - "Title": "A Matter of Life and Death" - }, - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1212": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1213": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1214": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Prowler", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1215": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Transylvania", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1216": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Remember Tomorrow", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1217": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Where Eagles Dare", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1218": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1219": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Running Free", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1220": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Run To The Hilss", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1221": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1222": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1223": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 95, - "Title": "A Real Dead One" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1224": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Be Quick Or Be Dead", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1225": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "From Here To Eternity", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1226": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Can I Play With Madness", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1227": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Wasting Love", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1228": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Tailgunner", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1229": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1230": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Afraid To Shoot Strangers", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1231": { - "Composer": "Bruce Dickinson", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Bring Your Daughter... To The Slaughter", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1232": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Heaven Can Wait", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1233": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "The Clairvoyant", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1234": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 96, - "Title": "A Real Live One" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1235": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "The Wicker Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1236": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "Ghost Of The Navigator", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1237": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "Brave New World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1238": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "Blood Brothers", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1239": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "The Mercenary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1240": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "Dream Of Mirrors", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1241": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "The Fallen Angel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1242": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "The Nomad", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1243": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "Out Of The Silent Planet", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1244": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 97, - "Title": "Brave New World" - }, - "Name": "The Thin Line Between Love & Hate", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1245": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Wildest Dreams", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1246": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Rainmaker", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1247": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "No More Lies", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1248": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Montsegur", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1249": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Dance Of Death", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1250": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Gates Of Tomorrow", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1251": { - "Composer": "Adrian Smith/Bruce Dickinson/Nicko McBrain", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "New Frontier", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1252": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Paschendale", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1253": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Face In The Sand", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1254": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Age Of Innocence", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1255": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "AlbumId": 98, - "Title": "Dance Of Death" - }, - "Name": "Journeyman", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1256": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Be Quick Or Be Dead", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1257": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "From Here To Eternity", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1258": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Afraid To Shoot Strangers", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1259": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Fear Is The Key", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1260": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Childhood's End", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1261": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Wasting Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1262": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "The Fugitive", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1263": { - "Composer": "Bruce Dickinson/David Murray", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Chains Of Misery", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1264": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "The Apparition", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1265": { - "Composer": "Bruce Dickinson/David Murray", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Judas Be My Guide", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1266": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Weekend Warrior", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1267": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 99, - "Title": "Fear Of The Dark" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1268": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "01 - Prowler", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1269": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "02 - Sanctuary", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1272": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "05 - Phantom of the Opera", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1273": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "06 - Transylvania", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1274": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "07 - Strange World", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1275": { - "Composer": "Murray Dave", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "08 - Charlotte the Harlot", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1276": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 100, - "Title": "Iron Maiden" - }, - "Name": "09 - Iron Maiden", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "1277": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "The Ides Of March", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1278": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1279": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Murders In The Rue Morgue", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1280": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Another Life", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1281": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Genghis Khan", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1283": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Killers", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1284": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Prodigal Son", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1285": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Purgatory", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1286": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 101, - "Title": "Killers" - }, - "Name": "Drifter", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1287": { - "Composer": null, - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Intro- Churchill S Speech", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1288": { - "Composer": null, - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Aces High", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1289": { - "Composer": "Smith/Dickinson", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1290": { - "Composer": "Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1291": { - "Composer": "Dickinson", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Revelations", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1292": { - "Composer": "Smith/Dickinson", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Flight Of Icarus", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1293": { - "Composer": null, - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Rime Of The Ancient Mariner", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1294": { - "Composer": null, - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Powerslave", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1295": { - "Composer": "Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1296": { - "Composer": "Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1297": { - "Composer": "Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1298": { - "Composer": "Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Run To The Hills", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1299": { - "Composer": "Harris/Di Anno", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Running Free", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1300": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1301": { - "Composer": null, - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Acacia Avenue", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1302": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Children Of The Damned", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1303": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Die With Your Boots On", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1304": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 102, - "Title": "Live After Death" - }, - "Name": "Phantom Of The Opera", - "genre": { - "Name": "Heavy Metal", - "GenreId": 13 - } - }, - "1305": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Be Quick Or Be Dead", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1306": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1307": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1308": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "From Here To Eternity", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1309": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Can I Play With Madness", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1310": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Wasting Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1311": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Tailgunner", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1312": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1313": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Afraid To Shoot Strangers", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1314": { - "Composer": null, - "album": { - "AlbumId": 103, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1315": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Bring Your Daughter... To The Slaughter...", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1316": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "The Clairvoyant", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1317": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Heaven Can Wait", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1318": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Run To The Hills", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1319": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1320": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1321": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1322": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "The Trooper", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1323": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1324": { - "Composer": null, - "album": { - "AlbumId": 104, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Running Free", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1325": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Tailgunner", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1326": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Holy Smoke", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1327": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "No Prayer For The Dying", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1328": { - "Composer": "Bruce Dickinson/David Murray", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Public Enema Number One", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1329": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Fates Warning", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1330": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "The Assassin", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1331": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Run Silent Run Deep", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1332": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Hooks In You", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1333": { - "Composer": "Bruce Dickinson", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Bring Your Daughter... ...To The Slaughter", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1334": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 105, - "Title": "No Prayer For The Dying" - }, - "Name": "Mother Russia", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1335": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Where Eagles Dare", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1336": { - "Composer": "Bruce Dickinson", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Revelations", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1337": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Flight Of The Icarus", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1338": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Die With Your Boots On", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1339": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1340": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Still Life", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1341": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Quest For Fire", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1342": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "Sun And Steel", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1343": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 106, - "Title": "Piece Of Mind" - }, - "Name": "To Tame A Land", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1344": { - "Composer": "Harris", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Aces High", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1345": { - "Composer": "Smith/Dickinson", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1346": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Losfer Words", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1347": { - "Composer": "Dickinson", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Flash of The Blade", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1348": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Duelists", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1349": { - "Composer": "Dickinson/Smith", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Back in the Village", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1350": { - "Composer": "Dickinson", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Powerslave", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1351": { - "Composer": "Harris", - "album": { - "AlbumId": 107, - "Title": "Powerslave" - }, - "Name": "Rime of the Ancient Mariner", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1352": { - "Composer": null, - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "Intro", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1353": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "The Wicker Man", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1354": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "Ghost Of The Navigator", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1355": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "Brave New World", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1356": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1357": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1358": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "Blood Brothers", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1359": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "Sign Of The Cross", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1360": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "The Mercenary", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1361": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 108, - "Title": "Rock In Rio [CD1]" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1362": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "Dream Of Mirrors", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1363": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "The Clansman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1364": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1365": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1366": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1367": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1368": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1369": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1370": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 109, - "Title": "Rock In Rio [CD2]" - }, - "Name": "Run To The Hills", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1371": { - "Composer": "Adrian Smith; Bruce Dickinson", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Moonchild", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1372": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Infinite Dreams", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1373": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Can I Play With Madness", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1374": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1375": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Seventh Son of a Seventh Son", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1376": { - "Composer": "Dave Murray; Steve Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "The Prophecy", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1377": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "The Clairvoyant", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1378": { - "Composer": "Bruce Dickinson; Harris", - "album": { - "AlbumId": 110, - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Only the Good Die Young", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1379": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "Caught Somewhere in Time", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1380": { - "Composer": "Adrian Smith", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "Wasted Years", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1381": { - "Composer": "Adrian Smith", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "Sea of Madness", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1382": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "Heaven Can Wait", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1383": { - "Composer": "Adrian Smith", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "Stranger in a Strange Land", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1384": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "Alexander the Great", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1385": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "De Ja Vu", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1386": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 111, - "Title": "Somewhere in Time" - }, - "Name": "The Loneliness of the Long Dis", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1387": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "22 Acacia Avenue", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1388": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "Children of the Damned", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1389": { - "Composer": "Adrian Smith/Clive Burr/Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "Gangland", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1390": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1391": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "Invaders", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1392": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "Run to the Hills", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1393": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1394": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "AlbumId": 112, - "Title": "The Number of The Beast" - }, - "Name": "The Prisoner", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1395": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Sign Of The Cross", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1396": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Lord Of The Flies", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1397": { - "Composer": "Blaze Bayley/Janick Gers", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Man On The Edge", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1398": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Fortunes Of War", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1399": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Look For The Truth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1400": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "The Aftermath", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1401": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Judgement Of Heaven", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1402": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "Blood On The World's Hands", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1403": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "The Edge Of Darkness", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1404": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "2 A.M.", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1405": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "AlbumId": 113, - "Title": "The X Factor" - }, - "Name": "The Unbeliever", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1406": { - "Composer": "Blaze Bayley/Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "Futureal", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1407": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "The Angel And The Gambler", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1408": { - "Composer": "David Murray/Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "Lightning Strikes Twice", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1409": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "The Clansman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1410": { - "Composer": "Blaze Bayley/David Murray/Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "When Two Worlds Collide", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1411": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "The Educated Fool", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1412": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "Don't Look To The Eyes Of A Stranger", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1413": { - "Composer": "Blaze Bayley/Janick Gers", - "album": { - "AlbumId": 114, - "Title": "Virtual XI" - }, - "Name": "Como Estais Amigos", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1414": { - "Composer": "James Brown/Johnny Terry", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Please Please Please", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1415": { - "Composer": "Lowman Pauling", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Think", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1416": { - "Composer": "Jimmy Forrest/Lewis C. Simpkins/Oscar Washington", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Night Train", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1417": { - "Composer": "Ted Wright", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Out Of Sight", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1418": { - "Composer": "James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Papa's Got A Brand New Bag Pt.1", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1419": { - "Composer": "James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "I Got You (I Feel Good)", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1420": { - "Composer": "Betty Newsome/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "It's A Man's Man's Man's World", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1421": { - "Composer": "Alfred Ellis/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Cold Sweat", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1422": { - "Composer": "Alfred Ellis/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1423": { - "Composer": "Bobby Byrd/James Brown/Ron Lenhoff", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Get Up (I Feel Like Being A) Sex Machine", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1424": { - "Composer": "Addie William Jones/Nat Jones", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Hey America", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1425": { - "Composer": "Charles Bobbitt/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Make It Funky Pt.1", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1426": { - "Composer": "Charles Bobbitt/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "I'm A Greedy Man Pt.1", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1427": { - "Composer": "Fred Wesley/James Brown/Joseph Mims", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Get On The Good Foot", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1428": { - "Composer": "Deanna Brown/Deidra Jenkins/Yamma Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Get Up Offa That Thing", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1429": { - "Composer": "Brad Shapiro/George Jackson/Robert Miller/Walter Shaw", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "It's Too Funky In Here", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1430": { - "Composer": "Charlie Midnight/Dan Hartman", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Living In America", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1431": { - "Composer": "Full Force/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "I'm Real", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1432": { - "Composer": "Fred Wesley/James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Hot Pants Pt.1", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1433": { - "Composer": "James Brown", - "album": { - "AlbumId": 115, - "Title": "Sex Machine" - }, - "Name": "Soul Power (Live)", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1434": { - "Composer": "Jay Kay/Kay, Jay", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "When You Gonna Learn (Digeridoo)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1435": { - "Composer": "Smith, Toby", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Too Young To Die", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1436": { - "Composer": "Smith, Toby", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Hooked Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1437": { - "Composer": "Gelder, Nick van", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "If I Like It, I Do It", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1438": { - "Composer": "Smith, Toby", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Music Of The Wind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1439": { - "Composer": "Smith, Toby", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Emergency On Planet Earth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1440": { - "Composer": "Jay Kay/Kay, Jay", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Whatever It Is, I Just Can't Stop", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1441": { - "Composer": "Smith, Toby", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Blow Your Mind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1442": { - "Composer": "Smith, Toby", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Revolution 1993", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1443": { - "Composer": "Buchanan, Wallis", - "album": { - "AlbumId": 116, - "Title": "Emergency On Planet Earth" - }, - "Name": "Didgin' Out", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1444": { - "Composer": "Jay Kay", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Canned Heat", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1445": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Planet Home", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1446": { - "Composer": "Jay Kay", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Black Capricorn Day", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1447": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Soul Education", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1448": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Failling", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1449": { - "Composer": "Derrick McKenzie/Jay Kay/Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Destitute Illusions", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1450": { - "Composer": "Jay Kay", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Supersonic", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1451": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Butterfly", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1452": { - "Composer": "Jay Kay", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Were Do We Go From Here", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1453": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "King For A Day", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1454": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 117, - "Title": "Synkronized" - }, - "Name": "Deeper Underground", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1455": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Just Another Story", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1456": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Stillness In Time", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1457": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Half The Man", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1458": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Light Years", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1459": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Manifest Destiny", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1460": { - "Composer": "Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "The Kids", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1461": { - "Composer": "Stuard Zender/Toby Smith", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Mr. Moon", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1462": { - "Composer": "Stuart Zender", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Scam", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1463": { - "Composer": "Toby Smith/Wallis Buchanan", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Journey To Arnhemland", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1464": { - "Composer": "J. Kay/Jay Kay", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Morning Glory", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1465": { - "Composer": "J. Kay/Jay Kay", - "album": { - "AlbumId": 118, - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Space Cowboy", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "1466": { - "Composer": "C. Cester/C. Muncey", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Last Chance", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1467": { - "Composer": "C. Muncey/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Are You Gonna Be My Girl", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1468": { - "Composer": "C. Cester/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Rollover D.J.", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1469": { - "Composer": "N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Look What You've Done", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1470": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Get What You Need", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1471": { - "Composer": "C. Cester/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Move On", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1472": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Radio Song", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1473": { - "Composer": "C. Cester/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Get Me Outta Here", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1474": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Cold Hard Bitch", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1475": { - "Composer": "C. Muncey/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Come Around Again", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1476": { - "Composer": "C. Muncey/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Take It Or Leave It", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1477": { - "Composer": "C. Cester/N. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Lazy Gun", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1478": { - "Composer": "C. Cester", - "album": { - "AlbumId": 119, - "Title": "Get Born" - }, - "Name": "Timothy", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "1479": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Foxy Lady", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1480": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Manic Depression", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1481": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Red House", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1482": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Can You See Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1483": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Love Or Confusion", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1484": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "I Don't Live Today", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1485": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "May This Be Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1486": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Fire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1487": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Third Stone From The Sun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1488": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Remember", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1489": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Are You Experienced?", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1490": { - "Composer": "Billy Roberts", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Hey Joe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1491": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Stone Free", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1492": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Purple Haze", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1493": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "51st Anniversary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1494": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "The Wind Cries Mary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1495": { - "Composer": "Jimi Hendrix", - "album": { - "AlbumId": 120, - "Title": "Are You Experienced?" - }, - "Name": "Highway Chile", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1496": { - "Composer": null, - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Surfing with the Alien", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1497": { - "Composer": null, - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Ice 9", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1498": { - "Composer": null, - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Crushing Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1499": { - "Composer": null, - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Always With Me, Always With You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1500": { - "Composer": null, - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Satch Boogie", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1501": { - "Composer": "J. Satriani", - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Hill of the Skull", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1502": { - "Composer": null, - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Circles", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1503": { - "Composer": "J. Satriani", - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Lords of Karma", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1504": { - "Composer": "J. Satriani", - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Midnight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1505": { - "Composer": "J. Satriani", - "album": { - "AlbumId": 121, - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Echo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1506": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Engenho De Dentro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1507": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Alcohol", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1508": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Mama Africa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1509": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Salve Simpatia", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1513": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Charles Anjo 45", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1516": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Que Maravilha", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1517": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Santa Clara Clareou", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1518": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Filho Maravilha", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1519": { - "Composer": null, - "album": { - "AlbumId": 122, - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Taj Mahal", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1520": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "Rapidamente", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1521": { - "Composer": "Hyldon", - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "As Dores do Mundo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1522": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "Vou Pra Ai", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1523": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "My Brother", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1528": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "A Tarde", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1529": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "Always Be All Right", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1530": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "Sem Sentido", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1531": { - "Composer": null, - "album": { - "AlbumId": 123, - "Title": "Jota Quest-1995" - }, - "Name": "Onibusfobia", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1546": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "The Green Manalishi", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1547": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Living After Midnight", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1548": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Breaking The Law (Live)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1549": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Hot Rockin'", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1550": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Heading Out To The Highway (Live)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1551": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "The Hellion", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1552": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Electric Eye", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1553": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "You've Got Another Thing Comin'", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1554": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Turbo Lover", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1555": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Freewheel Burning", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1556": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Some Heads Are Gonna Roll", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1557": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Metal Meltdown", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1558": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Ram It Down", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1559": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Diamonds And Rust (Live)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1560": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Victim Of Change (Live)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1561": { - "Composer": null, - "album": { - "AlbumId": 125, - "Title": "Living After Midnight" - }, - "Name": "Tyrant (Live)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1562": { - "Composer": "Paul Stanley, Ace Frehley", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Comin' Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1563": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Plaster Caster", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1564": { - "Composer": "Gene Simmons, Stephen Coronel", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Goin' Blind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1565": { - "Composer": "Paul Stanley, Bob Ezrin, Kim Fowley", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Do You Love Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1566": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Domino", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1567": { - "Composer": "Paul Stanley, Vincent Poncia", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Sure Know Something", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1568": { - "Composer": "Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "A World Without Heroes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1569": { - "Composer": "Paul Stanley, Ace Frehley", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Rock Bottom", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1570": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "See You Tonight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1571": { - "Composer": "Paul Stanley", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "I Still Love You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1572": { - "Composer": "Paul Stanley, Vincent Cusano", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Every Time I Look At You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1573": { - "Composer": "Mick Jagger, Keith Richard", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "2,000 Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1574": { - "Composer": "Peter Criss, Stan Penridge, Bob Ezrin", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Beth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1575": { - "Composer": "Gene Simmons", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Nothin' To Lose", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1576": { - "Composer": "Paul Stanley, Gene Simmons", - "album": { - "AlbumId": 126, - "Title": "Unplugged [Live]" - }, - "Name": "Rock And Roll All Nite", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1577": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Immigrant Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1578": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Heartbreaker", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1579": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Since I've Been Loving You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1580": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Black Dog", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1581": { - "Composer": "Jimmy Page/Led Zeppelin", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Dazed And Confused", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1582": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Stairway To Heaven", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1583": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Going To California", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1584": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "That's The Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1585": { - "Composer": "Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Whole Lotta Love (Medley)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1586": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 127, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Thank You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1587": { - "Composer": "Ben E.King/James Bethea", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "We're Gonna Groove", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1588": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "Poor Tom", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1589": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "I Can't Quit You Baby", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1590": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "Walter's Walk", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1591": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "Ozone Baby", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1592": { - "Composer": "Jimmy Page, Robert Plant, John Bonham, John Paul Jones", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "Darlene", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1593": { - "Composer": "John Bonham", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "Bonzo's Montreux", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1594": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 128, - "Title": "Coda" - }, - "Name": "Wearing And Tearing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1595": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "The Song Remains The Same", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1596": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "The Rain Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1597": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "Over The Hills And Far Away", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1598": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "The Crunge", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1599": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "Dancing Days", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1600": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "D'Yer Mak'er", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1601": { - "Composer": "John Paul Jones", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "No Quarter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1602": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "AlbumId": 129, - "Title": "Houses Of The Holy" - }, - "Name": "The Ocean", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1603": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "In The Evening", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1604": { - "Composer": "John Paul Jones & Robert Plant", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "South Bound Saurez", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1605": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "Fool In The Rain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1606": { - "Composer": "Jimmy Page & Robert Plant", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "Hot Dog", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1607": { - "Composer": "John Paul Jones, Jimmy Page & Robert Plant", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "Carouselambra", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1608": { - "Composer": "Robert Plant & John Paul Jones", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "All My Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1609": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "album": { - "AlbumId": 130, - "Title": "In Through The Out Door" - }, - "Name": "I'm Gonna Crawl", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1610": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "Black Dog", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1611": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "Rock & Roll", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1612": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "The Battle Of Evermore", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1613": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "Stairway To Heaven", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1614": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "Misty Mountain Hop", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1615": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "Four Sticks", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1616": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "Going To California", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1617": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie", - "album": { - "AlbumId": 131, - "Title": "IV" - }, - "Name": "When The Levee Breaks", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1618": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "Good Times Bad Times", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1619": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "Babe I'm Gonna Leave You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1620": { - "Composer": "J. B. Lenoir/Willie Dixon", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "You Shook Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1621": { - "Composer": "Jimmy Page", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "Dazed and Confused", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1622": { - "Composer": "Jimmy Page/John Paul Jones", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "Your Time Is Gonna Come", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1623": { - "Composer": "Jimmy Page", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "Black Mountain Side", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1624": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "Communication Breakdown", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1625": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "I Can't Quit You Baby", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1626": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "AlbumId": 132, - "Title": "Led Zeppelin I" - }, - "Name": "How Many More Times", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1627": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Whole Lotta Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1628": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "What Is And What Should Never Be", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1629": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "The Lemon Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1630": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Thank You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1631": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Heartbreaker", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1632": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Living Loving Maid (She's Just A Woman)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1633": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Ramble On", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1634": { - "Composer": "John Bonham, John Paul Jones, Jimmy Page", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Moby Dick", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1635": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 133, - "Title": "Led Zeppelin II" - }, - "Name": "Bring It On Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1636": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Immigrant Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1637": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Friends", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1638": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Celebration Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1639": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Since I've Been Loving You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1640": { - "Composer": "Jimmy Page, Robert Plant, John Bonham", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Out On The Tiles", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1641": { - "Composer": "Traditional", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Gallows Pole", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1642": { - "Composer": "Jimmy Page", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Tangerine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1643": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "That's The Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1644": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Bron-Y-Aur Stomp", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1645": { - "Composer": "Traditional", - "album": { - "AlbumId": 134, - "Title": "Led Zeppelin III" - }, - "Name": "Hats Off To (Roy) Harper", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1646": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "In The Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1647": { - "Composer": "Jimmy Page", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Bron-Yr-Aur", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1648": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Down By The Seaside", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1649": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Ten Years Gone", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1650": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Night Flight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1651": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "The Wanton Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1652": { - "Composer": "Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Boogie With Stu", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1653": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Black Country Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1654": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 135, - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Sick Again", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1655": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "Achilles Last Stand", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1656": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "For Your Life", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1657": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "Royal Orleans", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1658": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "Nobody's Fault But Mine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1659": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "Candy Store Rock", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1660": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "Hots On For Nowhere", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1661": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "AlbumId": 136, - "Title": "Presence" - }, - "Name": "Tea For One", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1662": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "album": { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Rock & Roll", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1663": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Celebration Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1664": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "The Song Remains The Same", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1665": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Rain Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1666": { - "Composer": "Jimmy Page", - "album": { - "AlbumId": 137, - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Dazed And Confused", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1667": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "AlbumId": 138, - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "No Quarter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1668": { - "Composer": "Robert Plant", - "album": { - "AlbumId": 138, - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "Stairway To Heaven", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1669": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "AlbumId": 138, - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "Moby Dick", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1670": { - "Composer": "John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "album": { - "AlbumId": 138, - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "Whole Lotta Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1702": { - "Composer": "Craig Ross/Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Are You Gonna Go My Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1703": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Fly Away", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1704": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Rock And Roll Is Dead", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1705": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Again", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1706": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "It Ain't Over 'Til It's Over", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1707": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Can't Get You Off My Mind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1708": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Mr. Cab Driver", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1709": { - "Composer": "B. Cummings/G. Peterson/M.J. Kale/R. Bachman", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "American Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1710": { - "Composer": "Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Stand By My Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1711": { - "Composer": "Lenny Kravitz/Slash", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Always On The Run", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1712": { - "Composer": "Gerry DeVeaux/Terry Britten", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Heaven Help", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1713": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "I Belong To You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1714": { - "Composer": "Henry Hirsch/Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Believe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1715": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Let Love Rule", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1716": { - "Composer": "Lenny Kravitz", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Black Velveteen", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1745": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Pseudo Silk Kimono", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1746": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Kayleigh", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1747": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Lavender", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1748": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1749": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Heart Of Lothian: Wide Boy / Curtain Call", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1750": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Waterhole (Expresso Bongo)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1751": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Lords Of The Backstage", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1752": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1753": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "Childhoods End?", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1754": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "AlbumId": 144, - "Title": "Misplaced Childhood" - }, - "Name": "White Feather", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1755": { - "Composer": "Carlinhos Brown", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Arrepio", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1756": { - "Composer": "Carlinhos Brown", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Magamalabares", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1757": { - "Composer": "Morais", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Chuva No Brejo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1759": { - "Composer": "Lulu Santos", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Tempos Modernos", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1762": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Panis Et Circenses", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1763": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "De Noite Na Cama", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1764": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Beija Eu", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1765": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Give Me Love", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1766": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Ainda Lembro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1769": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Ao Meu Redor", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1770": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Bem Leve", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1771": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "Segue O Seco", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1772": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "AlbumId": 145, - "Title": "Barulhinho Bom" - }, - "Name": "O Xote Das Meninas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1773": { - "Composer": null, - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Wherever I Lay My Hat", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1774": { - "Composer": null, - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Get My Hands On Some Lovin'", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1775": { - "Composer": "William \"Mickey\" Stevenson", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "No Good Without You", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1776": { - "Composer": "Brian Holland/Eddie Holland/Lamont Dozier", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "You've Been A Long Time Coming", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1777": { - "Composer": "Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "When I Had Your Love", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1778": { - "Composer": "Allen Story/George Gordy/Robert Gordy", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "You're What's Happening (In The World Today)", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1779": { - "Composer": "Ivy Hunter/Stevie Wonder", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Loving You Is Sweeter Than Ever", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1780": { - "Composer": "Smokey Robinson/Warren \"Pete\" Moore", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "It's A Bitter Pill To Swallow", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1781": { - "Composer": "Ivy Hunter/William \"Mickey\" Stevenson", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Seek And You Shall Find", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1782": { - "Composer": "Barrett Strong/Norman Whitfield", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Gonna Keep On Tryin' Till I Win Your Love", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1783": { - "Composer": "Barrett Strong/Norman Whitfield", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Gonna Give Her All The Love I've Got", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1784": { - "Composer": "Barrett Strong/Norman Whitfield/Roger Penzabene", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "I Wish It Would Rain", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1785": { - "Composer": "Dick Holler", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Abraham, Martin And John", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1786": { - "Composer": "Al Cleveland/Marvin Gaye/Renaldo Benson", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Save The Children", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1787": { - "Composer": "Marvin Gaye", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "You Sure Love To Ball", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1788": { - "Composer": "Marvin Gaye", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Ego Tripping Out", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1789": { - "Composer": "Marvin Gaye", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Praise", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1790": { - "Composer": "Marvin Gaye", - "album": { - "AlbumId": 146, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Heavy Love Affair", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "1791": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Down Under", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1792": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Overkill", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1793": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Be Good Johnny", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1794": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Everything I Need", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1795": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Down by the Sea", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1796": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Who Can It Be Now?", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1797": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "It's a Mistake", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1798": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Dr. Heckyll & Mr. Jive", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1799": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "Shakes and Ladders", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1800": { - "Composer": null, - "album": { - "AlbumId": 147, - "Title": "The Best Of Men At Work" - }, - "Name": "No Sign of Yesterday", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1801": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Enter Sandman", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1802": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Sad But True", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1803": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Holier Than Thou", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1804": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "The Unforgiven", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1805": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Wherever I May Roam", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1806": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Don't Tread On Me", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1807": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Through The Never", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1808": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Nothing Else Matters", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1809": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "Of Wolf And Man", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1810": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "The God That Failed", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1811": { - "Composer": "James Hetfield, Lars Ulrich and Jason Newsted", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "My Friend Of Misery", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1812": { - "Composer": "Ulrich", - "album": { - "AlbumId": 148, - "Title": "Black Album" - }, - "Name": "The Struggle Within", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1813": { - "Composer": "Harris/Tatler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Helpless", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1814": { - "Composer": "Holocaust", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "The Small Hours", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1815": { - "Composer": "Killing Joke", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "The Wait", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1816": { - "Composer": "Bourge/Phillips/Shelley", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Crash Course In Brain Surgery", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1817": { - "Composer": "Danzig", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Last Caress/Green Hell", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1818": { - "Composer": "Harris/Tatler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Am I Evil?", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1819": { - "Composer": "Jones/Sirotto/Smith", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Blitzkrieg", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1820": { - "Composer": "Bourge/Phillips/Shelley", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Breadfan", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1821": { - "Composer": "Harris/Tatler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "The Prince", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1822": { - "Composer": "Deacon/May/Mercury/Taylor", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Stone Cold Crazy", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1823": { - "Composer": "Culmer/Exalt", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "So What", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1824": { - "Composer": "Sweet Savage", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Killing Time", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1825": { - "Composer": "Clarke/Kilmister/Tayler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Overkill", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1826": { - "Composer": "Clarke/Farren/Kilmister/Tayler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Damage Case", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1827": { - "Composer": "Clarke/Kilmister/Tayler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Stone Dead Forever", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1828": { - "Composer": "Clarke/Kilmister/Tayler", - "album": { - "AlbumId": 149, - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Too Late Too Late", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1829": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Hit The Lights", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1830": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "The Four Horsemen", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1831": { - "Composer": "James Hetfield", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Motorbreath", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1832": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Jump In The Fire", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1833": { - "Composer": "Cliff Burton", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "(Anesthesia) Pulling Teeth", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1834": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Whiplash", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1835": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Phantom Lord", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1836": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "No Remorse", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1837": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Seek & Destroy", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1838": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "AlbumId": 150, - "Title": "Kill 'Em All" - }, - "Name": "Metal Militia", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1839": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Ain't My Bitch", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1840": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "2 X 4", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1841": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "The House Jack Built", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1842": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Until It Sleeps", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1843": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "King Nothing", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1844": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Hero Of The Day", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1845": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Bleeding Me", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1846": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Cure", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1847": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Poor Twisted Me", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1848": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Wasted My Hate", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1849": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Mama Said", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1850": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Thorn Within", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1851": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "Ronnie", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1852": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "AlbumId": 151, - "Title": "Load" - }, - "Name": "The Outlaw Torn", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1853": { - "Composer": "J.Hetfield/L.Ulrich", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Battery", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1854": { - "Composer": "K.Hammett", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Master Of Puppets", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1855": { - "Composer": "K.Hammett", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "The Thing That Should Not Be", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1856": { - "Composer": "K.Hammett", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Welcome Home (Sanitarium)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1857": { - "Composer": "J.Hetfield/L.Ulrich", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Disposable Heroes", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1858": { - "Composer": "C.Burton", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Leper Messiah", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1859": { - "Composer": "K.Hammett", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Orion", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1860": { - "Composer": "K.Hammett", - "album": { - "AlbumId": 152, - "Title": "Master Of Puppets" - }, - "Name": "Damage Inc.", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1861": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Fuel", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1862": { - "Composer": "Hetfield, Ulrich", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "The Memory Remains", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1863": { - "Composer": "Hetfield, Ulrich", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Devil's Dance", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1864": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "The Unforgiven II", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1865": { - "Composer": "Hetfield, Ulrich", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Better Than You", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1866": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Slither", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1867": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Carpe Diem Baby", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1868": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Bad Seed", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1869": { - "Composer": "Hetfield, Ulrich, Newsted", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Where The Wild Things Are", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1870": { - "Composer": "Hetfield, Ulrich", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Prince Charming", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1871": { - "Composer": "Hetfield, Ulrich", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Low Man's Lyric", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1872": { - "Composer": "Hetfield, Ulrich", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Attitude", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1873": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "AlbumId": 153, - "Title": "ReLoad" - }, - "Name": "Fixxxer", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1874": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "Fight Fire With Fire", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1875": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "Ride The Lightning", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1876": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "For Whom The Bell Tolls", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1877": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "Fade To Black", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1878": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "Trapped Under Ice", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1879": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "Escape", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1880": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "Creeping Death", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1881": { - "Composer": "Metallica", - "album": { - "AlbumId": 154, - "Title": "Ride The Lightning" - }, - "Name": "The Call Of Ktulu", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1882": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Frantic", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1883": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "St. Anger", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1884": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Some Kind Of Monster", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1885": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Dirty Window", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1886": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Invisible Kid", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1887": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "My World", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1888": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Shoot Me Again", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1889": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Sweet Amber", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1890": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "The Unnamed Feeling", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1891": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "Purify", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1892": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "AlbumId": 155, - "Title": "St. Anger" - }, - "Name": "All Within My Hands", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1893": { - "Composer": "James Hetfield, Lars Ulrich & Jason Newsted", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "Blackened", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1894": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "...And Justice For All", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1895": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "Eye Of The Beholder", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1896": { - "Composer": "James Hetfield & Lars Ulrich", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "One", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1897": { - "Composer": "James Hetfield and Lars Ulrich", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "The Shortest Straw", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1898": { - "Composer": "James Hetfield and Lars Ulrich", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "Harvester Of Sorrow", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1899": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "The Frayed Ends Of Sanity", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1900": { - "Composer": "James Hetfield, Lars Ulrich and Cliff Burton", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "To Live Is To Die", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1901": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "AlbumId": 156, - "Title": "...And Justice For All" - }, - "Name": "Dyers Eve", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "1902": { - "Composer": "J. Carisi", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "Springsville", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1903": { - "Composer": "L. Delibes", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "The Maids Of Cadiz", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1904": { - "Composer": "Dave Brubeck", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "The Duke", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1905": { - "Composer": "Ira Gershwin, Kurt Weill", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "My Ship", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1906": { - "Composer": "Miles Davis, Gil Evans", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "Miles Ahead", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1907": { - "Composer": "Gil Evans", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "Blues For Pablo", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1908": { - "Composer": "A. Jamal", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "New Rhumba", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1909": { - "Composer": "R. Troup, L. Worth", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "The Meaning Of The Blues", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1910": { - "Composer": "J.J. Johnson", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "Lament", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1911": { - "Composer": "H. Spina, J. Elliott", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "I Don't Wanna Be Kissed (By Anyone But You)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1912": { - "Composer": "J. Carisi", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "Springsville (Alternate Take)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1913": { - "Composer": "Gil Evans", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "Blues For Pablo (Alternate Take)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1914": { - "Composer": "J.J. Johnson/R. Troup, L. Worth", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "The Meaning Of The Blues/Lament (Alternate Take)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1915": { - "Composer": "H. Spina, J. Elliott", - "album": { - "AlbumId": 157, - "Title": "Miles Ahead" - }, - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "1917": { - "Composer": "Dolores Duran", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "A Noite Do Meu Bem", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1919": { - "Composer": "Folclore", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Cuitelinho", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1921": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Nos Bailes Da Vida", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1922": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Menestrel Das Alagoas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1923": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Brasil", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1925": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Um Gosto De Sol", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1926": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Solar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1928": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 158, - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Maria, Maria", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1929": { - "Composer": "Milton Nascimento, Caetano Veloso", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Minas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1931": { - "Composer": "Toninho Horta", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Beijo Partido", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1934": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Ponta de Areia", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1935": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Trastevere", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1936": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Idolatrada", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1937": { - "Composer": "Milton Nascimento", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Leila (Venha Ser Feliz)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1938": { - "Composer": "Milton Nascimento, Caetano Veloso", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Paula E Bebeto", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1939": { - "Composer": "Nelson Angelo", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Simples", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1940": { - "Composer": "John Lennon, Paul McCartney", - "album": { - "AlbumId": 159, - "Title": "Minas" - }, - "Name": "Norwegian Wood", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "1986": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Intro", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1987": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "School", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1988": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Drain You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1989": { - "Composer": "Nirvana", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Aneurysm", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1990": { - "Composer": "Nirvana", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Smells Like Teen Spirit", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1991": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Been A Son", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1992": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Lithium", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1993": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Sliver", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1994": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Spank Thru", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1995": { - "Composer": "Nirvana", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Scentless Apprentice", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1996": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Heart-Shaped Box", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1997": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Milk It", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1998": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Negative Creep", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "1999": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Polly", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2000": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Breed", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2001": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Tourette's", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2002": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 163, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Blew", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2003": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Smells Like Teen Spirit", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2004": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "In Bloom", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2005": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Come As You Are", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2006": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Breed", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2007": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Lithium", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2008": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Polly", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2009": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Territorial Pissings", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2010": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Drain You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2011": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Lounge Act", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2012": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Stay Away", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2013": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "On A Plain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2014": { - "Composer": "Kurt Cobain", - "album": { - "AlbumId": 164, - "Title": "Nevermind" - }, - "Name": "Something In The Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2030": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Requebra", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2032": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Olodum - Alegria Geral", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2035": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Todo Amor (Asas Da Liberdade)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2038": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Cartao Postal", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2039": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Jeito Faceiro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2040": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Revolta Olodum", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2042": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Protesto Do Olodum (Ao Vivo)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2043": { - "Composer": null, - "album": { - "AlbumId": 166, - "Title": "Olodum" - }, - "Name": "Olodum - Smile (Instrumental)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2065": { - "Composer": "Fito Paez/Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Trac Trac", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2067": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Mensagen De Amor (2000)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2068": { - "Composer": "Bahiano/Diego Blanco/Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Lourinha Bombril", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2069": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "La Bella Luna", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2070": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Busca Vida", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2071": { - "Composer": "Carlinhos Brown/Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Uma Brasileira", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2072": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Luis Inacio (300 Picaretas)", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2073": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Saber Amar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2074": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "Ela Disse Adeus", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2075": { - "Composer": "Herbert Vianna", - "album": { - "AlbumId": 168, - "Title": "Arquivo II" - }, - "Name": "O Amor Nao Sabe Esperar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2079": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Cinema Mudo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2080": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Alagados", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2081": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Lanterna Dos Afogados", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2083": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Vital E Sua Moto", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2084": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "O Beco", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2085": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Meu Erro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2086": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Perplexo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2087": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Me Liga", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2088": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Quase Um Segundo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2089": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Selvagem", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2090": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Romance Ideal", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2092": { - "Composer": null, - "album": { - "AlbumId": 169, - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "SKA", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2093": { - "Composer": "O. Osbourne", - "album": { - "AlbumId": 170, - "Title": "Bark at the Moon (Remastered)" - }, - "Name": "Bark at the Moon", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2094": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "album": { - "AlbumId": 171, - "Title": "Blizzard of Ozz" - }, - "Name": "I Don't Know", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2095": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "album": { - "AlbumId": 171, - "Title": "Blizzard of Ozz" - }, - "Name": "Crazy Train", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2096": { - "Composer": "L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads", - "album": { - "AlbumId": 172, - "Title": "Diary of a Madman (Remastered)" - }, - "Name": "Flying High Again", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2097": { - "Composer": "L. Kilmister, O. Osbourne & Z. Wylde", - "album": { - "AlbumId": 173, - "Title": "No More Tears (Remastered)" - }, - "Name": "Mama, I'm Coming Home", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2098": { - "Composer": "J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde", - "album": { - "AlbumId": 173, - "Title": "No More Tears (Remastered)" - }, - "Name": "No More Tears", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2099": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "I Don't Know", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2100": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Crazy Train", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2101": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Believer", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2102": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Mr. Crowley", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2103": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Flying High Again", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2104": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Relvelation (Mother Earth)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2105": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Steal Away (The Night)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2106": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Suicide Solution (With Guitar Solo)", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2107": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Iron Man", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2108": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Children Of The Grave", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2109": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Paranoid", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2110": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Goodbye To Romance", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2111": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "No Bone Movies", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2112": { - "Composer": "R. Rhoads", - "album": { - "AlbumId": 174, - "Title": "Tribute" - }, - "Name": "Dee", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2113": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Shining In The Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2114": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "When The World Was Young", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2115": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Upon A Golden Horse", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2116": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Blue Train", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2117": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Please Read The Letter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2118": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Most High", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2119": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Heart In Your Hand", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2120": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Walking Into Clarksdale", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2121": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Burning Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2122": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "When I Was A Child", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2123": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "House Of Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2124": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "AlbumId": 175, - "Title": "Walking Into Clarksdale" - }, - "Name": "Sons Of Freedom", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2125": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "United Colours", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2126": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Slug", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2127": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Your Blue Room", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2128": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Always Forever Now", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2129": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "A Different Kind Of Blue", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2130": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Beach Sequence", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2131": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Miss Sarajevo", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2132": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Ito Okashi", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2133": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "One Minute Warning", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2134": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Corpse (These Chains Are Way Too Long)", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2135": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Elvis Ate America", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2136": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Plot 180", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2137": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Theme From The Swan", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2138": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "AlbumId": 176, - "Title": "Original Soundtracks 1" - }, - "Name": "Theme From Let's Go Native", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - }, - "2139": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2140": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Killers", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2141": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Prowler", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2142": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Murders In The Rue Morgue", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2143": { - "Composer": "Greg Macainsh", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Women In Uniform", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2144": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Remember Tomorrow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2145": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2146": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Running Free", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2147": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Phantom Of The Opera", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2148": { - "Composer": "Steve Harris", - "album": { - "AlbumId": 177, - "Title": "The Beast Live" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2149": { - "Composer": "Pearl Jam & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Corduroy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2150": { - "Composer": "Eddie Vedder & Mike McCready", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Given To Fly", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2151": { - "Composer": "Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Hail, Hail", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2152": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Daughter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2153": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2154": { - "Composer": "Pearl Jam", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Untitled", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2155": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "MFC", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2156": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Go", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2157": { - "Composer": "Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Red Mosquito", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2158": { - "Composer": "Stone Gossard & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Even Flow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2159": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Off He Goes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2160": { - "Composer": "Jeff Ament & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Nothingman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2161": { - "Composer": "Eddie Vedder & Stone Gossard", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Do The Evolution", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2162": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Better Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2163": { - "Composer": "Stone Gossard & Eddie Vedder", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "Black", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2164": { - "Composer": "Neil Young", - "album": { - "AlbumId": 178, - "Title": "Live On Two Legs [Live]" - }, - "Name": "F*Ckin' Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2165": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Life Wasted", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2166": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "World Wide Suicide", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2167": { - "Composer": "Mike McCready & Stone Gossard", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Comatose", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2168": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Severed Hand", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2169": { - "Composer": "Mike McCready", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Marker In The Sand", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2170": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Parachutes", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2171": { - "Composer": "Matt Cameron & Mike McCready", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Unemployable", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2172": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Big Wave", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2173": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Gone", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2174": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Wasted Reprise", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2175": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Army Reserve", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2176": { - "Composer": "Eddie Vedder & Mike McCready", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Come Back", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2177": { - "Composer": "Eddie Vedder & Mike McCready", - "album": { - "AlbumId": 179, - "Title": "Pearl Jam" - }, - "Name": "Inside Job", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2178": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Can't Keep", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2179": { - "Composer": "Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Save You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2180": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Love Boat Captain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2181": { - "Composer": "Matt Cameron", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Cropduster", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2182": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Ghost", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2183": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "I Am Mine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2184": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Thumbing My Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2185": { - "Composer": "Matt Cameron", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "You Are", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2186": { - "Composer": "Matt Cameron", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Get Right", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2187": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Green Disease", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2188": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Help Help", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2189": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Bushleager", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2190": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "1/2 Full", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2191": { - "Composer": "Pearl Jam", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "Arc", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2192": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 180, - "Title": "Riot Act" - }, - "Name": "All or None", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2193": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Once", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2194": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Evenflow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2195": { - "Composer": "Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Alive", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2196": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Why Go", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2197": { - "Composer": "Dave Krusen/Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Black", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2198": { - "Composer": "Jeff Ament", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Jeremy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2199": { - "Composer": "Jeff Ament/Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Oceans", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2200": { - "Composer": "Eddie Vedder", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Porch", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2201": { - "Composer": "Jeff Ament/Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Garden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2202": { - "Composer": "Jeff Ament/Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Deep", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2203": { - "Composer": "Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 181, - "Title": "Ten" - }, - "Name": "Release", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2204": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Go", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2205": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Animal", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2206": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Daughter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2207": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Glorified G", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2208": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Dissident", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2209": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "W.M.A.", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2210": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Blood", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2211": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Rearviewmirror", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2212": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Rats", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2213": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2214": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Leash", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2215": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "AlbumId": 182, - "Title": "Vs." - }, - "Name": "Indifference", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2216": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Johnny B. Goode", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2217": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Don't Look Back", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2218": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Jah Seh No", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2219": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "I'm The Toughest", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2220": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Nothing But Love", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2221": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Buk-In-Hamm Palace", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2222": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Bush Doctor", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2223": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Wanted Dread And Alive", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2224": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Mystic Man", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2225": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Coming In Hot", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2226": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Pick Myself Up", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2227": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Crystal Ball", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2228": { - "Composer": null, - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Equal Rights Downpresser Man", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "2229": { - "Composer": "Mason/Waters, Gilmour, Wright", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Speak To Me/Breathe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2230": { - "Composer": "Gilmour, Waters", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "On The Run", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2231": { - "Composer": "Mason, Waters, Wright, Gilmour", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Time", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2232": { - "Composer": "Wright, Waters", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "The Great Gig In The Sky", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2233": { - "Composer": "Waters", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Money", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2234": { - "Composer": "Waters, Wright", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Us And Them", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2235": { - "Composer": "Gilmour, Mason, Wright, Waters", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Any Colour You Like", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2236": { - "Composer": "Waters", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Brain Damage", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2237": { - "Composer": "Waters", - "album": { - "AlbumId": 183, - "Title": "Dark Side Of The Moon" - }, - "Name": "Eclipse", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2254": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Bohemian Rhapsody", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2255": { - "Composer": "Deacon, John", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Another One Bites The Dust", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2256": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Killer Queen", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2257": { - "Composer": "May, Brian", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Fat Bottomed Girls", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2258": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Bicycle Race", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2259": { - "Composer": "Deacon, John", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "You're My Best Friend", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2260": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Don't Stop Me Now", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2261": { - "Composer": "May, Brian", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Save Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2262": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Crazy Little Thing Called Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2263": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Somebody To Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2264": { - "Composer": "May, Brian", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Now I'm Here", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2265": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Good Old-Fashioned Lover Boy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2266": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Play The Game", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2267": { - "Composer": "May, Brian", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Flash", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2268": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "Seven Seas Of Rhye", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2269": { - "Composer": "Deacon, John/May, Brian", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "We Will Rock You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2270": { - "Composer": "Mercury, Freddie", - "album": { - "AlbumId": 185, - "Title": "Greatest Hits I" - }, - "Name": "We Are The Champions", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2271": { - "Composer": "May", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "We Will Rock You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2272": { - "Composer": "Mercury", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "We Are The Champions", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2273": { - "Composer": "Taylor", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "Sheer Heart Attack", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2274": { - "Composer": "May", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "All Dead, All Dead", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2275": { - "Composer": "Deacon", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "Spread Your Wings", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2276": { - "Composer": "Taylor", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "Fight From The Inside", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2277": { - "Composer": "Mercury", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "Get Down, Make Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2278": { - "Composer": "May", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "Sleep On The Sidewalk", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2279": { - "Composer": "Deacon", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "Who Needs You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2280": { - "Composer": "May", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "It's Late", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2281": { - "Composer": "Mercury", - "album": { - "AlbumId": 186, - "Title": "News Of The World" - }, - "Name": "My Melancholy Blues", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2282": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Shiny Happy People", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2283": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Me In Honey", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2284": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Radio Song", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2285": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Pop Song 89", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2286": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Get Up", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2287": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "You Are The Everything", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2288": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Stand", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2289": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "World Leader Pretend", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2290": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "The Wrong Child", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2291": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Orange Crush", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2292": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Turn You Inside-Out", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2293": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Hairshirt", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2294": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "I Remember California", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2295": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 188, - "Title": "Green" - }, - "Name": "Untitled", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2296": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "How The West Was Won And Where It Got Us", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2297": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "The Wake-Up Bomb", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2298": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "New Test Leper", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2299": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Undertow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2300": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "E-Bow The Letter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2301": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Leave", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2302": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Departure", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2303": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Bittersweet Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2304": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Be Mine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2305": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Binky The Doormat", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2306": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Zither", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2307": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "So Fast, So Numb", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2308": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Low Desert", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2309": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "AlbumId": 189, - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Electrolite", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2310": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Losing My Religion", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2311": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Low", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2312": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Near Wild Heaven", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2313": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Endgame", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2314": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Belong", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2315": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Half A World Away", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2316": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Texarkana", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2317": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "AlbumId": 187, - "Title": "Out Of Time" - }, - "Name": "Country Feedback", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2318": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Carnival Of Sorts", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2319": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Radio Free Aurope", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2320": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Perfect Circle", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2321": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Talk About The Passion", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2322": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "So Central Rain", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2323": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Don't Go Back To Rockville", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2324": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Pretty Persuasion", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2325": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Green Grow The Rushes", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2326": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Can't Get There From Here", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2327": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Driver 8", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2328": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Fall On Me", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2329": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "I Believe", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2330": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Cuyahoga", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2331": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "The One I Love", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2332": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "The Finest Worksong", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2333": { - "Composer": "R.E.M.", - "album": { - "AlbumId": 190, - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "It's The End Of The World As We Know It (And I Feel Fine)", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2344": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "Maluco Beleza", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2345": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "O Dia Em Que A Terra Parou", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2346": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "No Fundo Do Quintal Da Escola", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2347": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "O Segredo Do Universo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2348": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "As Profecias", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2349": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "Mata Virgem", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2350": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "Sapato 36", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2351": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "Todo Mundo Explica", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2353": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "Diamante De Mendigo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2357": { - "Composer": null, - "album": { - "AlbumId": 192, - "Title": "Raul Seixas" - }, - "Name": "Rock Das Aranhas (Ao Vivo) (Live)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2358": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "The Power Of Equality", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2359": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "If You Have To Ask", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2360": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Breaking The Girl", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2361": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Funky Monks", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2362": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Suck My Kiss", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2363": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "I Could Have Lied", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2364": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Mellowship Slinky In B Major", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2365": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "The Righteous & The Wicked", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2366": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Give It Away", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2367": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Blood Sugar Sex Magik", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2368": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Under The Bridge", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2369": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Naked In The Rain", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2370": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Apache Rose Peacock", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2371": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "The Greeting Song", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2372": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "My Lovely Man", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2373": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Sir Psycho Sexy", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2374": { - "Composer": "Robert Johnson", - "album": { - "AlbumId": 193, - "Title": "Blood Sugar Sex Magik" - }, - "Name": "They're Red Hot", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2375": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "By The Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2376": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Universally Speaking", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2377": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "This Is The Place", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2378": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Dosed", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2379": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Don't Forget Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2380": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "The Zephyr Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2381": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Can't Stop", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2382": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "I Could Die For You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2383": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Midnight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2384": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Throw Away Your Television", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2385": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Cabron", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2386": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Tear", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2387": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "On Mercury", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2388": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Minor Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2389": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Warm Tape", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2390": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "AlbumId": 194, - "Title": "By The Way" - }, - "Name": "Venice Queen", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2391": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Around The World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2392": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Parallel Universe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2393": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Scar Tissue", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2394": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Otherside", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2395": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Get On Top", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2396": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Californication", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2397": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Easily", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2398": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Porcelain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2399": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Emit Remmus", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2400": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "I Like Dirt", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2401": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "This Velvet Glove", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2402": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Savior", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2403": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Purple Stain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2404": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Right On Time", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2405": { - "Composer": "Red Hot Chili Peppers", - "album": { - "AlbumId": 195, - "Title": "Californication" - }, - "Name": "Road Trippin'", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2406": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "The Spirit Of Radio", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2407": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "The Trees", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2408": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Something For Nothing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2409": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Freewill", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2410": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Xanadu", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2411": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Bastille Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2412": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "By-Tor And The Snow Dog", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2413": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Anthem", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2414": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Closer To The Heart", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2415": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "2112 Overture", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2416": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "The Temples Of Syrinx", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2417": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "La Villa Strangiato", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2418": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Fly By Night", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2419": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "AlbumId": 196, - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Finding My Way", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2420": { - "Composer": "M.Babatunde Olantunji", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "Jingo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2421": { - "Composer": "E.Weiss", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "El Corazon Manda", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2422": { - "Composer": "E.Weiss", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "La Puesta Del Sol", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2423": { - "Composer": "Carlos Santana", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "Persuasion", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2424": { - "Composer": "Albert King", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "As The Years Go by", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2425": { - "Composer": "Carlos Santana", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "Soul Sacrifice", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2426": { - "Composer": "W.Correa", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "Fried Neckbones And Home Fries", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2427": { - "Composer": "Carlos Santana", - "album": { - "AlbumId": 197, - "Title": "Santana - As Years Go By" - }, - "Name": "Santana Jam", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2428": { - "Composer": null, - "album": { - "AlbumId": 198, - "Title": "Santana Live" - }, - "Name": "Evil Ways", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2429": { - "Composer": null, - "album": { - "AlbumId": 198, - "Title": "Santana Live" - }, - "Name": "We've Got To Get Together/Jingo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2430": { - "Composer": null, - "album": { - "AlbumId": 198, - "Title": "Santana Live" - }, - "Name": "Rock Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2431": { - "Composer": null, - "album": { - "AlbumId": 198, - "Title": "Santana Live" - }, - "Name": "Just Ain't Good Enough", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2432": { - "Composer": null, - "album": { - "AlbumId": 198, - "Title": "Santana Live" - }, - "Name": "Funky Piano", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2433": { - "Composer": null, - "album": { - "AlbumId": 198, - "Title": "Santana Live" - }, - "Name": "The Way You Do To Mer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2434": { - "Composer": "Mick Hucknall and Neil Moss", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Holding Back The Years", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2435": { - "Composer": "John and William Valentine", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Money's Too Tight To Mention", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2436": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "The Right Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2437": { - "Composer": "Jimmy and Vella Cameron", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "It's Only Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2438": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "A New Flame", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2439": { - "Composer": "Mick Hucknall and Lamont Dozier", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "You've Got It", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2440": { - "Composer": "Kenny Gamble and Leon Huff", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "If You Don't Know Me By Now", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2441": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Stars", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2442": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Something Got Me Started", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2443": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Thrill Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2444": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Your Mirror", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2445": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "For Your Babies", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2446": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "So Beautiful", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2447": { - "Composer": "Carolyn Franklin and Sonny Saunders", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Angel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2448": { - "Composer": "Mick Hucknall", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Fairground", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2451": { - "Composer": "Chico Amaral/Samuel Rosa", - "album": { - "AlbumId": 199, - "Title": "Maquinarama" - }, - "Name": "Ela Desapareceu", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2455": { - "Composer": "Chico Amaral/Samuel Rosa", - "album": { - "AlbumId": 199, - "Title": "Maquinarama" - }, - "Name": "Maquinarama", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2458": { - "Composer": "Chico Amaral/Samuel Rosa", - "album": { - "AlbumId": 199, - "Title": "Maquinarama" - }, - "Name": "Fica", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2459": { - "Composer": "Nando Reis/Samuel Rosa", - "album": { - "AlbumId": 199, - "Title": "Maquinarama" - }, - "Name": "Ali", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2472": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Lucky 13", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2473": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Aeroplane Flies High", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2474": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Because You Are", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2475": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Slow Dawn", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2476": { - "Composer": "James Iha", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Believe", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2477": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "My Mistake", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2478": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Marquis In Spades", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2479": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Here's To The Atom Bomb", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2480": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Sparrow", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2481": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Waiting", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2482": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Saturnine", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2483": { - "Composer": "David Cook", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Rock On", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2484": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Set The Ray To Jerry", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2485": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Winterlong", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2486": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Soot & Stars", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2487": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 201, - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Blissed & Gone", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2488": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Siva", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2489": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Rhinocerous", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2490": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Drown", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2491": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Cherub Rock", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2492": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Today", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2493": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Disarm", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2494": { - "Composer": "Stevie Nicks", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Landslide", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2495": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Bullet With Butterfly Wings", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2496": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "1979", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2497": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Zero", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2498": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Tonight, Tonight", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2499": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Eye", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2500": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Ava Adore", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2501": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Perfect", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2502": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "The Everlasting Gaze", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2503": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Stand Inside Your Love", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2504": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Real Love", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2505": { - "Composer": "Billy Corgan", - "album": { - "AlbumId": 202, - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "[Untitled]", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2506": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Nothing To Say", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2507": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Flower", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2508": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Loud Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2509": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Hands All Over", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2510": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Get On The Snake", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2511": { - "Composer": "Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Jesus Christ Pose", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2512": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Outshined", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2513": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Rusty Cage", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2514": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Spoonman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2515": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "The Day I Tried To Live", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2516": { - "Composer": "Soundgarden", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Black Hole Sun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2517": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Fell On Black Days", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2518": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Pretty Noose", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2519": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Burden In My Hand", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2520": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Blow Up The Outside World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2521": { - "Composer": "Ben Shepherd/Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Ty Cobb", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2522": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 203, - "Title": "A-Sides" - }, - "Name": "Bleed Together", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2523": { - "Composer": "Jay Beckenstein", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Morning Dance", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2524": { - "Composer": "Jeremy Wall", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Jubilee", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2525": { - "Composer": "Jeremy Wall", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Rasul", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2526": { - "Composer": "Jay Beckenstein", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Song For Lorraine", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2527": { - "Composer": "Jeremy Wall", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Starburst", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2528": { - "Composer": "Jay Beckenstein", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Heliopolis", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2529": { - "Composer": "Chet Catallo", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "It Doesn't Matter", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2530": { - "Composer": "Jeremy Wall", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "Little Linda", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2531": { - "Composer": "Rick Strauss", - "album": { - "AlbumId": 204, - "Title": "Morning Dance" - }, - "Name": "End Of Romanticism", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "2532": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "The House Is Rockin'", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2533": { - "Composer": "B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Crossfire", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2534": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Tightrope", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2535": { - "Composer": "Willie Dixon", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Let Me Love You Baby", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2536": { - "Composer": "B. Guy", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Leave My Girl Alone", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2537": { - "Composer": "Stevie Ray Vaughan", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Travis Walk", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2538": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Wall Of Denial", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2539": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Scratch-N-Sniff", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2540": { - "Composer": "C. Burnett", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Love Me Darlin'", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2541": { - "Composer": "Stevie Ray Vaughan", - "album": { - "AlbumId": 205, - "Title": "In Step" - }, - "Name": "Riviera Paradise", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2542": { - "Composer": "R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Dead And Bloated", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2543": { - "Composer": "D. DeLeo/Kretz/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Sex Type Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2544": { - "Composer": "D. DeLeo/R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Wicked Garden", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2545": { - "Composer": "Dean Deleo", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "No Memory", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2546": { - "Composer": "R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Sin", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2547": { - "Composer": "D. DeLeo/Kretz/R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Naked Sunday", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2548": { - "Composer": "R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Creep", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2549": { - "Composer": "R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Piece Of Pie", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2550": { - "Composer": "R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Plush", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2551": { - "Composer": "R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Wet My Bed", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2552": { - "Composer": "Kretz/R. DeLeo/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Crackerman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2553": { - "Composer": "D. DeLeo/Kretz/Weiland", - "album": { - "AlbumId": 206, - "Title": "Core" - }, - "Name": "Where The River Goes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2554": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Soldier Side - Intro", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2555": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "B.Y.O.B.", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2556": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Revenga", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2557": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Cigaro", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2558": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Radio/Video", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2559": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "This Cocaine Makes Me Feel Like I'm On This Song", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2560": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Violent Pornography", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2561": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Question!", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2562": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Sad Statue", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2563": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Old School Hollywood", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2564": { - "Composer": "Tankian, Serj", - "album": { - "AlbumId": 207, - "Title": "Mezmerize" - }, - "Name": "Lost in Hollywood", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "2565": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "The Sun Road", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2566": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Dark Corners", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2567": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Duende", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2568": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Black Light Syndrome", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2569": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Falling in Circles", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2570": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Book of Hours", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2571": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "AlbumId": 208, - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Chaos-Control", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2572": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Midnight From The Inside Out", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2573": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Sting Me", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2574": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Thick & Thin", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2575": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Greasy Grass River", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2576": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Sometimes Salvation", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2577": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Cursed Diamonds", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2578": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Miracle To Me", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2579": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Wiser Time", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2580": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Girl From A Pawnshop", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2581": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 209, - "Title": "Live [Disc 1]" - }, - "Name": "Cosmic Fiend", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2582": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Black Moon Creeping", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2583": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "High Head Blues", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2584": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Title Song", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2585": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "She Talks To Angels", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2586": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Twice As Hard", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2587": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Lickin'", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2588": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Soul Singing", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2589": { - "Composer": "A.Isbell/A.Jones/O.Redding", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Hard To Handle", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2590": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "AlbumId": 210, - "Title": "Live [Disc 2]" - }, - "Name": "Remedy", - "genre": { - "Name": "Blues", - "GenreId": 6 - } - }, - "2591": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "White Riot", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2592": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Remote Control", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2593": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Complete Control", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2594": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Clash City Rockers", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2595": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "(White Man) In Hammersmith Palais", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2596": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Tommy Gun", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2597": { - "Composer": "Mick Jones/Traditional arr. Joe Strummer", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "English Civil War", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2598": { - "Composer": "Sonny Curtis", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "I Fought The Law", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2599": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "London Calling", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2600": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Train In Vain", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2601": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Bankrobber", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2602": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "The Call Up", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2603": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Hitsville UK", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2604": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "The Magnificent Seven", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2605": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "This Is Radio Clash", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2606": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Know Your Rights", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2607": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Rock The Casbah", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2608": { - "Composer": "The Clash", - "album": { - "AlbumId": 211, - "Title": "The Singles" - }, - "Name": "Should I Stay Or Should I Go", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2609": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "War (The Process)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2610": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "The Saint", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2611": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Rise", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2612": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Take The Power", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2613": { - "Composer": "Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Breathe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2614": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Nico", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2615": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "American Gothic", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2616": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Ashes And Ghosts", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2617": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Shape The Sky", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2618": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "Speed Of Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2619": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "True Believers", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2620": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "AlbumId": 212, - "Title": "Beyond Good And Evil" - }, - "Name": "My Bridges Burn", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2621": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "She Sells Sanctuary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2622": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Fire Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2623": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Lil' Evil", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2624": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Spirit Walker", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2625": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "The Witch", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2626": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Revolution", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2627": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Wild Hearted Son", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2628": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Love Removal Machine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2629": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Rain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2630": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Edie (Ciao Baby)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2631": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Heart Of Soul", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2632": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2633": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Wild Flower", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2634": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Go West", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2635": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Resurrection Joe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2636": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Sun King", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2637": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Sweet Soul Sister", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2638": { - "Composer": null, - "album": { - "AlbumId": 213, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Earth Mofo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2639": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Break on Through", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2640": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Soul Kitchen", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2641": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "The Crystal Ship", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2642": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Twentienth Century Fox", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2643": { - "Composer": "Weill-Brecht", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Alabama Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2644": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Light My Fire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2645": { - "Composer": "Willie Dixon, C. Burnett", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Back Door Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2646": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "I Looked At You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2647": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "End Of The Night", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2648": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "Take It As It Comes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2649": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "AlbumId": 214, - "Title": "The Doors" - }, - "Name": "The End", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2650": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Roxanne", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2651": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Can't Stand Losing You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2652": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Message in a Bottle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2653": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Walking on the Moon", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2654": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Don't Stand so Close to Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2655": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "De Do Do Do, De Da Da Da", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2656": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Every Little Thing She Does is Magic", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2657": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Invisible Sun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2658": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Spirit's in the Material World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2659": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Every Breath You Take", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2660": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "King Of Pain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2661": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Wrapped Around Your Finger", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2662": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Don't Stand So Close to Me '86", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2663": { - "Composer": "G M Sumner", - "album": { - "AlbumId": 215, - "Title": "The Police Greatest Hits" - }, - "Name": "Message in a Bottle (new classic rock mix)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2664": { - "Composer": "Jerry Ragavoy", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Time Is On My Side", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2665": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Heart Of Stone", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2666": { - "Composer": "Nanker Phelge", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Play With Fire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2667": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Satisfaction", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2668": { - "Composer": "Jagger/Richards/Oldham", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "As Tears Go By", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2669": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Get Off Of My Cloud", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2670": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Mother's Little Helper", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2671": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "19th Nervous Breakdown", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2672": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Paint It Black", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2673": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Under My Thumb", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2674": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Ruby Tuesday", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2675": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 216, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Let's Spend The Night Together", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2676": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Intro", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2677": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "You Got Me Rocking", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2678": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Gimmie Shelters", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2679": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Flip The Switch", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2680": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Memory Motel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2681": { - "Composer": "Jesse Ed Davis III/Taj Mahal", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Corinna", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2682": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Saint Of Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2683": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Wainting On A Friend", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2684": { - "Composer": "Faithfull/Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Sister Morphine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2685": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Live With Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2686": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Respectable", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2687": { - "Composer": "De Beauport/Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Thief In The Night", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2688": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "The Last Time", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2689": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 217, - "Title": "No Security" - }, - "Name": "Out Of Control", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2690": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Love Is Strong", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2691": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "You Got Me Rocking", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2692": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Sparks Will Fly", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2693": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "The Worst", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2694": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "New Faces", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2695": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Moon Is Up", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2696": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Out Of Tears", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2697": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "I Go Wild", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2698": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Brand New Car", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2699": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Sweethearts Together", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2700": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Suck On The Jugular", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2701": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Blinded By Rainbows", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2702": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Baby Break It Down", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2703": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Thru And Thru", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2704": { - "Composer": "Jagger/Richards", - "album": { - "AlbumId": 218, - "Title": "Voodoo Lounge" - }, - "Name": "Mean Disposition", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2705": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Walking Wounded", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2706": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Temptation", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2707": { - "Composer": "Daniel Lanois", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "The Messenger", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2708": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Psychopomp", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2709": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Sister Awake", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2710": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "The Bazaar", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2711": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Save Me (Remix)", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2712": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Fire In The Head", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2713": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Release", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2714": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Heaven Coming Down", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2715": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "The River (Remix)", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2716": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Babylon", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2717": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Waiting On A Sign", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2718": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Life Line", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2719": { - "Composer": "Keith Richards/Mick Jagger", - "album": { - "AlbumId": 219, - "Title": "Tangents" - }, - "Name": "Paint It Black", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2720": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Temptation", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2721": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Army Ants", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2722": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Psychopomp", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2723": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Gyroscope", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2724": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Alarum", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2725": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Release", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2726": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Transmission", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2727": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Babylon", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2728": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Pulse", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2729": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Emerald", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2730": { - "Composer": "The Tea Party", - "album": { - "AlbumId": 220, - "Title": "Transmission" - }, - "Name": "Aftermath", - "genre": { - "Name": "Alternative & Punk", - "GenreId": 4 - } - }, - "2731": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "I Can't Explain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2732": { - "Composer": "Pete Townshend, Roger Daltrey", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Anyway, Anyhow, Anywhere", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2733": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "My Generation", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2734": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Substitute", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2735": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "I'm A Boy", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2736": { - "Composer": "John Entwistle", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Boris The Spider", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2737": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Happy Jack", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2738": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Pictures Of Lily", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2739": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "I Can See For Miles", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2740": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Magic Bus", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2741": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Pinball Wizard", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2742": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "The Seeker", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2743": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Baba O'Riley", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2744": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Won't Get Fooled Again (Full Length Version)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2745": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Let's See Action", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2746": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "5.15", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2747": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Join Together", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2748": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Squeeze Box", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2749": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Who Are You (Single Edit Version)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2750": { - "Composer": "Pete Townshend", - "album": { - "AlbumId": 221, - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "You Better You Bet", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2751": { - "Composer": "Genival Cassiano/Silvio Rochael", - "album": { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Primavera", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2752": { - "Composer": "Tim Maia", - "album": { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Chocolate", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2753": { - "Composer": "Tim Maia", - "album": { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Azul Da Cor Do Mar", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2757": { - "Composer": "Tim Maia", - "album": { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "New Love", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2763": { - "Composer": "Tim Maia", - "album": { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Compadre", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2764": { - "Composer": "Tim Maia", - "album": { - "AlbumId": 222, - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Over Again", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2766": { - "Composer": null, - "album": { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "O Que Me Importa", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2771": { - "Composer": null, - "album": { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "A Festa Do Santo Reis", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2772": { - "Composer": null, - "album": { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "I Don't Know What To Do With Myself", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2774": { - "Composer": null, - "album": { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "Nosso Adeus", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2776": { - "Composer": null, - "album": { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "Preciso Ser Amado", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2780": { - "Composer": null, - "album": { - "AlbumId": 223, - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "Formigueiro", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "2819": { - "Composer": null, - "album": { - "AlbumId": 226, - "Title": "Battlestar Galactica: The Story So Far" - }, - "Name": "Battlestar Galactica: The Story So Far", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2820": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Occupation / Precipice", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2821": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Exodus, Pt. 1", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2822": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Exodus, Pt. 2", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2823": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Collaborators", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2824": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Torn", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2825": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "A Measure of Salvation", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2826": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Hero", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2827": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Unfinished Business", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2828": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Passage", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2829": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Eye of Jupiter", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2830": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Rapture", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2831": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Taking a Break from All Your Worries", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2832": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Woman King", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2833": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "A Day In the Life", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2834": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Dirty Hands", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2835": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Maelstrom", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2836": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Son Also Rises", - "genre": { - "Name": "Science Fiction", - "GenreId": 18 - } - }, - "2837": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Crossroads, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "2838": { - "Composer": null, - "album": { - "AlbumId": 227, - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Crossroads, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "2839": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Genesis", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2840": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Don't Look Back", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2841": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "One Giant Leap", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2842": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Collision", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2843": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Hiros", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2844": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Better Halves", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2845": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Nothing to Hide", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2846": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Seven Minutes to Midnight", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2847": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Homecoming", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2848": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Six Months Ago", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2849": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Fallout", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2850": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "The Fix", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2851": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Distractions", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2852": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Run!", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2853": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Unexpected", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2854": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Company Man", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2855": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Company Man", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2856": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Parasite", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2857": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "A Tale of Two Cities", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2858": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Lost (Pilot, Part 1) [Premiere]", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2859": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Man of Science, Man of Faith (Premiere)", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2860": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Adrift", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2861": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Lost (Pilot, Part 2)", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2862": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "The Glass Ballerina", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2863": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Further Instructions", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2864": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Orientation", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2865": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Tabula Rasa", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2866": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Every Man for Himself", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2867": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Everybody Hates Hugo", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2868": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Walkabout", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2869": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "...And Found", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2870": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "The Cost of Living", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2871": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "White Rabbit", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2872": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Abandoned", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2873": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "House of the Rising Sun", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2874": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "I Do", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2875": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Not In Portland", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2876": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Not In Portland", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2877": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "The Moth", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2878": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "The Other 48 Days", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2879": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Collision", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2880": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Confidence Man", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2881": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Flashes Before Your Eyes", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2882": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Lost Survival Guide", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2883": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Solitary", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2884": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "What Kate Did", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2885": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Raised By Another", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2886": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Stranger In a Strange Land", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2887": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "The 23rd Psalm", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2888": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "All the Best Cowboys Have Daddy Issues", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2889": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "The Hunting Party", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2890": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Tricia Tanaka Is Dead", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2891": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Enter 77", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2892": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Fire + Water", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2893": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Whatever the Case May Be", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2894": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Hearts and Minds", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2895": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Par Avion", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2896": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "The Long Con", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2897": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "One of Them", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2898": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Special", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2899": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "The Man from Tallahassee", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2901": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Homecoming", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2902": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Maternity Leave", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2903": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Left Behind", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2904": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Outlaws", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2905": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "The Whole Truth", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2906": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "...In Translation", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2907": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Lockdown", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2908": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "One of Us", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2909": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Catch-22", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2910": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Dave", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2911": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Numbers", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2912": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "D.O.C.", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2913": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Deus Ex Machina", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2914": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "S.O.S.", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2915": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Do No Harm", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2916": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Two for the Road", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2917": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "The Greater Good", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2918": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "\"?\"", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2919": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Born to Run", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2920": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Three Minutes", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2921": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Exodus (Part 1)", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2922": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Live Together, Die Alone, Pt. 1", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "2923": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Exodus (Part 2) [Season Finale]", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2924": { - "Composer": null, - "album": { - "AlbumId": 231, - "Title": "Lost, Season 2" - }, - "Name": "Live Together, Die Alone, Pt. 2", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2925": { - "Composer": null, - "album": { - "AlbumId": 230, - "Title": "Lost, Season 1" - }, - "Name": "Exodus (Part 3) [Season Finale]", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "2926": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Zoo Station", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2927": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Even Better Than The Real Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2928": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "One", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2929": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Until The End Of The World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2930": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Who's Gonna Ride Your Wild Horses", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2931": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "So Cruel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2932": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "The Fly", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2933": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Mysterious Ways", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2934": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Tryin' To Throw Your Arms Around The World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2935": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Ultraviolet (Light My Way)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2936": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Acrobat", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2937": { - "Composer": "U2", - "album": { - "AlbumId": 232, - "Title": "Achtung Baby" - }, - "Name": "Love Is Blindness", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2938": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Beautiful Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2939": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Stuck In A Moment You Can't Get Out Of", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2940": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Elevation", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2941": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Walk On", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2942": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Kite", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2943": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "In A Little While", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2944": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Wild Honey", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2945": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Peace On Earth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2946": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "When I Look At The World", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2947": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "New York", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2948": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "AlbumId": 233, - "Title": "All That You Can't Leave Behind" - }, - "Name": "Grace", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2949": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "The Three Sunrises", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2950": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Spanish Eyes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2951": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Sweetest Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2952": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Love Comes Tumbling", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2953": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Bass Trap", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2954": { - "Composer": "Ivan Kral/Patti Smith", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Dancing Barefoot", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2955": { - "Composer": "Buzz Cason/Mac Gayden", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Everlasting Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2956": { - "Composer": "Alex North/Hy Zaret", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Unchained Melody", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2957": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Walk To The Water", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2958": { - "Composer": "Brian Eno/U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Luminous Times (Hold On To Love)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2959": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Hallelujah Here She Comes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2960": { - "Composer": "Bono", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Silver And Gold", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2961": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Endless Deep", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2962": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "A Room At The Heartbreak Hotel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2963": { - "Composer": "U2", - "album": { - "AlbumId": 234, - "Title": "B-Sides 1980-1990" - }, - "Name": "Trash, Trampoline And The Party Girl", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2964": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Vertigo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2965": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Miracle Drug", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2966": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Sometimes You Can't Make It On Your Own", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2967": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Love And Peace Or Else", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2968": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "City Of Blinding Lights", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2969": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "All Because Of You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2970": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "A Man And A Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2971": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Crumbs From Your Table", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2972": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "One Step Closer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2973": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Original Of The Species", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2974": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "AlbumId": 235, - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Yahweh", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2975": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Discotheque", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2976": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Do You Feel Loved", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2977": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Mofo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2978": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "If God Will Send His Angels", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2979": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Staring At The Sun", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2980": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Last Night On Earth", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2981": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Gone", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2982": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Miami", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2983": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "The Playboy Mansion", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2984": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "If You Wear That Velvet Dress", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2985": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Please", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2986": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "AlbumId": 236, - "Title": "Pop" - }, - "Name": "Wake Up Dead Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2987": { - "Composer": "Lennon, John/McCartney, Paul", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Helter Skelter", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2988": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Van Diemen's Land", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2989": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Desire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2990": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Hawkmoon 269", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2991": { - "Composer": "Dylan, Bob", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "All Along The Watchtower", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2992": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "I Still Haven't Found What I'm Looking for", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2993": { - "Composer": "Mabins, Macie/Magee, Sterling/Robinson, Bobby", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Freedom For My People", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2994": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Silver And Gold", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2995": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Pride (In The Name Of Love)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2996": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Angel Of Harlem", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2997": { - "Composer": "Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Love Rescue Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2998": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "When Love Comes To Town", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "2999": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Heartland", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3000": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "God Part II", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3001": { - "Composer": "Hendrix, Jimi", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "The Star Spangled Banner", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3002": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "Bullet The Blue Sky", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3003": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "AlbumId": 237, - "Title": "Rattle And Hum" - }, - "Name": "All I Want Is You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3004": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Pride (In The Name Of Love)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3005": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "New Year's Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3006": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "With Or Without You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3007": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "I Still Haven't Found What I'm Looking For", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3008": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Sunday Bloody Sunday", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3009": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Bad", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3010": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Where The Streets Have No Name", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3011": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "I Will Follow", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3012": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "The Unforgettable Fire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3013": { - "Composer": "U2 & Daragh O'Toole", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Sweetest Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3014": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Desire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3015": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "When Love Comes To Town", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3016": { - "Composer": "U2", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "Angel Of Harlem", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3017": { - "Composer": "U2 & Van Dyke Parks", - "album": { - "AlbumId": 238, - "Title": "The Best Of 1980-1990" - }, - "Name": "All I Want Is You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3018": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Sunday Bloody Sunday", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3019": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Seconds", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3020": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "New Year's Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3021": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Like A Song...", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3022": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Drowning Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3023": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "The Refugee", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3024": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Two Hearts Beat As One", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3025": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Red Light", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3026": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "Surrender", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3027": { - "Composer": "U2", - "album": { - "AlbumId": 239, - "Title": "War" - }, - "Name": "\"40\"", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3028": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Zooropa", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3029": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Babyface", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3030": { - "Composer": "U2; Edge, The", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Numb", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3031": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Lemon", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3032": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Stay (Faraway, So Close!)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3033": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Daddy's Gonna Pay For Your Crashed Car", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3034": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Some Days Are Better Than Others", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3035": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "The First Time", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3036": { - "Composer": "U2; Bono & Edge, The", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "Dirty Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3037": { - "Composer": "U2; Bono", - "album": { - "AlbumId": 240, - "Title": "Zooropa" - }, - "Name": "The Wanderer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3038": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Breakfast In Bed", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3039": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Where Did I Go Wrong", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3040": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "I Would Do For You", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3041": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Homely Girl", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3042": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Here I Am (Come And Take Me)", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3043": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Kingston Town", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3044": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Wear You To The Ball", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3045": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "(I Can't Help) Falling In Love With You", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3046": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Higher Ground", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3047": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Bring Me Your Cup", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3048": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "C'est La Vie", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3049": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Reggae Music", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3050": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Superstition", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3051": { - "Composer": null, - "album": { - "AlbumId": 241, - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Until My Dying Day", - "genre": { - "Name": "Reggae", - "GenreId": 8 - } - }, - "3052": { - "Composer": "Ray Davies", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Where Have All The Good Times Gone?", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3053": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Hang 'Em High", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3054": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Cathedral", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3055": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Secrets", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3056": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Intruder", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3057": { - "Composer": "Bill Dees/Roy Orbison", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "(Oh) Pretty Woman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3058": { - "Composer": "Ivy Jo Hunter/Marvin Gaye/William Stevenson", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Dancing In The Street", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3059": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Little Guitars (Intro)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3060": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Little Guitars", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3061": { - "Composer": "Jack Yellen/Milton Ager", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Big Bad Bill (Is Sweet William Now)", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3062": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "The Full Bug", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3063": { - "Composer": "Dale Evans", - "album": { - "AlbumId": 242, - "Title": "Diver Down" - }, - "Name": "Happy Trails", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3064": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Eruption", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3065": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Ain't Talkin' 'bout Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3066": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Runnin' With The Devil", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3067": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Dance the Night Away", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3068": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "And the Cradle Will Rock...", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3069": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Unchained", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3070": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Jump", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3071": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Panama", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3072": { - "Composer": "Van Halen", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Why Can't This Be Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3073": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Dreams", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3074": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "When It's Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3075": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Poundcake", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3076": { - "Composer": "Van Halen", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Right Now", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3077": { - "Composer": "Van Halen", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Can't Stop Loving You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3078": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Humans Being", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3079": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Can't Get This Stuff No More", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3080": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "album": { - "AlbumId": 243, - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Me Wise Magic", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3081": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Runnin' With The Devil", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3082": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Eruption", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3083": { - "Composer": "Ray Davies", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "You Really Got Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3084": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Ain't Talkin' 'Bout Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3085": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "I'm The One", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3086": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Jamie's Cryin'", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3087": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Atomic Punk", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3088": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Feel Your Love Tonight", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3089": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Little Dreamer", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3090": { - "Composer": "John Brim", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "Ice Cream Man", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3091": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "AlbumId": 244, - "Title": "Van Halen" - }, - "Name": "On Fire", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3092": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Neworld", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3093": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Without You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3094": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "One I Want", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3095": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "From Afar", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3096": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Dirty Water Dog", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3097": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Once", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3098": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Fire in the Hole", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3099": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Josephina", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3100": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Year to the Day", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3101": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Primary", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3102": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "Ballot or the Bullet", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3103": { - "Composer": "Van Halen", - "album": { - "AlbumId": 245, - "Title": "Van Halen III" - }, - "Name": "How Many Say I", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3104": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Sucker Train Blues", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3105": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Do It For The Kids", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3106": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Big Machine", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3107": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Illegal I Song", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3108": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Spectacle", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3109": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Fall To Pieces", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3110": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Headspace", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3111": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Superhuman", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3112": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Set Me Free", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3113": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "You Got No Right", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3114": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Slither", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3115": { - "Composer": "Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Dirty Little Thing", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3116": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "AlbumId": 246, - "Title": "Contraband" - }, - "Name": "Loving The Alien", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3132": { - "Composer": "Sykes", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Still Of The Night", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3133": { - "Composer": "Marsden", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Here I Go Again", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3134": { - "Composer": "Sykes", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Is This Love", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3135": { - "Composer": "Galley", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Love Ain't No Stranger", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3136": { - "Composer": "Sykes", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Looking For Love", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3137": { - "Composer": "Vandenberg", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Now You're Gone", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3138": { - "Composer": "Coverdale", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Slide It In", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3139": { - "Composer": "Moody", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Slow An' Easy", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3140": { - "Composer": "Vandenberg", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Judgement Day", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3141": { - "Composer": "Sykes", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "You're Gonna Break My Hart Again", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3142": { - "Composer": "Vandenberg", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "The Deeper The Love", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3143": { - "Composer": "Coverdale", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Crying In The Rain", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3144": { - "Composer": "Marsden/Moody", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Fool For Your Loving", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3145": { - "Composer": "Vandenberg", - "album": { - "AlbumId": 141, - "Title": "Greatest Hits" - }, - "Name": "Sweet Lady Luck", - "genre": { - "Name": "Metal", - "GenreId": 3 - } - }, - "3149": { - "Composer": "Alcides Dias Lopes", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Vivo Isolado Do Mundo", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3153": { - "Composer": "Augusto Garcez/Nelson Cavaquinho", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Rugas", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3155": { - "Composer": "Aldir Blanc/Jayme Vignoli", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Sem Essa de Malandro Agulha", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3158": { - "Composer": "Acyr Marques/Arlindo Cruz/Franco", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Saudade Louca", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3160": { - "Composer": "Nei Lopes/Wilson Moreira", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Sapopemba e Maxambomba", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3162": { - "Composer": "Ratinho/Zeca Pagodinho", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Lua de Ogum", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3164": { - "Composer": "Carlinhos Santana/Nelson Rufino", - "album": { - "AlbumId": 248, - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Verdade", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3165": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "The Brig", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3166": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": ".07%", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3167": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Five Years Gone", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3168": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "The Hard Part", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3169": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "The Man Behind the Curtain", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3170": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Greatest Hits", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3171": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "Landslide", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3172": { - "Composer": null, - "album": { - "AlbumId": 249, - "Title": "The Office, Season 1" - }, - "Name": "The Office: An American Workplace (Pilot)", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3173": { - "Composer": null, - "album": { - "AlbumId": 249, - "Title": "The Office, Season 1" - }, - "Name": "Diversity Day", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3174": { - "Composer": null, - "album": { - "AlbumId": 249, - "Title": "The Office, Season 1" - }, - "Name": "Health Care", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3175": { - "Composer": null, - "album": { - "AlbumId": 249, - "Title": "The Office, Season 1" - }, - "Name": "The Alliance", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3176": { - "Composer": null, - "album": { - "AlbumId": 249, - "Title": "The Office, Season 1" - }, - "Name": "Basketball", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3177": { - "Composer": null, - "album": { - "AlbumId": 249, - "Title": "The Office, Season 1" - }, - "Name": "Hot Girl", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3178": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Dundies", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3179": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Sexual Harassment", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3180": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Office Olympics", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3181": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Fire", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3182": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Halloween", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3183": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Fight", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3184": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Client", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3185": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Performance Review", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3186": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Email Surveillance", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3187": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Christmas Party", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3188": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Booze Cruise", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3189": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Injury", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3190": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Secret", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3191": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "The Carpet", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3192": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Boys and Girls", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3193": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Valentine's Day", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3194": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Dwight's Speech", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3195": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Take Your Daughter to Work Day", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3196": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Michael's Birthday", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3197": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Drug Testing", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3198": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Conflict Resolution", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3199": { - "Composer": null, - "album": { - "AlbumId": 250, - "Title": "The Office, Season 2" - }, - "Name": "Casino Night - Season Finale", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3200": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Gay Witch Hunt", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3201": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Convention", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3202": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Coup", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3203": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Grief Counseling", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3204": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Initiation", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3205": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Diwali", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3206": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Branch Closing", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3207": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Merger", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3208": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Convict", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3209": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "A Benihana Christmas, Pts. 1 & 2", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3210": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Back from Vacation", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3211": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Traveling Salesmen", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3212": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Producer's Cut: The Return", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3213": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Ben Franklin", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3214": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Phyllis's Wedding", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3215": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Business School", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3216": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Cocktails", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3217": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Negotiation", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3218": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Safety Training", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3219": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Product Recall", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3220": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Women's Appreciation", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3221": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Beach Games", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3222": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Job", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3223": { - "Composer": null, - "album": { - "AlbumId": 228, - "Title": "Heroes, Season 1" - }, - "Name": "How to Stop an Exploding Man", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3224": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Through a Looking Glass", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3225": { - "Composer": "Page, Jones", - "album": { - "AlbumId": 252, - "Title": "Un-Led-Ed" - }, - "Name": "Your Time Is Gonna Come", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3226": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Battlestar Galactica, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3227": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Battlestar Galactica, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3228": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Battlestar Galactica, Pt. 3", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3229": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Lost Planet of the Gods, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3230": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Lost Planet of the Gods, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3231": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Lost Warrior", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3232": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Long Patrol", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3233": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Gun On Ice Planet Zero, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3234": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Gun On Ice Planet Zero, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3235": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Magnificent Warriors", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3236": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Young Lords", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3237": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Living Legend, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3238": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Living Legend, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3239": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Fire In Space", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3240": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "War of the Gods, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3241": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "War of the Gods, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3242": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Man With Nine Lives", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3243": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Murder On the Rising Star", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3244": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Greetings from Earth, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3245": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Greetings from Earth, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3246": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Baltar's Escape", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3247": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Experiment In Terra", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3248": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Take the Celestra", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3249": { - "Composer": null, - "album": { - "AlbumId": 253, - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Hand of God", - "genre": { - "Name": "Sci Fi & Fantasy", - "GenreId": 20 - } - }, - "3250": { - "Composer": null, - "album": { - "AlbumId": 254, - "Title": "Aquaman" - }, - "Name": "Pilot", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3251": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Through the Looking Glass, Pt. 2", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3252": { - "Composer": null, - "album": { - "AlbumId": 229, - "Title": "Lost, Season 3" - }, - "Name": "Through the Looking Glass, Pt. 1", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3253": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Instant Karma", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3254": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "#9 Dream", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3255": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Mother", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3256": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Give Peace a Chance", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3257": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Cold Turkey", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3258": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Whatever Gets You Thru the Night", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3259": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "I'm Losing You", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3260": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Gimme Some Truth", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3261": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Oh, My Love", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3262": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Imagine", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3263": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Nobody Told Me", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3264": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Jealous Guy", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3265": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Working Class Hero", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3266": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Power to the People", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3267": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Imagine", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3268": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Beautiful Boy", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3269": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Isolation", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3270": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Watching the Wheels", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3271": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Grow Old With Me", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3272": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Gimme Some Truth", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3273": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "[Just Like] Starting Over", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3274": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "God", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3275": { - "Composer": null, - "album": { - "AlbumId": 255, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Real Love", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3276": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Sympton of the Universe", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3277": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Snowblind", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3278": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Black Sabbath", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3279": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Fairies Wear Boots", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3280": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "War Pigs", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3281": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "The Wizard", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3282": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "N.I.B.", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3283": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Sweet Leaf", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3284": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Never Say Die", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3285": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Sabbath, Bloody Sabbath", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3286": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Iron Man/Children of the Grave", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3287": { - "Composer": null, - "album": { - "AlbumId": 256, - "Title": "Speak of the Devil" - }, - "Name": "Paranoid", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3288": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Rock You Like a Hurricane", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3289": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "No One Like You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3290": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "The Zoo", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3291": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Loving You Sunday Morning", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3292": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Still Loving You", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3293": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Big City Nights", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3294": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Believe in Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3295": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Rhythm of Love", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3296": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "I Can't Explain", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3297": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Tease Me Please Me", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3298": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Wind of Change", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3299": { - "Composer": null, - "album": { - "AlbumId": 257, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Send Me an Angel", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3300": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Jump Around", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3301": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Salutations", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3302": { - "Composer": "E. Schrody/L. Freese/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Put Your Head Out", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3303": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Top O' The Morning To Ya", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3304": { - "Composer": "L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Commercial 1", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3305": { - "Composer": "E. Schrody/J. Vasquez/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "House And The Rising Sun", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3306": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Shamrocks And Shenanigans", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3307": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "House Of Pain Anthem", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3308": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Danny Boy, Danny Boy", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3309": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Guess Who's Back", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3310": { - "Composer": "L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Commercial 2", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3311": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Put On Your Shit Kickers", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3312": { - "Composer": "E. Schrody/L. Muggerud/R. Medrano", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Come And Get Some Of This", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3313": { - "Composer": "E. Schrody/R. Medrano", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Life Goes On", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3314": { - "Composer": "E. Schrody/L. Dimant/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "One For The Road", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3315": { - "Composer": "E. Schrody/R. Medrano", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Feel It", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3316": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "All My Love", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3317": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Jump Around (Pete Rock Remix)", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3318": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "AlbumId": 258, - "Title": "House of Pain" - }, - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)", - "genre": { - "Name": "Hip Hop/Rap", - "GenreId": 17 - } - }, - "3319": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Instinto Colectivo", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3320": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Chapa o Coco", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3321": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Prostituta", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3322": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Eu So Queria Sumir", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3323": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Tres Reis", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3324": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Um Lugar ao Sol", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3325": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Batalha Naval", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3326": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Todo o Carnaval tem seu Fim", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3327": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "O Misterio do Samba", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3328": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Armadura", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3329": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Na Ladeira", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3330": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Carimbo", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3331": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Catimbo", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3332": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Funk de Bamba", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3333": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Chega no Suingue", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3334": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Mun-Ra", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3335": { - "Composer": null, - "album": { - "AlbumId": 259, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Freestyle Love", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3336": { - "Composer": null, - "album": { - "AlbumId": 260, - "Title": "Cake: B-Sides and Rarities" - }, - "Name": "War Pigs", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3337": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Past, Present, and Future", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3338": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "The Beginning of the End", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3339": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "LOST Season 4 Trailer", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3340": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "LOST In 8:15", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3341": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Confirmed Dead", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3342": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "The Economist", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3343": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Eggtown", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3344": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "The Constant", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3345": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "The Other Woman", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3346": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Ji Yeon", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3347": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Meet Kevin Johnson", - "genre": { - "Name": "TV Shows", - "GenreId": 19 - } - }, - "3348": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "The Shape of Things to Come", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3349": { - "Composer": "Luca Gusella", - "album": { - "AlbumId": 262, - "Title": "Quiet Songs" - }, - "Name": "Amanda", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "3350": { - "Composer": "Andrea Dulbecco", - "album": { - "AlbumId": 262, - "Title": "Quiet Songs" - }, - "Name": "Despertar", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "3352": { - "Composer": "Karsh Kale/Vishal Vaid", - "album": { - "AlbumId": 264, - "Title": "Realize" - }, - "Name": "Distance", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3353": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "album": { - "AlbumId": 265, - "Title": "Every Kind of Light" - }, - "Name": "I Guess You're Right", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3355": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "album": { - "AlbumId": 265, - "Title": "Every Kind of Light" - }, - "Name": "Love Comes", - "genre": { - "Name": "Rock", - "GenreId": 1 - } - }, - "3356": { - "Composer": "Luciana Souza", - "album": { - "AlbumId": 266, - "Title": "Duos II" - }, - "Name": "Muita Bobeira", - "genre": { - "Name": "Latin", - "GenreId": 7 - } - }, - "3357": { - "Composer": "Aaron Goldberg", - "album": { - "AlbumId": 267, - "Title": "Worlds" - }, - "Name": "OAM's Blues", - "genre": { - "Name": "Jazz", - "GenreId": 2 - } - }, - "3358": { - "Composer": "Karsh Kale", - "album": { - "AlbumId": 264, - "Title": "Realize" - }, - "Name": "One Step Beyond", - "genre": { - "Name": "Electronica/Dance", - "GenreId": 15 - } - }, - "3359": { - "Composer": "Ludwig van Beethoven", - "album": { - "AlbumId": 268, - "Title": "The Best of Beethoven" - }, - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3360": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Something Nice Back Home", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3361": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "Cabin Fever", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3362": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "There's No Place Like Home, Pt. 1", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3363": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "There's No Place Like Home, Pt. 2", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3364": { - "Composer": null, - "album": { - "AlbumId": 261, - "Title": "LOST, Season 4" - }, - "Name": "There's No Place Like Home, Pt. 3", - "genre": { - "Name": "Drama", - "GenreId": 21 - } - }, - "3365": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Say Hello 2 Heaven", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3366": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Reach Down", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3367": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Hunger Strike", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3368": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Pushin Forward Back", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3369": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Call Me a Dog", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3370": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Times of Trouble", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3371": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Wooden Jesus", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3372": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Your Savior", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3373": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "Four Walled World", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3374": { - "Composer": null, - "album": { - "AlbumId": 269, - "Title": "Temple of the Dog" - }, - "Name": "All Night Thing", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3375": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "No Such Thing", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3376": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Poison Eye", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3377": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Arms Around Your Love", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3378": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Safe and Sound", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3379": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "She'll Never Be Your Man", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3380": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Ghosts", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3381": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Killing Birds", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3382": { - "Composer": "Michael Jackson", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Billie Jean", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3383": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Scar On the Sky", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3384": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Your Soul Today", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3385": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Finally Forever", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3386": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Silence the Voices", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3387": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "Disappearing Act", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3388": { - "Composer": "Chris Cornell", - "album": { - "AlbumId": 270, - "Title": "Carry On" - }, - "Name": "You Know My Name", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3389": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Revelations", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3390": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "One and the Same", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3391": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Sound of a Gun", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3392": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Until We Fall", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3393": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Original Fire", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3394": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Broken City", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3395": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Somedays", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3396": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Shape of Things to Come", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3397": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Jewel of the Summertime", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3398": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Wide Awake", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3399": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Nothing Left to Say But Goodbye", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3400": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Moth", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3401": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Show Me How to Live (Live at the Quart Festival)", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3402": { - "Composer": null, - "album": { - "AlbumId": 271, - "Title": "Revelations" - }, - "Name": "Band Members Discuss Tracks from \"Revelations\"", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3403": { - "Composer": "Anonymous", - "album": { - "AlbumId": 272, - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass" - }, - "Name": "Intoitus: Adorate Deum", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3404": { - "Composer": "Gregorio Allegri", - "album": { - "AlbumId": 273, - "Title": "Allegri: Miserere" - }, - "Name": "Miserere mei, Deus", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3405": { - "Composer": "Johann Pachelbel", - "album": { - "AlbumId": 274, - "Title": "Pachelbel: Canon & Gigue" - }, - "Name": "Canon and Gigue in D Major: I. Canon", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3406": { - "Composer": "Antonio Vivaldi", - "album": { - "AlbumId": 275, - "Title": "Vivaldi: The Four Seasons" - }, - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3407": { - "Composer": "Johann Sebastian Bach", - "album": { - "AlbumId": 276, - "Title": "Bach: Violin Concertos" - }, - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3410": { - "Composer": "George Frideric Handel", - "album": { - "AlbumId": 279, - "Title": "Handel: The Messiah (Highlights)" - }, - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3411": { - "Composer": "George Frideric Handel", - "album": { - "AlbumId": 280, - "Title": "The World of Classical Favourites" - }, - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3412": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "AlbumId": 281, - "Title": "Sir Neville Marriner: A Celebration" - }, - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3413": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "AlbumId": 282, - "Title": "Mozart: Wind Concertos" - }, - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3414": { - "Composer": "Franz Joseph Haydn", - "album": { - "AlbumId": 283, - "Title": "Haydn: Symphonies 99 - 104" - }, - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3416": { - "Composer": "Franz Schubert", - "album": { - "AlbumId": 285, - "Title": "A Soprano Inspired" - }, - "Name": "Ave Maria", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3417": { - "Composer": "Giuseppe Verdi", - "album": { - "AlbumId": 286, - "Title": "Great Opera Choruses" - }, - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3420": { - "Composer": "Peter Ilyich Tchaikovsky", - "album": { - "AlbumId": 289, - "Title": "Tchaikovsky: The Nutcracker" - }, - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3421": { - "Composer": "Edward Elgar", - "album": { - "AlbumId": 290, - "Title": "The Last Night of the Proms" - }, - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3423": { - "Composer": "Gustav Holst", - "album": { - "AlbumId": 292, - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies" - }, - "Name": "Jupiter, the Bringer of Jollity", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3424": { - "Composer": "Giacomo Puccini", - "album": { - "AlbumId": 293, - "Title": "Pavarotti's Opera Made Easy" - }, - "Name": "Turandot, Act III, Nessun dorma!", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3425": { - "Composer": "Samuel Barber", - "album": { - "AlbumId": 294, - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings" - }, - "Name": "Adagio for Strings from the String Quartet, Op. 11", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3426": { - "Composer": "Carl Orff", - "album": { - "AlbumId": 295, - "Title": "Carmina Burana" - }, - "Name": "Carmina Burana: O Fortuna", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3427": { - "Composer": "Aaron Copland", - "album": { - "AlbumId": 296, - "Title": "A Copland Celebration, Vol. I" - }, - "Name": "Fanfare for the Common Man", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3428": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "Branch Closing", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3429": { - "Composer": null, - "album": { - "AlbumId": 251, - "Title": "The Office, Season 3" - }, - "Name": "The Return", - "genre": { - "Name": "Comedy", - "GenreId": 22 - } - }, - "3430": { - "Composer": "Johann Sebastian Bach", - "album": { - "AlbumId": 297, - "Title": "Bach: Toccata & Fugue in D Minor" - }, - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3431": { - "Composer": "Sergei Prokofiev", - "album": { - "AlbumId": 298, - "Title": "Prokofiev: Symphony No.1" - }, - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3432": { - "Composer": "Nikolai Rimsky-Korsakov", - "album": { - "AlbumId": 299, - "Title": "Scheherazade" - }, - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3433": { - "Composer": "Johann Sebastian Bach", - "album": { - "AlbumId": 300, - "Title": "Bach: The Brandenburg Concertos" - }, - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3435": { - "Composer": "Pietro Mascagni", - "album": { - "AlbumId": 302, - "Title": "Mascagni: Cavalleria Rusticana" - }, - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3436": { - "Composer": "Jean Sibelius", - "album": { - "AlbumId": 303, - "Title": "Sibelius: Finlandia" - }, - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3437": { - "Composer": "Ludwig van Beethoven", - "album": { - "AlbumId": 304, - "Title": "Beethoven Piano Sonatas: Moonlight & Pastorale" - }, - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3438": { - "Composer": "Ralph Vaughan Williams", - "album": { - "AlbumId": 280, - "Title": "The World of Classical Favourites" - }, - "Name": "Fantasia On Greensleeves", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3439": { - "Composer": "Gustav Mahler", - "album": { - "AlbumId": 305, - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde" - }, - "Name": "Das Lied Von Der Erde, Von Der Jugend", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3441": { - "Composer": "John Adams", - "album": { - "AlbumId": 307, - "Title": "Adams, John: The Chairman Dances" - }, - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3443": { - "Composer": "Giovanni Pierluigi da Palestrina", - "album": { - "AlbumId": 309, - "Title": "Palestrina: Missa Papae Marcelli & Allegri: Miserere" - }, - "Name": "Missa Papae Marcelli: Kyrie", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3444": { - "Composer": null, - "album": { - "AlbumId": 310, - "Title": "Prokofiev: Romeo & Juliet" - }, - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3445": { - "Composer": "Johann Strauss II", - "album": { - "AlbumId": 311, - "Title": "Strauss: Waltzes" - }, - "Name": "On the Beautiful Blue Danube", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3446": { - "Composer": "Hector Berlioz", - "album": { - "AlbumId": 312, - "Title": "Berlioz: Symphonie Fantastique" - }, - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3447": { - "Composer": "Georges Bizet", - "album": { - "AlbumId": 313, - "Title": "Bizet: Carmen Highlights" - }, - "Name": "Carmen: Overture", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3448": { - "Composer": "Thomas Tallis", - "album": { - "AlbumId": 314, - "Title": "English Renaissance" - }, - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3452": { - "Composer": null, - "album": { - "AlbumId": 318, - "Title": "SCRIABIN: Vers la flamme" - }, - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3453": { - "Composer": "John Dowland", - "album": { - "AlbumId": 319, - "Title": "Armada: Music from the Courts of England and Spain" - }, - "Name": "Pavan, Lachrimae Antiquae", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3454": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "AlbumId": 320, - "Title": "Mozart: Symphonies Nos. 40 & 41" - }, - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3455": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Rehab", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3456": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "You Know I'm No Good", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3457": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Me & Mr. Jones", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3458": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Just Friends", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3459": { - "Composer": "Mark Ronson", - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Back to Black", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3460": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Love Is a Losing Game", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3461": { - "Composer": "Nickolas Ashford & Valerie Simpson", - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Tears Dry On Their Own", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3462": { - "Composer": "Paul O'duffy", - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Wake Up Alone", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3463": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Some Unholy War", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3464": { - "Composer": "Richard Poindexter & Robert Poindexter", - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "He Can Only Hold Her", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3465": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "You Know I'm No Good (feat. Ghostface Killah)", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3466": { - "Composer": null, - "album": { - "AlbumId": 321, - "Title": "Back to Black" - }, - "Name": "Rehab (Hot Chip Remix)", - "genre": { - "Name": "R&B/Soul", - "GenreId": 14 - } - }, - "3467": { - "Composer": null, - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "Intro / Stronger Than Me", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3468": { - "Composer": null, - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "You Sent Me Flying / Cherry", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3469": { - "Composer": "Salaam Remi", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "F**k Me Pumps", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3470": { - "Composer": null, - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "I Heard Love Is Blind", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3471": { - "Composer": "Isham Jones & Marty Symes", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "(There Is) No Greater Love (Teo Licks)", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3472": { - "Composer": "Salaam Remi", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "In My Bed", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3473": { - "Composer": "Luke Smith", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "Take the Box", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3474": { - "Composer": "Matt Rowe & Stefan Skarbek", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "October Song", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3475": { - "Composer": "Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "What Is It About Men", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3476": { - "Composer": "Freddy James, Jimmy hogarth & Larry Stock", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "Help Yourself", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3477": { - "Composer": "Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek", - "album": { - "AlbumId": 322, - "Title": "Frank" - }, - "Name": "Amy Amy Amy (Outro)", - "genre": { - "Name": "Pop", - "GenreId": 9 - } - }, - "3478": { - "Composer": null, - "album": { - "AlbumId": 323, - "Title": "Carried to Dust (Bonus Track Version)" - }, - "Name": "Slowness", - "genre": { - "Name": "Alternative", - "GenreId": 23 - } - }, - "3479": { - "Composer": "Ludwig van Beethoven", - "album": { - "AlbumId": 324, - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc." - }, - "Name": "Prometheus Overture, Op. 43", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3481": { - "Composer": null, - "album": { - "AlbumId": 326, - "Title": "Mendelssohn: A Midsummer Night's Dream" - }, - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3482": { - "Composer": "Johann Sebastian Bach", - "album": { - "AlbumId": 327, - "Title": "Bach: Orchestral Suites Nos. 1 - 4" - }, - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I & II", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3483": { - "Composer": "Marc-Antoine Charpentier", - "album": { - "AlbumId": 328, - "Title": "Charpentier: Divertissements, Airs & Concerts" - }, - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3484": { - "Composer": "Astor Piazzolla", - "album": { - "AlbumId": 329, - "Title": "South American Getaway" - }, - "Name": "Adios nonino", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3486": { - "Composer": "Henry Purcell", - "album": { - "AlbumId": 331, - "Title": "Purcell: The Fairy Queen" - }, - "Name": "Act IV, Symphony", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3488": { - "Composer": "Henry Purcell", - "album": { - "AlbumId": 333, - "Title": "Purcell: Music for the Queen Mary" - }, - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3490": { - "Composer": "Johann Sebastian Bach", - "album": { - "AlbumId": 335, - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro" - }, - "Name": "Partita in E Major, BWV 1006A: I. Prelude", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3491": { - "Composer": "Igor Stravinsky", - "album": { - "AlbumId": 336, - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps" - }, - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3492": { - "Composer": "William Byrd", - "album": { - "AlbumId": 314, - "Title": "English Renaissance" - }, - "Name": "Sing Joyfully", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3493": { - "Composer": "Karol Szymanowski", - "album": { - "AlbumId": 337, - "Title": "Szymanowski: Piano Works, Vol. 1" - }, - "Name": "Metopes, Op. 29: Calypso", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3497": { - "Composer": null, - "album": { - "AlbumId": 341, - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder" - }, - "Name": "Erlkonig, D.328", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3498": { - "Composer": "Pietro Antonio Locatelli", - "album": { - "AlbumId": 342, - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3" - }, - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3499": { - "Composer": null, - "album": { - "AlbumId": 343, - "Title": "Respighi:Pines of Rome" - }, - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3500": { - "Composer": "Franz Schubert", - "album": { - "AlbumId": 344, - "Title": "Schubert: The Late String Quartets & String Quintet (3 CD's)" - }, - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3501": { - "Composer": "Claudio Monteverdi", - "album": { - "AlbumId": 345, - "Title": "Monteverdi: L'Orfeo" - }, - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3502": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "AlbumId": 346, - "Title": "Mozart: Chamber Music" - }, - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro", - "genre": { - "Name": "Classical", - "GenreId": 24 - } - }, - "3503": { - "Composer": "Philip Glass", - "album": { - "AlbumId": 347, - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)" - }, - "Name": "Koyaanisqatsi", - "genre": { - "Name": "Soundtrack", - "GenreId": 10 - } - } - } -} diff --git a/community/tools/firebase2graphql/test/data-sets/chinook_nested.json b/community/tools/firebase2graphql/test/data-sets/chinook_nested.json deleted file mode 100644 index cf350424e0a..00000000000 --- a/community/tools/firebase2graphql/test/data-sets/chinook_nested.json +++ /dev/null @@ -1,95545 +0,0 @@ -{ - "f2gt_Album": { - "1": { - "tracks": { - "1": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "For Those About To Rock (We Salute You)" - }, - "6": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Put The Finger On You" - }, - "7": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Let's Get It Up" - }, - "8": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Inject The Venom" - }, - "9": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Snowballed" - }, - "10": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Evil Walks" - }, - "11": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "C.O.D." - }, - "12": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Breaking The Rules" - }, - "13": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Night Of The Long Knives" - }, - "14": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "Name": "Spellbound" - } - }, - "Title": "For Those About To Rock We Salute You", - "artist": { - "ArtistId": 1, - "albums": { - "1": { - "tracks": { - "1": { - "Name": "For Those About To Rock (We Salute You)" - }, - "6": { - "Name": "Put The Finger On You" - }, - "7": { - "Name": "Let's Get It Up" - }, - "8": { - "Name": "Inject The Venom" - }, - "9": { - "Name": "Snowballed" - }, - "10": { - "Name": "Evil Walks" - }, - "11": { - "Name": "C.O.D." - }, - "12": { - "Name": "Breaking The Rules" - }, - "13": { - "Name": "Night Of The Long Knives" - }, - "14": { - "Name": "Spellbound" - } - }, - "Title": "For Those About To Rock We Salute You" - }, - "4": { - "tracks": { - "15": { - "Name": "Go Down" - }, - "16": { - "Name": "Dog Eat Dog" - }, - "17": { - "Name": "Let There Be Rock" - }, - "18": { - "Name": "Bad Boy Boogie" - }, - "19": { - "Name": "Problem Child" - }, - "20": { - "Name": "Overdose" - }, - "21": { - "Name": "Hell Ain't A Bad Place To Be" - }, - "22": { - "Name": "Whole Lotta Rosie" - } - }, - "Title": "Let There Be Rock" - } - }, - "Name": "AC/DC" - } - }, - "2": { - "tracks": { - "2": { - "Composer": null, - "Name": "Balls to the Wall" - } - }, - "Title": "Balls to the Wall", - "artist": { - "ArtistId": 2, - "albums": { - "2": { - "tracks": { - "2": { - "Name": "Balls to the Wall" - } - }, - "Title": "Balls to the Wall" - }, - "3": { - "tracks": { - "3": { - "Name": "Fast As a Shark" - }, - "4": { - "Name": "Restless and Wild" - }, - "5": { - "Name": "Princess of the Dawn" - } - }, - "Title": "Restless and Wild" - } - }, - "Name": "Accept" - } - }, - "3": { - "tracks": { - "3": { - "Composer": "F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman", - "Name": "Fast As a Shark" - }, - "4": { - "Composer": "F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman", - "Name": "Restless and Wild" - }, - "5": { - "Composer": "Deaffy & R.A. Smith-Diesel", - "Name": "Princess of the Dawn" - } - }, - "Title": "Restless and Wild", - "artist": { - "ArtistId": 2, - "albums": { - "2": { - "tracks": { - "2": { - "Name": "Balls to the Wall" - } - }, - "Title": "Balls to the Wall" - }, - "3": { - "tracks": { - "3": { - "Name": "Fast As a Shark" - }, - "4": { - "Name": "Restless and Wild" - }, - "5": { - "Name": "Princess of the Dawn" - } - }, - "Title": "Restless and Wild" - } - }, - "Name": "Accept" - } - }, - "4": { - "tracks": { - "15": { - "Composer": "AC/DC", - "Name": "Go Down" - }, - "16": { - "Composer": "AC/DC", - "Name": "Dog Eat Dog" - }, - "17": { - "Composer": "AC/DC", - "Name": "Let There Be Rock" - }, - "18": { - "Composer": "AC/DC", - "Name": "Bad Boy Boogie" - }, - "19": { - "Composer": "AC/DC", - "Name": "Problem Child" - }, - "20": { - "Composer": "AC/DC", - "Name": "Overdose" - }, - "21": { - "Composer": "AC/DC", - "Name": "Hell Ain't A Bad Place To Be" - }, - "22": { - "Composer": "AC/DC", - "Name": "Whole Lotta Rosie" - } - }, - "Title": "Let There Be Rock", - "artist": { - "ArtistId": 1, - "albums": { - "1": { - "tracks": { - "1": { - "Name": "For Those About To Rock (We Salute You)" - }, - "6": { - "Name": "Put The Finger On You" - }, - "7": { - "Name": "Let's Get It Up" - }, - "8": { - "Name": "Inject The Venom" - }, - "9": { - "Name": "Snowballed" - }, - "10": { - "Name": "Evil Walks" - }, - "11": { - "Name": "C.O.D." - }, - "12": { - "Name": "Breaking The Rules" - }, - "13": { - "Name": "Night Of The Long Knives" - }, - "14": { - "Name": "Spellbound" - } - }, - "Title": "For Those About To Rock We Salute You" - }, - "4": { - "tracks": { - "15": { - "Name": "Go Down" - }, - "16": { - "Name": "Dog Eat Dog" - }, - "17": { - "Name": "Let There Be Rock" - }, - "18": { - "Name": "Bad Boy Boogie" - }, - "19": { - "Name": "Problem Child" - }, - "20": { - "Name": "Overdose" - }, - "21": { - "Name": "Hell Ain't A Bad Place To Be" - }, - "22": { - "Name": "Whole Lotta Rosie" - } - }, - "Title": "Let There Be Rock" - } - }, - "Name": "AC/DC" - } - }, - "5": { - "tracks": { - "23": { - "Composer": "Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw", - "Name": "Walk On Water" - }, - "24": { - "Composer": "Steven Tyler, Joe Perry", - "Name": "Love In An Elevator" - }, - "25": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance, Holly Knight", - "Name": "Rag Doll" - }, - "26": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Name": "What It Takes" - }, - "27": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Name": "Dude (Looks Like A Lady)" - }, - "28": { - "Composer": "Steven Tyler, Tom Hamilton", - "Name": "Janie's Got A Gun" - }, - "29": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Name": "Cryin'" - }, - "30": { - "Composer": "Steven Tyler, Richie Supa", - "Name": "Amazing" - }, - "31": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "Name": "Blind Man" - }, - "32": { - "Composer": "Steven Tyler, Jim Vallance", - "Name": "Deuces Are Wild" - }, - "33": { - "Composer": "Steven Tyler, Jim Vallance", - "Name": "The Other Side" - }, - "34": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "Name": "Crazy" - }, - "35": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance", - "Name": "Eat The Rich" - }, - "36": { - "Composer": "Steven Tyler, Desmond Child", - "Name": "Angel" - }, - "37": { - "Composer": "Steven Tyler, Joe Perry, Mark Hudson", - "Name": "Livin' On The Edge" - } - }, - "Title": "Big Ones", - "artist": { - "ArtistId": 3, - "albums": { - "5": { - "tracks": { - "23": { - "Name": "Walk On Water" - }, - "24": { - "Name": "Love In An Elevator" - }, - "25": { - "Name": "Rag Doll" - }, - "26": { - "Name": "What It Takes" - }, - "27": { - "Name": "Dude (Looks Like A Lady)" - }, - "28": { - "Name": "Janie's Got A Gun" - }, - "29": { - "Name": "Cryin'" - }, - "30": { - "Name": "Amazing" - }, - "31": { - "Name": "Blind Man" - }, - "32": { - "Name": "Deuces Are Wild" - }, - "33": { - "Name": "The Other Side" - }, - "34": { - "Name": "Crazy" - }, - "35": { - "Name": "Eat The Rich" - }, - "36": { - "Name": "Angel" - }, - "37": { - "Name": "Livin' On The Edge" - } - }, - "Title": "Big Ones" - } - }, - "Name": "Aerosmith" - } - }, - "6": { - "tracks": { - "38": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "All I Really Want" - }, - "39": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "You Oughta Know" - }, - "40": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Perfect" - }, - "41": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Hand In My Pocket" - }, - "42": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Right Through You" - }, - "43": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Forgiven" - }, - "44": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "You Learn" - }, - "45": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Head Over Feet" - }, - "46": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Mary Jane" - }, - "47": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Ironic" - }, - "48": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Not The Doctor" - }, - "49": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "Wake Up" - }, - "50": { - "Composer": "Alanis Morissette & Glenn Ballard", - "Name": "You Oughta Know (Alternate)" - } - }, - "Title": "Jagged Little Pill", - "artist": { - "ArtistId": 4, - "albums": { - "6": { - "tracks": { - "38": { - "Name": "All I Really Want" - }, - "39": { - "Name": "You Oughta Know" - }, - "40": { - "Name": "Perfect" - }, - "41": { - "Name": "Hand In My Pocket" - }, - "42": { - "Name": "Right Through You" - }, - "43": { - "Name": "Forgiven" - }, - "44": { - "Name": "You Learn" - }, - "45": { - "Name": "Head Over Feet" - }, - "46": { - "Name": "Mary Jane" - }, - "47": { - "Name": "Ironic" - }, - "48": { - "Name": "Not The Doctor" - }, - "49": { - "Name": "Wake Up" - }, - "50": { - "Name": "You Oughta Know (Alternate)" - } - }, - "Title": "Jagged Little Pill" - } - }, - "Name": "Alanis Morissette" - } - }, - "7": { - "tracks": { - "51": { - "Composer": "Jerry Cantrell", - "Name": "We Die Young" - }, - "52": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "Man In The Box" - }, - "53": { - "Composer": "Jerry Cantrell", - "Name": "Sea Of Sorrow" - }, - "54": { - "Composer": "Jerry Cantrell", - "Name": "Bleed The Freak" - }, - "55": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "I Can't Remember" - }, - "56": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "Love, Hate, Love" - }, - "57": { - "Composer": "Jerry Cantrell, Michael Starr, Sean Kinney", - "Name": "It Ain't Like That" - }, - "58": { - "Composer": "Jerry Cantrell", - "Name": "Sunshine" - }, - "59": { - "Composer": "Jerry Cantrell", - "Name": "Put You Down" - }, - "60": { - "Composer": "Jerry Cantrell, Michael Starr, Layne Staley", - "Name": "Confusion" - }, - "61": { - "Composer": "Jerry Cantrell", - "Name": "I Know Somethin (Bout You)" - }, - "62": { - "Composer": "Jerry Cantrell, Layne Staley", - "Name": "Real Thing" - } - }, - "Title": "Facelift", - "artist": { - "ArtistId": 5, - "albums": { - "7": { - "tracks": { - "51": { - "Name": "We Die Young" - }, - "52": { - "Name": "Man In The Box" - }, - "53": { - "Name": "Sea Of Sorrow" - }, - "54": { - "Name": "Bleed The Freak" - }, - "55": { - "Name": "I Can't Remember" - }, - "56": { - "Name": "Love, Hate, Love" - }, - "57": { - "Name": "It Ain't Like That" - }, - "58": { - "Name": "Sunshine" - }, - "59": { - "Name": "Put You Down" - }, - "60": { - "Name": "Confusion" - }, - "61": { - "Name": "I Know Somethin (Bout You)" - }, - "62": { - "Name": "Real Thing" - } - }, - "Title": "Facelift" - } - }, - "Name": "Alice In Chains" - } - }, - "9": { - "tracks": { - "77": { - "Composer": "Apocalyptica", - "Name": "Enter Sandman" - }, - "78": { - "Composer": "Apocalyptica", - "Name": "Master Of Puppets" - }, - "79": { - "Composer": "Apocalyptica", - "Name": "Harvester Of Sorrow" - }, - "80": { - "Composer": "Apocalyptica", - "Name": "The Unforgiven" - }, - "81": { - "Composer": "Apocalyptica", - "Name": "Sad But True" - }, - "82": { - "Composer": "Apocalyptica", - "Name": "Creeping Death" - }, - "83": { - "Composer": "Apocalyptica", - "Name": "Wherever I May Roam" - }, - "84": { - "Composer": "Apocalyptica", - "Name": "Welcome Home (Sanitarium)" - } - }, - "Title": "Plays Metallica By Four Cellos", - "artist": { - "ArtistId": 7, - "albums": { - "9": { - "tracks": { - "77": { - "Name": "Enter Sandman" - }, - "78": { - "Name": "Master Of Puppets" - }, - "79": { - "Name": "Harvester Of Sorrow" - }, - "80": { - "Name": "The Unforgiven" - }, - "81": { - "Name": "Sad But True" - }, - "82": { - "Name": "Creeping Death" - }, - "83": { - "Name": "Wherever I May Roam" - }, - "84": { - "Name": "Welcome Home (Sanitarium)" - } - }, - "Title": "Plays Metallica By Four Cellos" - } - }, - "Name": "Apocalyptica" - } - }, - "10": { - "tracks": { - "85": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Cochise" - }, - "86": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Show Me How to Live" - }, - "87": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Gasoline" - }, - "88": { - "Composer": "Audioslave/Chris Cornell", - "Name": "What You Are" - }, - "89": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Like a Stone" - }, - "90": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Set It Off" - }, - "91": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Shadow on the Sun" - }, - "92": { - "Composer": "Audioslave/Chris Cornell", - "Name": "I am the Highway" - }, - "93": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Exploder" - }, - "94": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Hypnotize" - }, - "95": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Bring'em Back Alive" - }, - "96": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Light My Way" - }, - "97": { - "Composer": "Audioslave/Chris Cornell", - "Name": "Getaway Car" - }, - "98": { - "Composer": "Audioslave/Chris Cornell", - "Name": "The Last Remaining Light" - } - }, - "Title": "Audioslave", - "artist": { - "ArtistId": 8, - "albums": { - "10": { - "tracks": { - "85": { - "Name": "Cochise" - }, - "86": { - "Name": "Show Me How to Live" - }, - "87": { - "Name": "Gasoline" - }, - "88": { - "Name": "What You Are" - }, - "89": { - "Name": "Like a Stone" - }, - "90": { - "Name": "Set It Off" - }, - "91": { - "Name": "Shadow on the Sun" - }, - "92": { - "Name": "I am the Highway" - }, - "93": { - "Name": "Exploder" - }, - "94": { - "Name": "Hypnotize" - }, - "95": { - "Name": "Bring'em Back Alive" - }, - "96": { - "Name": "Light My Way" - }, - "97": { - "Name": "Getaway Car" - }, - "98": { - "Name": "The Last Remaining Light" - } - }, - "Title": "Audioslave" - }, - "11": { - "tracks": { - "99": { - "Name": "Your Time Has Come" - }, - "100": { - "Name": "Out Of Exile" - }, - "101": { - "Name": "Be Yourself" - }, - "102": { - "Name": "Doesn't Remind Me" - }, - "103": { - "Name": "Drown Me Slowly" - }, - "104": { - "Name": "Heaven's Dead" - }, - "105": { - "Name": "The Worm" - }, - "106": { - "Name": "Man Or Animal" - }, - "107": { - "Name": "Yesterday To Tomorrow" - }, - "108": { - "Name": "Dandelion" - }, - "109": { - "Name": "#1 Zero" - }, - "110": { - "Name": "The Curse" - } - }, - "Title": "Out Of Exile" - }, - "271": { - "tracks": { - "3389": { - "Name": "Revelations" - }, - "3390": { - "Name": "One and the Same" - }, - "3391": { - "Name": "Sound of a Gun" - }, - "3392": { - "Name": "Until We Fall" - }, - "3393": { - "Name": "Original Fire" - }, - "3394": { - "Name": "Broken City" - }, - "3395": { - "Name": "Somedays" - }, - "3396": { - "Name": "Shape of Things to Come" - }, - "3397": { - "Name": "Jewel of the Summertime" - }, - "3398": { - "Name": "Wide Awake" - }, - "3399": { - "Name": "Nothing Left to Say But Goodbye" - }, - "3400": { - "Name": "Moth" - }, - "3401": { - "Name": "Show Me How to Live (Live at the Quart Festival)" - }, - "3402": { - "Name": "Band Members Discuss Tracks from \"Revelations\"" - } - }, - "Title": "Revelations" - } - }, - "Name": "Audioslave" - } - }, - "11": { - "tracks": { - "99": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Your Time Has Come" - }, - "100": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Out Of Exile" - }, - "101": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Be Yourself" - }, - "102": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Doesn't Remind Me" - }, - "103": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Drown Me Slowly" - }, - "104": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Heaven's Dead" - }, - "105": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "The Worm" - }, - "106": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Man Or Animal" - }, - "107": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Yesterday To Tomorrow" - }, - "108": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "Dandelion" - }, - "109": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "#1 Zero" - }, - "110": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "Name": "The Curse" - } - }, - "Title": "Out Of Exile", - "artist": { - "ArtistId": 8, - "albums": { - "10": { - "tracks": { - "85": { - "Name": "Cochise" - }, - "86": { - "Name": "Show Me How to Live" - }, - "87": { - "Name": "Gasoline" - }, - "88": { - "Name": "What You Are" - }, - "89": { - "Name": "Like a Stone" - }, - "90": { - "Name": "Set It Off" - }, - "91": { - "Name": "Shadow on the Sun" - }, - "92": { - "Name": "I am the Highway" - }, - "93": { - "Name": "Exploder" - }, - "94": { - "Name": "Hypnotize" - }, - "95": { - "Name": "Bring'em Back Alive" - }, - "96": { - "Name": "Light My Way" - }, - "97": { - "Name": "Getaway Car" - }, - "98": { - "Name": "The Last Remaining Light" - } - }, - "Title": "Audioslave" - }, - "11": { - "tracks": { - "99": { - "Name": "Your Time Has Come" - }, - "100": { - "Name": "Out Of Exile" - }, - "101": { - "Name": "Be Yourself" - }, - "102": { - "Name": "Doesn't Remind Me" - }, - "103": { - "Name": "Drown Me Slowly" - }, - "104": { - "Name": "Heaven's Dead" - }, - "105": { - "Name": "The Worm" - }, - "106": { - "Name": "Man Or Animal" - }, - "107": { - "Name": "Yesterday To Tomorrow" - }, - "108": { - "Name": "Dandelion" - }, - "109": { - "Name": "#1 Zero" - }, - "110": { - "Name": "The Curse" - } - }, - "Title": "Out Of Exile" - }, - "271": { - "tracks": { - "3389": { - "Name": "Revelations" - }, - "3390": { - "Name": "One and the Same" - }, - "3391": { - "Name": "Sound of a Gun" - }, - "3392": { - "Name": "Until We Fall" - }, - "3393": { - "Name": "Original Fire" - }, - "3394": { - "Name": "Broken City" - }, - "3395": { - "Name": "Somedays" - }, - "3396": { - "Name": "Shape of Things to Come" - }, - "3397": { - "Name": "Jewel of the Summertime" - }, - "3398": { - "Name": "Wide Awake" - }, - "3399": { - "Name": "Nothing Left to Say But Goodbye" - }, - "3400": { - "Name": "Moth" - }, - "3401": { - "Name": "Show Me How to Live (Live at the Quart Festival)" - }, - "3402": { - "Name": "Band Members Discuss Tracks from \"Revelations\"" - } - }, - "Title": "Revelations" - } - }, - "Name": "Audioslave" - } - }, - "12": { - "tracks": { - "111": { - "Composer": "Berry Gordy, Jr./Janie Bradford", - "Name": "Money" - }, - "112": { - "Composer": "Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell", - "Name": "Long Tall Sally" - }, - "113": { - "Composer": "Larry Williams", - "Name": "Bad Boy" - }, - "114": { - "Composer": "Bert Russell/Phil Medley", - "Name": "Twist And Shout" - }, - "115": { - "Composer": "Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett", - "Name": "Please Mr. Postman" - }, - "116": { - "Composer": "Eddie Cochran/Jerry Capehart", - "Name": "C'Mon Everybody" - }, - "117": { - "Composer": "Chuck Berry", - "Name": "Rock 'N' Roll Music" - }, - "118": { - "Composer": "Larry Williams", - "Name": "Slow Down" - }, - "119": { - "Composer": "Bo Diddley", - "Name": "Roadrunner" - }, - "120": { - "Composer": "Chuck Berry", - "Name": "Carol" - }, - "121": { - "Composer": "Little Richard", - "Name": "Good Golly Miss Molly" - }, - "122": { - "Composer": "Ned Fairchild", - "Name": "20 Flight Rock" - } - }, - "Title": "BackBeat Soundtrack", - "artist": { - "ArtistId": 9, - "albums": { - "12": { - "tracks": { - "111": { - "Name": "Money" - }, - "112": { - "Name": "Long Tall Sally" - }, - "113": { - "Name": "Bad Boy" - }, - "114": { - "Name": "Twist And Shout" - }, - "115": { - "Name": "Please Mr. Postman" - }, - "116": { - "Name": "C'Mon Everybody" - }, - "117": { - "Name": "Rock 'N' Roll Music" - }, - "118": { - "Name": "Slow Down" - }, - "119": { - "Name": "Roadrunner" - }, - "120": { - "Name": "Carol" - }, - "121": { - "Name": "Good Golly Miss Molly" - }, - "122": { - "Name": "20 Flight Rock" - } - }, - "Title": "BackBeat Soundtrack" - } - }, - "Name": "BackBeat" - } - }, - "13": { - "tracks": { - "123": { - "Composer": "Billy Cobham", - "Name": "Quadrant" - }, - "124": { - "Composer": "Billy Cobham", - "Name": "Snoopy's search-Red baron" - }, - "125": { - "Composer": "Billy Cobham", - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss" - }, - "126": { - "Composer": "Billy Cobham", - "Name": "Moon germs" - }, - "127": { - "Composer": "Billy Cobham", - "Name": "Stratus" - }, - "128": { - "Composer": "Billy Cobham", - "Name": "The pleasant pheasant" - }, - "129": { - "Composer": "Billy Cobham", - "Name": "Solo-Panhandler" - }, - "130": { - "Composer": "George Duke", - "Name": "Do what cha wanna" - } - }, - "Title": "The Best Of Billy Cobham", - "artist": { - "ArtistId": 10, - "albums": { - "13": { - "tracks": { - "123": { - "Name": "Quadrant" - }, - "124": { - "Name": "Snoopy's search-Red baron" - }, - "125": { - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss" - }, - "126": { - "Name": "Moon germs" - }, - "127": { - "Name": "Stratus" - }, - "128": { - "Name": "The pleasant pheasant" - }, - "129": { - "Name": "Solo-Panhandler" - }, - "130": { - "Name": "Do what cha wanna" - } - }, - "Title": "The Best Of Billy Cobham" - } - }, - "Name": "Billy Cobham" - } - }, - "14": { - "tracks": { - "131": { - "Composer": null, - "Name": "Intro/ Low Down" - }, - "132": { - "Composer": null, - "Name": "13 Years Of Grief" - }, - "133": { - "Composer": null, - "Name": "Stronger Than Death" - }, - "134": { - "Composer": null, - "Name": "All For You" - }, - "135": { - "Composer": null, - "Name": "Super Terrorizer" - }, - "136": { - "Composer": null, - "Name": "Phoney Smile Fake Hellos" - }, - "137": { - "Composer": null, - "Name": "Lost My Better Half" - }, - "138": { - "Composer": null, - "Name": "Bored To Tears" - }, - "139": { - "Composer": null, - "Name": "A.N.D.R.O.T.A.Z." - }, - "140": { - "Composer": null, - "Name": "Born To Booze" - }, - "141": { - "Composer": null, - "Name": "World Of Trouble" - }, - "142": { - "Composer": null, - "Name": "No More Tears" - }, - "143": { - "Composer": null, - "Name": "The Begining... At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]", - "artist": { - "ArtistId": 11, - "albums": { - "14": { - "tracks": { - "131": { - "Name": "Intro/ Low Down" - }, - "132": { - "Name": "13 Years Of Grief" - }, - "133": { - "Name": "Stronger Than Death" - }, - "134": { - "Name": "All For You" - }, - "135": { - "Name": "Super Terrorizer" - }, - "136": { - "Name": "Phoney Smile Fake Hellos" - }, - "137": { - "Name": "Lost My Better Half" - }, - "138": { - "Name": "Bored To Tears" - }, - "139": { - "Name": "A.N.D.R.O.T.A.Z." - }, - "140": { - "Name": "Born To Booze" - }, - "141": { - "Name": "World Of Trouble" - }, - "142": { - "Name": "No More Tears" - }, - "143": { - "Name": "The Begining... At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "15": { - "tracks": { - "144": { - "Name": "Heart Of Gold" - }, - "145": { - "Name": "Snowblind" - }, - "146": { - "Name": "Like A Bird" - }, - "147": { - "Name": "Blood In The Wall" - }, - "148": { - "Name": "The Beginning...At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - } - }, - "Name": "Black Label Society" - } - }, - "15": { - "tracks": { - "144": { - "Composer": null, - "Name": "Heart Of Gold" - }, - "145": { - "Composer": null, - "Name": "Snowblind" - }, - "146": { - "Composer": null, - "Name": "Like A Bird" - }, - "147": { - "Composer": null, - "Name": "Blood In The Wall" - }, - "148": { - "Composer": null, - "Name": "The Beginning...At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]", - "artist": { - "ArtistId": 11, - "albums": { - "14": { - "tracks": { - "131": { - "Name": "Intro/ Low Down" - }, - "132": { - "Name": "13 Years Of Grief" - }, - "133": { - "Name": "Stronger Than Death" - }, - "134": { - "Name": "All For You" - }, - "135": { - "Name": "Super Terrorizer" - }, - "136": { - "Name": "Phoney Smile Fake Hellos" - }, - "137": { - "Name": "Lost My Better Half" - }, - "138": { - "Name": "Bored To Tears" - }, - "139": { - "Name": "A.N.D.R.O.T.A.Z." - }, - "140": { - "Name": "Born To Booze" - }, - "141": { - "Name": "World Of Trouble" - }, - "142": { - "Name": "No More Tears" - }, - "143": { - "Name": "The Begining... At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "15": { - "tracks": { - "144": { - "Name": "Heart Of Gold" - }, - "145": { - "Name": "Snowblind" - }, - "146": { - "Name": "Like A Bird" - }, - "147": { - "Name": "Blood In The Wall" - }, - "148": { - "Name": "The Beginning...At Last" - } - }, - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - } - }, - "Name": "Black Label Society" - } - }, - "16": { - "tracks": { - "149": { - "Composer": null, - "Name": "Black Sabbath" - }, - "150": { - "Composer": null, - "Name": "The Wizard" - }, - "151": { - "Composer": null, - "Name": "Behind The Wall Of Sleep" - }, - "152": { - "Composer": null, - "Name": "N.I.B." - }, - "153": { - "Composer": null, - "Name": "Evil Woman" - }, - "154": { - "Composer": null, - "Name": "Sleeping Village" - }, - "155": { - "Composer": null, - "Name": "Warning" - } - }, - "Title": "Black Sabbath", - "artist": { - "ArtistId": 12, - "albums": { - "16": { - "tracks": { - "149": { - "Name": "Black Sabbath" - }, - "150": { - "Name": "The Wizard" - }, - "151": { - "Name": "Behind The Wall Of Sleep" - }, - "152": { - "Name": "N.I.B." - }, - "153": { - "Name": "Evil Woman" - }, - "154": { - "Name": "Sleeping Village" - }, - "155": { - "Name": "Warning" - } - }, - "Title": "Black Sabbath" - }, - "17": { - "tracks": { - "156": { - "Name": "Wheels Of Confusion / The Straightener" - }, - "157": { - "Name": "Tomorrow's Dream" - }, - "158": { - "Name": "Changes" - }, - "159": { - "Name": "FX" - }, - "160": { - "Name": "Supernaut" - }, - "161": { - "Name": "Snowblind" - }, - "162": { - "Name": "Cornucopia" - }, - "163": { - "Name": "Laguna Sunrise" - }, - "164": { - "Name": "St. Vitus Dance" - }, - "165": { - "Name": "Under The Sun/Every Day Comes and Goes" - } - }, - "Title": "Black Sabbath Vol. 4 (Remaster)" - } - }, - "Name": "Black Sabbath" - } - }, - "17": { - "tracks": { - "156": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Wheels Of Confusion / The Straightener" - }, - "157": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Tomorrow's Dream" - }, - "158": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Changes" - }, - "159": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "FX" - }, - "160": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Supernaut" - }, - "161": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Snowblind" - }, - "162": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Cornucopia" - }, - "163": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Laguna Sunrise" - }, - "164": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "St. Vitus Dance" - }, - "165": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "Under The Sun/Every Day Comes and Goes" - } - }, - "Title": "Black Sabbath Vol. 4 (Remaster)", - "artist": { - "ArtistId": 12, - "albums": { - "16": { - "tracks": { - "149": { - "Name": "Black Sabbath" - }, - "150": { - "Name": "The Wizard" - }, - "151": { - "Name": "Behind The Wall Of Sleep" - }, - "152": { - "Name": "N.I.B." - }, - "153": { - "Name": "Evil Woman" - }, - "154": { - "Name": "Sleeping Village" - }, - "155": { - "Name": "Warning" - } - }, - "Title": "Black Sabbath" - }, - "17": { - "tracks": { - "156": { - "Name": "Wheels Of Confusion / The Straightener" - }, - "157": { - "Name": "Tomorrow's Dream" - }, - "158": { - "Name": "Changes" - }, - "159": { - "Name": "FX" - }, - "160": { - "Name": "Supernaut" - }, - "161": { - "Name": "Snowblind" - }, - "162": { - "Name": "Cornucopia" - }, - "163": { - "Name": "Laguna Sunrise" - }, - "164": { - "Name": "St. Vitus Dance" - }, - "165": { - "Name": "Under The Sun/Every Day Comes and Goes" - } - }, - "Title": "Black Sabbath Vol. 4 (Remaster)" - } - }, - "Name": "Black Sabbath" - } - }, - "18": { - "tracks": { - "166": { - "Composer": null, - "Name": "Smoked Pork" - }, - "167": { - "Composer": null, - "Name": "Body Count's In The House" - }, - "168": { - "Composer": null, - "Name": "Now Sports" - }, - "169": { - "Composer": null, - "Name": "Body Count" - }, - "170": { - "Composer": null, - "Name": "A Statistic" - }, - "171": { - "Composer": null, - "Name": "Bowels Of The Devil" - }, - "172": { - "Composer": null, - "Name": "The Real Problem" - }, - "173": { - "Composer": null, - "Name": "KKK Bitch" - }, - "174": { - "Composer": null, - "Name": "D Note" - }, - "175": { - "Composer": null, - "Name": "Voodoo" - }, - "176": { - "Composer": null, - "Name": "The Winner Loses" - }, - "177": { - "Composer": null, - "Name": "There Goes The Neighborhood" - }, - "178": { - "Composer": null, - "Name": "Oprah" - }, - "179": { - "Composer": null, - "Name": "Evil Dick" - }, - "180": { - "Composer": null, - "Name": "Body Count Anthem" - }, - "181": { - "Composer": null, - "Name": "Momma's Gotta Die Tonight" - }, - "182": { - "Composer": null, - "Name": "Freedom Of Speech" - } - }, - "Title": "Body Count", - "artist": { - "ArtistId": 13, - "albums": { - "18": { - "tracks": { - "166": { - "Name": "Smoked Pork" - }, - "167": { - "Name": "Body Count's In The House" - }, - "168": { - "Name": "Now Sports" - }, - "169": { - "Name": "Body Count" - }, - "170": { - "Name": "A Statistic" - }, - "171": { - "Name": "Bowels Of The Devil" - }, - "172": { - "Name": "The Real Problem" - }, - "173": { - "Name": "KKK Bitch" - }, - "174": { - "Name": "D Note" - }, - "175": { - "Name": "Voodoo" - }, - "176": { - "Name": "The Winner Loses" - }, - "177": { - "Name": "There Goes The Neighborhood" - }, - "178": { - "Name": "Oprah" - }, - "179": { - "Name": "Evil Dick" - }, - "180": { - "Name": "Body Count Anthem" - }, - "181": { - "Name": "Momma's Gotta Die Tonight" - }, - "182": { - "Name": "Freedom Of Speech" - } - }, - "Title": "Body Count" - } - }, - "Name": "Body Count" - } - }, - "19": { - "tracks": { - "183": { - "Composer": "Roy Z", - "Name": "King In Crimson" - }, - "184": { - "Composer": "Roy Z", - "Name": "Chemical Wedding" - }, - "185": { - "Composer": "Roy Z", - "Name": "The Tower" - }, - "186": { - "Composer": "Adrian Smith", - "Name": "Killing Floor" - }, - "187": { - "Composer": "Eddie Casillas/Roy Z", - "Name": "Book Of Thel" - }, - "188": { - "Composer": "Roy Z", - "Name": "Gates Of Urizen" - }, - "189": { - "Composer": "Roy Z", - "Name": "Jerusalem" - }, - "190": { - "Composer": "Roy Z", - "Name": "Trupets Of Jericho" - }, - "191": { - "Composer": "Adrian Smith", - "Name": "Machine Men" - }, - "192": { - "Composer": "Roy Z", - "Name": "The Alchemist" - }, - "193": { - "Composer": "Roy Z", - "Name": "Realword" - } - }, - "Title": "Chemical Wedding", - "artist": { - "ArtistId": 14, - "albums": { - "19": { - "tracks": { - "183": { - "Name": "King In Crimson" - }, - "184": { - "Name": "Chemical Wedding" - }, - "185": { - "Name": "The Tower" - }, - "186": { - "Name": "Killing Floor" - }, - "187": { - "Name": "Book Of Thel" - }, - "188": { - "Name": "Gates Of Urizen" - }, - "189": { - "Name": "Jerusalem" - }, - "190": { - "Name": "Trupets Of Jericho" - }, - "191": { - "Name": "Machine Men" - }, - "192": { - "Name": "The Alchemist" - }, - "193": { - "Name": "Realword" - } - }, - "Title": "Chemical Wedding" - } - }, - "Name": "Bruce Dickinson" - } - }, - "20": { - "tracks": { - "194": { - "Composer": "Eurreal Montgomery", - "Name": "First Time I Met The Blues" - }, - "195": { - "Composer": "Willie Dixon", - "Name": "Let Me Love You Baby" - }, - "196": { - "Composer": "Buddy Guy", - "Name": "Stone Crazy" - }, - "197": { - "Composer": "Willie Dixon", - "Name": "Pretty Baby" - }, - "198": { - "Composer": "Al Perkins/Willie Dixon", - "Name": "When My Left Eye Jumps" - }, - "199": { - "Composer": "Buddy Guy", - "Name": "Leave My Girl Alone" - }, - "200": { - "Composer": "Buddy Guy", - "Name": "She Suits Me To A Tee" - }, - "201": { - "Composer": "Sonny Boy Williamson [I]", - "Name": "Keep It To Myself (Aka Keep It To Yourself)" - }, - "202": { - "Composer": "Robert Geddins/Ron Badger/Sheldon Feinberg", - "Name": "My Time After Awhile" - }, - "203": { - "Composer": "Willie Dixon", - "Name": "Too Many Ways (Alternate)" - }, - "204": { - "Composer": "Amos Blakemore/Buddy Guy", - "Name": "Talkin' 'Bout Women Obviously" - } - }, - "Title": "The Best Of Buddy Guy - The Millenium Collection", - "artist": { - "ArtistId": 15, - "albums": { - "20": { - "tracks": { - "194": { - "Name": "First Time I Met The Blues" - }, - "195": { - "Name": "Let Me Love You Baby" - }, - "196": { - "Name": "Stone Crazy" - }, - "197": { - "Name": "Pretty Baby" - }, - "198": { - "Name": "When My Left Eye Jumps" - }, - "199": { - "Name": "Leave My Girl Alone" - }, - "200": { - "Name": "She Suits Me To A Tee" - }, - "201": { - "Name": "Keep It To Myself (Aka Keep It To Yourself)" - }, - "202": { - "Name": "My Time After Awhile" - }, - "203": { - "Name": "Too Many Ways (Alternate)" - }, - "204": { - "Name": "Talkin' 'Bout Women Obviously" - } - }, - "Title": "The Best Of Buddy Guy - The Millenium Collection" - } - }, - "Name": "Buddy Guy" - } - }, - "21": { - "tracks": { - "206": { - "Composer": "Tradicional", - "Name": "Prenda Minha" - }, - "208": { - "Composer": "Caetano Veloso", - "Name": "Terra" - }, - "209": { - "Composer": "Caetano Veloso", - "Name": "Eclipse Oculto" - }, - "210": { - "Composer": "Caetano Veloso", - "Name": "Texto \"Verdade Tropical\"" - }, - "211": { - "Composer": "Gilberto Gil", - "Name": "Bem Devagar" - }, - "213": { - "Composer": "Caetano Veloso", - "Name": "Saudosismo" - }, - "214": { - "Composer": "Chico Buarque", - "Name": "Carolina" - }, - "215": { - "Composer": "Peninha", - "Name": "Sozinho" - }, - "216": { - "Composer": "Caetano Veloso", - "Name": "Esse Cara" - }, - "218": { - "Composer": "Caetano Veloso - Djavan", - "Name": "Linha Do Equador" - }, - "219": { - "Composer": "Caetano Veloso", - "Name": "Odara" - }, - "220": { - "Composer": "Caetano Veloso", - "Name": "A Luz De Tieta" - }, - "222": { - "Composer": "Fausto Nilo - Armandinho", - "Name": "Vida Boa" - } - }, - "Title": "Prenda Minha", - "artist": { - "ArtistId": 16, - "albums": { - "21": { - "tracks": { - "206": { - "Name": "Prenda Minha" - }, - "208": { - "Name": "Terra" - }, - "209": { - "Name": "Eclipse Oculto" - }, - "210": { - "Name": "Texto \"Verdade Tropical\"" - }, - "211": { - "Name": "Bem Devagar" - }, - "213": { - "Name": "Saudosismo" - }, - "214": { - "Name": "Carolina" - }, - "215": { - "Name": "Sozinho" - }, - "216": { - "Name": "Esse Cara" - }, - "218": { - "Name": "Linha Do Equador" - }, - "219": { - "Name": "Odara" - }, - "220": { - "Name": "A Luz De Tieta" - }, - "222": { - "Name": "Vida Boa" - } - }, - "Title": "Prenda Minha" - }, - "22": { - "tracks": { - "223": { - "Name": "Sozinho (Hitmakers Classic Mix)" - }, - "224": { - "Name": "Sozinho (Hitmakers Classic Radio Edit)" - } - }, - "Title": "Sozinho Remix Ao Vivo" - } - }, - "Name": "Caetano Veloso" - } - }, - "22": { - "tracks": { - "223": { - "Composer": null, - "Name": "Sozinho (Hitmakers Classic Mix)" - }, - "224": { - "Composer": null, - "Name": "Sozinho (Hitmakers Classic Radio Edit)" - } - }, - "Title": "Sozinho Remix Ao Vivo", - "artist": { - "ArtistId": 16, - "albums": { - "21": { - "tracks": { - "206": { - "Name": "Prenda Minha" - }, - "208": { - "Name": "Terra" - }, - "209": { - "Name": "Eclipse Oculto" - }, - "210": { - "Name": "Texto \"Verdade Tropical\"" - }, - "211": { - "Name": "Bem Devagar" - }, - "213": { - "Name": "Saudosismo" - }, - "214": { - "Name": "Carolina" - }, - "215": { - "Name": "Sozinho" - }, - "216": { - "Name": "Esse Cara" - }, - "218": { - "Name": "Linha Do Equador" - }, - "219": { - "Name": "Odara" - }, - "220": { - "Name": "A Luz De Tieta" - }, - "222": { - "Name": "Vida Boa" - } - }, - "Title": "Prenda Minha" - }, - "22": { - "tracks": { - "223": { - "Name": "Sozinho (Hitmakers Classic Mix)" - }, - "224": { - "Name": "Sozinho (Hitmakers Classic Radio Edit)" - } - }, - "Title": "Sozinho Remix Ao Vivo" - } - }, - "Name": "Caetano Veloso" - } - }, - "23": { - "tracks": { - "226": { - "Composer": null, - "Name": "Carolina" - }, - "228": { - "Composer": null, - "Name": "Vai Passar" - }, - "229": { - "Composer": null, - "Name": "Samba De Orly" - }, - "230": { - "Composer": null, - "Name": "Bye, Bye Brasil" - }, - "231": { - "Composer": null, - "Name": "Atras Da Porta" - }, - "232": { - "Composer": null, - "Name": "Tatuagem" - }, - "234": { - "Composer": null, - "Name": "Morena De Angola" - }, - "236": { - "Composer": null, - "Name": "A Banda" - }, - "237": { - "Composer": null, - "Name": "Minha Historia" - }, - "239": { - "Composer": null, - "Name": "Brejo Da Cruz" - }, - "240": { - "Composer": null, - "Name": "Meu Caro Amigo" - }, - "241": { - "Composer": null, - "Name": "Geni E O Zepelim" - }, - "243": { - "Composer": null, - "Name": "Vai Trabalhar Vagabundo" - }, - "515": { - "Composer": null, - "Name": "Meia-Lua Inteira" - }, - "516": { - "Composer": null, - "Name": "Voce e Linda" - }, - "517": { - "Composer": null, - "Name": "Um Indio" - }, - "518": { - "Composer": null, - "Name": "Podres Poderes" - }, - "519": { - "Composer": null, - "Name": "Voce Nao Entende Nada - Cotidiano" - }, - "520": { - "Composer": null, - "Name": "O Estrangeiro" - }, - "521": { - "Composer": null, - "Name": "Menino Do Rio" - }, - "522": { - "Composer": null, - "Name": "Qualquer Coisa" - }, - "523": { - "Composer": null, - "Name": "Sampa" - }, - "524": { - "Composer": null, - "Name": "Queixa" - }, - "525": { - "Composer": null, - "Name": "O Leaozinho" - }, - "526": { - "Composer": null, - "Name": "Fora Da Ordem" - }, - "527": { - "Composer": null, - "Name": "Terra" - }, - "528": { - "Composer": null, - "Name": "Alegria, Alegria" - } - }, - "Title": "Minha Historia", - "artist": { - "ArtistId": 17, - "albums": { - "23": { - "tracks": { - "226": { - "Name": "Carolina" - }, - "228": { - "Name": "Vai Passar" - }, - "229": { - "Name": "Samba De Orly" - }, - "230": { - "Name": "Bye, Bye Brasil" - }, - "231": { - "Name": "Atras Da Porta" - }, - "232": { - "Name": "Tatuagem" - }, - "234": { - "Name": "Morena De Angola" - }, - "236": { - "Name": "A Banda" - }, - "237": { - "Name": "Minha Historia" - }, - "239": { - "Name": "Brejo Da Cruz" - }, - "240": { - "Name": "Meu Caro Amigo" - }, - "241": { - "Name": "Geni E O Zepelim" - }, - "243": { - "Name": "Vai Trabalhar Vagabundo" - }, - "515": { - "Name": "Meia-Lua Inteira" - }, - "516": { - "Name": "Voce e Linda" - }, - "517": { - "Name": "Um Indio" - }, - "518": { - "Name": "Podres Poderes" - }, - "519": { - "Name": "Voce Nao Entende Nada - Cotidiano" - }, - "520": { - "Name": "O Estrangeiro" - }, - "521": { - "Name": "Menino Do Rio" - }, - "522": { - "Name": "Qualquer Coisa" - }, - "523": { - "Name": "Sampa" - }, - "524": { - "Name": "Queixa" - }, - "525": { - "Name": "O Leaozinho" - }, - "526": { - "Name": "Fora Da Ordem" - }, - "527": { - "Name": "Terra" - }, - "528": { - "Name": "Alegria, Alegria" - } - }, - "Title": "Minha Historia" - } - }, - "Name": "Chico Buarque" - } - }, - "27": { - "tracks": { - "301": { - "Composer": "Da Gama/Toni Garrido", - "Name": "A Sombra Da Maldade" - }, - "302": { - "Composer": "Da Gama/Lazao/Toni Garrido", - "Name": "A Estrada" - }, - "303": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "Name": "Falar A Verdade" - }, - "304": { - "Composer": "Harry Lawes/Winston Foster-Vers", - "Name": "Firmamento" - }, - "305": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "Name": "Pensamento" - }, - "306": { - "Composer": "Bino/Da Gamma/Lazao/Toni Garrido", - "Name": "Realidade Virtual" - }, - "307": { - "Composer": "Bino/Da Gama/Toni Garrido", - "Name": "Doutor" - }, - "308": { - "Composer": "Bino/Da Gama/Lazao/Ras Bernardo", - "Name": "Na Frente Da TV" - }, - "309": { - "Composer": "Cidade Negra", - "Name": "Downtown" - }, - "311": { - "Composer": "Bernardo Vilhena/Da Gama/Lazao", - "Name": "A Cor Do Sol" - } - }, - "Title": "Cidade Negra - Hits", - "artist": { - "ArtistId": 19, - "albums": { - "27": { - "tracks": { - "301": { - "Name": "A Sombra Da Maldade" - }, - "302": { - "Name": "A Estrada" - }, - "303": { - "Name": "Falar A Verdade" - }, - "304": { - "Name": "Firmamento" - }, - "305": { - "Name": "Pensamento" - }, - "306": { - "Name": "Realidade Virtual" - }, - "307": { - "Name": "Doutor" - }, - "308": { - "Name": "Na Frente Da TV" - }, - "309": { - "Name": "Downtown" - }, - "311": { - "Name": "A Cor Do Sol" - } - }, - "Title": "Cidade Negra - Hits" - } - }, - "Name": "Cidade Negra" - } - }, - "30": { - "tracks": { - "337": { - "Composer": "J B Lenoir/Willie Dixon", - "Name": "You Shook Me" - }, - "338": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby" - }, - "339": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown" - }, - "340": { - "Composer": "Jimmy Page", - "Name": "Dazed and Confused" - }, - "341": { - "Composer": "Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant", - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "What is and Should Never Be" - }, - "343": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown(2)" - }, - "344": { - "Composer": "Jimmy Page/Robert Johnson/Robert Plant", - "Name": "Travelling Riverside Blues" - }, - "345": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Name": "Whole Lotta Love" - }, - "346": { - "Composer": "Bob Cochran/Sharon Sheeley", - "Name": "Somethin' Else" - }, - "347": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown(3)" - }, - "348": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Composer": "J B Lenoir/Willie Dixon", - "Name": "You Shook Me(2)" - }, - "350": { - "Composer": "Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant", - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "31": { - "tracks": { - "351": { - "Composer": "Frank Zappa", - "Name": "Debra Kadabra" - }, - "352": { - "Composer": "Frank Zappa", - "Name": "Carolina Hard-Core Ecstasy" - }, - "353": { - "Composer": "Don Van Vliet", - "Name": "Sam With The Showing Scalp Flat Top" - }, - "354": { - "Composer": "Frank Zappa", - "Name": "Poofter's Froth Wyoming Plans Ahead" - }, - "355": { - "Composer": "Frank Zappa", - "Name": "200 Years Old" - }, - "356": { - "Composer": "Frank Zappa", - "Name": "Cucamonga" - }, - "357": { - "Composer": "Frank Zappa", - "Name": "Advance Romance" - }, - "358": { - "Composer": "Don Van Vliet", - "Name": "Man With The Woman Head" - }, - "359": { - "Composer": "Frank Zappa", - "Name": "Muffin Man" - } - }, - "Title": "Bongo Fury", - "artist": { - "ArtistId": 23, - "albums": { - "31": { - "tracks": { - "351": { - "Name": "Debra Kadabra" - }, - "352": { - "Name": "Carolina Hard-Core Ecstasy" - }, - "353": { - "Name": "Sam With The Showing Scalp Flat Top" - }, - "354": { - "Name": "Poofter's Froth Wyoming Plans Ahead" - }, - "355": { - "Name": "200 Years Old" - }, - "356": { - "Name": "Cucamonga" - }, - "357": { - "Name": "Advance Romance" - }, - "358": { - "Name": "Man With The Woman Head" - }, - "359": { - "Name": "Muffin Man" - } - }, - "Title": "Bongo Fury" - } - }, - "Name": "Frank Zappa & Captain Beefheart" - } - }, - "32": { - "tracks": { - "360": { - "Composer": null, - "Name": "Vai-Vai 2001" - }, - "361": { - "Composer": null, - "Name": "X-9 2001" - }, - "362": { - "Composer": null, - "Name": "Gavioes 2001" - }, - "363": { - "Composer": null, - "Name": "Nene 2001" - }, - "364": { - "Composer": null, - "Name": "Rosas De Ouro 2001" - }, - "365": { - "Composer": null, - "Name": "Mocidade Alegre 2001" - }, - "366": { - "Composer": null, - "Name": "Camisa Verde 2001" - }, - "367": { - "Composer": null, - "Name": "Leandro De Itaquera 2001" - }, - "368": { - "Composer": null, - "Name": "Tucuruvi 2001" - }, - "369": { - "Composer": null, - "Name": "Aguia De Ouro 2001" - }, - "370": { - "Composer": null, - "Name": "Ipiranga 2001" - }, - "371": { - "Composer": null, - "Name": "Morro Da Casa Verde 2001" - }, - "372": { - "Composer": null, - "Name": "Perola Negra 2001" - }, - "373": { - "Composer": null, - "Name": "Sao Lucas 2001" - } - }, - "Title": "Carnaval 2001", - "artist": { - "ArtistId": 21, - "albums": { - "32": { - "tracks": { - "360": { - "Name": "Vai-Vai 2001" - }, - "361": { - "Name": "X-9 2001" - }, - "362": { - "Name": "Gavioes 2001" - }, - "363": { - "Name": "Nene 2001" - }, - "364": { - "Name": "Rosas De Ouro 2001" - }, - "365": { - "Name": "Mocidade Alegre 2001" - }, - "366": { - "Name": "Camisa Verde 2001" - }, - "367": { - "Name": "Leandro De Itaquera 2001" - }, - "368": { - "Name": "Tucuruvi 2001" - }, - "369": { - "Name": "Aguia De Ouro 2001" - }, - "370": { - "Name": "Ipiranga 2001" - }, - "371": { - "Name": "Morro Da Casa Verde 2001" - }, - "372": { - "Name": "Perola Negra 2001" - }, - "373": { - "Name": "Sao Lucas 2001" - } - }, - "Title": "Carnaval 2001" - }, - "45": { - "tracks": { - "556": { - "Name": "Imperatriz" - }, - "557": { - "Name": "Beija-Flor" - }, - "558": { - "Name": "Viradouro" - }, - "559": { - "Name": "Mocidade" - }, - "560": { - "Name": "Unidos Da Tijuca" - }, - "561": { - "Name": "Salgueiro" - }, - "565": { - "Name": "Portela" - }, - "566": { - "Name": "Caprichosos" - }, - "569": { - "Name": "Tuiuti" - } - }, - "Title": "Sambas De Enredo 2001" - }, - "53": { - "tracks": { - "664": { - "Name": "Marina (Dorival Caymmi)" - }, - "665": { - "Name": "Aquarela (Toquinho)" - }, - "667": { - "Name": "Dona (Roupa Nova)" - }, - "670": { - "Name": "Romaria (Renato Teixeira)" - }, - "672": { - "Name": "Wave (Os Cariocas)" - }, - "673": { - "Name": "Garota de Ipanema (Dick Farney)" - } - }, - "Title": "Vozes do MPB" - } - }, - "Name": "Various Artists" - } - }, - "33": { - "tracks": { - "374": { - "Composer": "Marcos Valle", - "Name": "Guanabara" - }, - "375": { - "Composer": "Jorge Ben", - "Name": "Mas Que Nada" - }, - "377": { - "Composer": "Donato/Gilberto Gil", - "Name": "A Paz" - }, - "378": { - "Composer": "Antonio Carlos Jobim", - "Name": "Wave (Vou te Contar)" - }, - "381": { - "Composer": "Jorge Vercilo/Jota Maranhao", - "Name": "Pode Parar" - }, - "382": { - "Composer": "Caetano Veloso", - "Name": "Menino do Rio" - }, - "383": { - "Composer": "Caetano Veloso", - "Name": "Ando Meio Desligado" - }, - "385": { - "Composer": "Nando Reis", - "Name": "All Star" - }, - "386": { - "Composer": "Alexandre Brazil/Pedro Luis/Rodrigo Cabelo", - "Name": "Menina Bonita" - }, - "390": { - "Composer": "Alba Carvalho/Fernando Porto", - "Name": "Sambassim (dj patife remix)" - } - }, - "Title": "Chill: Brazil (Disc 1)", - "artist": { - "ArtistId": 24, - "albums": { - "33": { - "tracks": { - "374": { - "Name": "Guanabara" - }, - "375": { - "Name": "Mas Que Nada" - }, - "377": { - "Name": "A Paz" - }, - "378": { - "Name": "Wave (Vou te Contar)" - }, - "381": { - "Name": "Pode Parar" - }, - "382": { - "Name": "Menino do Rio" - }, - "383": { - "Name": "Ando Meio Desligado" - }, - "385": { - "Name": "All Star" - }, - "386": { - "Name": "Menina Bonita" - }, - "390": { - "Name": "Sambassim (dj patife remix)" - } - }, - "Title": "Chill: Brazil (Disc 1)" - } - }, - "Name": "Marcos Valle" - } - }, - "35": { - "tracks": { - "408": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Name": "Free Speech For The Dumb" - }, - "409": { - "Composer": "Harris/Tatler", - "Name": "It's Electric" - }, - "410": { - "Composer": "Black Sabbath", - "Name": "Sabbra Cadabra" - }, - "411": { - "Composer": "Seger", - "Name": "Turn The Page" - }, - "412": { - "Composer": "Danzig", - "Name": "Die Die My Darling" - }, - "413": { - "Composer": "Cave", - "Name": "Loverman" - }, - "414": { - "Composer": "Diamond/Shermann", - "Name": "Mercyful Fate" - }, - "415": { - "Composer": "A.Bouchard/J.Bouchard/S.Pearlman", - "Name": "Astronomy" - }, - "416": { - "Composer": "Traditional", - "Name": "Whiskey In The Jar" - }, - "417": { - "Composer": "Collins/Van Zandt", - "Name": "Tuesday's Gone" - }, - "418": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "36": { - "tracks": { - "419": { - "Composer": "Roger Taylor", - "Name": "A Kind Of Magic" - }, - "420": { - "Composer": "Queen & David Bowie", - "Name": "Under Pressure" - }, - "421": { - "Composer": "Roger Taylor", - "Name": "Radio GA GA" - }, - "422": { - "Composer": "Queen", - "Name": "I Want It All" - }, - "423": { - "Composer": "John Deacon", - "Name": "I Want To Break Free" - }, - "424": { - "Composer": "Queen", - "Name": "Innuendo" - }, - "425": { - "Composer": "Freddie Mercury", - "Name": "It's A Hard Life" - }, - "426": { - "Composer": "Queen", - "Name": "Breakthru" - }, - "427": { - "Composer": "Brian May", - "Name": "Who Wants To Live Forever" - }, - "428": { - "Composer": "Queen", - "Name": "Headlong" - }, - "429": { - "Composer": "Queen", - "Name": "The Miracle" - }, - "430": { - "Composer": "Queen", - "Name": "I'm Going Slightly Mad" - }, - "431": { - "Composer": "Queen", - "Name": "The Invisible Man" - }, - "432": { - "Composer": "Brian May", - "Name": "Hammer To Fall" - }, - "433": { - "Composer": "Freddie Mercury & John Deacon", - "Name": "Friends Will Be Friends" - }, - "434": { - "Composer": "Queen", - "Name": "The Show Must Go On" - }, - "435": { - "Composer": "Queen", - "Name": "One Vision" - } - }, - "Title": "Greatest Hits II", - "artist": { - "ArtistId": 51, - "albums": { - "36": { - "tracks": { - "419": { - "Name": "A Kind Of Magic" - }, - "420": { - "Name": "Under Pressure" - }, - "421": { - "Name": "Radio GA GA" - }, - "422": { - "Name": "I Want It All" - }, - "423": { - "Name": "I Want To Break Free" - }, - "424": { - "Name": "Innuendo" - }, - "425": { - "Name": "It's A Hard Life" - }, - "426": { - "Name": "Breakthru" - }, - "427": { - "Name": "Who Wants To Live Forever" - }, - "428": { - "Name": "Headlong" - }, - "429": { - "Name": "The Miracle" - }, - "430": { - "Name": "I'm Going Slightly Mad" - }, - "431": { - "Name": "The Invisible Man" - }, - "432": { - "Name": "Hammer To Fall" - }, - "433": { - "Name": "Friends Will Be Friends" - }, - "434": { - "Name": "The Show Must Go On" - }, - "435": { - "Name": "One Vision" - } - }, - "Title": "Greatest Hits II" - }, - "185": { - "tracks": { - "2254": { - "Name": "Bohemian Rhapsody" - }, - "2255": { - "Name": "Another One Bites The Dust" - }, - "2256": { - "Name": "Killer Queen" - }, - "2257": { - "Name": "Fat Bottomed Girls" - }, - "2258": { - "Name": "Bicycle Race" - }, - "2259": { - "Name": "You're My Best Friend" - }, - "2260": { - "Name": "Don't Stop Me Now" - }, - "2261": { - "Name": "Save Me" - }, - "2262": { - "Name": "Crazy Little Thing Called Love" - }, - "2263": { - "Name": "Somebody To Love" - }, - "2264": { - "Name": "Now I'm Here" - }, - "2265": { - "Name": "Good Old-Fashioned Lover Boy" - }, - "2266": { - "Name": "Play The Game" - }, - "2267": { - "Name": "Flash" - }, - "2268": { - "Name": "Seven Seas Of Rhye" - }, - "2269": { - "Name": "We Will Rock You" - }, - "2270": { - "Name": "We Are The Champions" - } - }, - "Title": "Greatest Hits I" - }, - "186": { - "tracks": { - "2271": { - "Name": "We Will Rock You" - }, - "2272": { - "Name": "We Are The Champions" - }, - "2273": { - "Name": "Sheer Heart Attack" - }, - "2274": { - "Name": "All Dead, All Dead" - }, - "2275": { - "Name": "Spread Your Wings" - }, - "2276": { - "Name": "Fight From The Inside" - }, - "2277": { - "Name": "Get Down, Make Love" - }, - "2278": { - "Name": "Sleep On The Sidewalk" - }, - "2279": { - "Name": "Who Needs You" - }, - "2280": { - "Name": "It's Late" - }, - "2281": { - "Name": "My Melancholy Blues" - } - }, - "Title": "News Of The World" - } - }, - "Name": "Queen" - } - }, - "37": { - "tracks": { - "436": { - "Composer": "Paul Stanley, B. Ezrin", - "Name": "Detroit Rock City" - }, - "437": { - "Composer": "Paul Stanley", - "Name": "Black Diamond" - }, - "438": { - "Composer": "Paul Stanley", - "Name": "Hard Luck Woman" - }, - "439": { - "Composer": "Paul Stanley, Vincent Poncia", - "Name": "Sure Know Something" - }, - "440": { - "Composer": "Paul Stanley", - "Name": "Love Gun" - }, - "441": { - "Composer": "Gene Simmons", - "Name": "Deuce" - }, - "442": { - "Composer": "Gene Simmons, S. Coronel", - "Name": "Goin' Blind" - }, - "443": { - "Composer": "Ace Frehley", - "Name": "Shock Me" - }, - "444": { - "Composer": "Paul Stanley, B. Ezrin, K. Fowley", - "Name": "Do You Love Me" - }, - "445": { - "Composer": "Gene Simmons, S. Coronel", - "Name": "She" - }, - "446": { - "Composer": "Paul Stanley, Vincent Poncia, Desmond Child", - "Name": "I Was Made For Loving You" - }, - "447": { - "Composer": "Paul Stanley, Gene Simmons, B. Ezrin", - "Name": "Shout It Out Loud" - }, - "448": { - "Composer": "Paul Stanley", - "Name": "God Of Thunder" - }, - "449": { - "Composer": "Gene Simmons", - "Name": "Calling Dr. Love" - }, - "450": { - "Composer": "S. Penridge, Bob Ezrin, Peter Criss", - "Name": "Beth" - }, - "451": { - "Composer": "Paul Stanley, Gene Simmons", - "Name": "Strutter" - }, - "452": { - "Composer": "Paul Stanley, Gene Simmons", - "Name": "Rock And Roll All Nite" - }, - "453": { - "Composer": "Ace Frehley", - "Name": "Cold Gin" - }, - "454": { - "Composer": "Gene Simmons", - "Name": "Plaster Caster" - }, - "455": { - "Composer": "Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin", - "Name": "God Gave Rock 'n' Roll To You" - } - }, - "Title": "Greatest Kiss", - "artist": { - "ArtistId": 52, - "albums": { - "37": { - "tracks": { - "436": { - "Name": "Detroit Rock City" - }, - "437": { - "Name": "Black Diamond" - }, - "438": { - "Name": "Hard Luck Woman" - }, - "439": { - "Name": "Sure Know Something" - }, - "440": { - "Name": "Love Gun" - }, - "441": { - "Name": "Deuce" - }, - "442": { - "Name": "Goin' Blind" - }, - "443": { - "Name": "Shock Me" - }, - "444": { - "Name": "Do You Love Me" - }, - "445": { - "Name": "She" - }, - "446": { - "Name": "I Was Made For Loving You" - }, - "447": { - "Name": "Shout It Out Loud" - }, - "448": { - "Name": "God Of Thunder" - }, - "449": { - "Name": "Calling Dr. Love" - }, - "450": { - "Name": "Beth" - }, - "451": { - "Name": "Strutter" - }, - "452": { - "Name": "Rock And Roll All Nite" - }, - "453": { - "Name": "Cold Gin" - }, - "454": { - "Name": "Plaster Caster" - }, - "455": { - "Name": "God Gave Rock 'n' Roll To You" - } - }, - "Title": "Greatest Kiss" - }, - "126": { - "tracks": { - "1562": { - "Name": "Comin' Home" - }, - "1563": { - "Name": "Plaster Caster" - }, - "1564": { - "Name": "Goin' Blind" - }, - "1565": { - "Name": "Do You Love Me" - }, - "1566": { - "Name": "Domino" - }, - "1567": { - "Name": "Sure Know Something" - }, - "1568": { - "Name": "A World Without Heroes" - }, - "1569": { - "Name": "Rock Bottom" - }, - "1570": { - "Name": "See You Tonight" - }, - "1571": { - "Name": "I Still Love You" - }, - "1572": { - "Name": "Every Time I Look At You" - }, - "1573": { - "Name": "2,000 Man" - }, - "1574": { - "Name": "Beth" - }, - "1575": { - "Name": "Nothin' To Lose" - }, - "1576": { - "Name": "Rock And Roll All Nite" - } - }, - "Title": "Unplugged [Live]" - } - }, - "Name": "Kiss" - } - }, - "38": { - "tracks": { - "456": { - "Composer": null, - "Name": "Heart of the Night" - }, - "457": { - "Composer": null, - "Name": "De La Luz" - }, - "458": { - "Composer": null, - "Name": "Westwood Moon" - }, - "459": { - "Composer": null, - "Name": "Midnight" - }, - "460": { - "Composer": null, - "Name": "Playtime" - }, - "461": { - "Composer": null, - "Name": "Surrender" - }, - "462": { - "Composer": null, - "Name": "Valentino's" - }, - "463": { - "Composer": null, - "Name": "Believe" - }, - "464": { - "Composer": null, - "Name": "As We Sleep" - }, - "465": { - "Composer": null, - "Name": "When Evening Falls" - }, - "466": { - "Composer": null, - "Name": "J Squared" - }, - "467": { - "Composer": null, - "Name": "Best Thing" - } - }, - "Title": "Heart of the Night", - "artist": { - "ArtistId": 53, - "albums": { - "38": { - "tracks": { - "456": { - "Name": "Heart of the Night" - }, - "457": { - "Name": "De La Luz" - }, - "458": { - "Name": "Westwood Moon" - }, - "459": { - "Name": "Midnight" - }, - "460": { - "Name": "Playtime" - }, - "461": { - "Name": "Surrender" - }, - "462": { - "Name": "Valentino's" - }, - "463": { - "Name": "Believe" - }, - "464": { - "Name": "As We Sleep" - }, - "465": { - "Name": "When Evening Falls" - }, - "466": { - "Name": "J Squared" - }, - "467": { - "Name": "Best Thing" - } - }, - "Title": "Heart of the Night" - }, - "204": { - "tracks": { - "2523": { - "Name": "Morning Dance" - }, - "2524": { - "Name": "Jubilee" - }, - "2525": { - "Name": "Rasul" - }, - "2526": { - "Name": "Song For Lorraine" - }, - "2527": { - "Name": "Starburst" - }, - "2528": { - "Name": "Heliopolis" - }, - "2529": { - "Name": "It Doesn't Matter" - }, - "2530": { - "Name": "Little Linda" - }, - "2531": { - "Name": "End Of Romanticism" - } - }, - "Title": "Morning Dance" - } - }, - "Name": "Spyro Gyra" - } - }, - "39": { - "tracks": { - "468": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Maria" - }, - "469": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Poprocks And Coke" - }, - "470": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Longview" - }, - "471": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Welcome To Paradise" - }, - "472": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Basket Case" - }, - "473": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "When I Come Around" - }, - "474": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "She" - }, - "475": { - "Composer": "Mike Dirnt -Words Green Day -Music", - "Name": "J.A.R. (Jason Andrew Relva)" - }, - "476": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Geek Stink Breath" - }, - "477": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Brain Stew" - }, - "478": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Jaded" - }, - "479": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Walking Contradiction" - }, - "480": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Stuck With Me" - }, - "481": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Hitchin' A Ride" - }, - "482": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Good Riddance (Time Of Your Life)" - }, - "483": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Redundant" - }, - "484": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Nice Guys Finish Last" - }, - "485": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Minority" - }, - "486": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Warning" - }, - "487": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Waiting" - }, - "488": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "Name": "Macy's Day Parade" - } - }, - "Title": "International Superhits", - "artist": { - "ArtistId": 54, - "albums": { - "39": { - "tracks": { - "468": { - "Name": "Maria" - }, - "469": { - "Name": "Poprocks And Coke" - }, - "470": { - "Name": "Longview" - }, - "471": { - "Name": "Welcome To Paradise" - }, - "472": { - "Name": "Basket Case" - }, - "473": { - "Name": "When I Come Around" - }, - "474": { - "Name": "She" - }, - "475": { - "Name": "J.A.R. (Jason Andrew Relva)" - }, - "476": { - "Name": "Geek Stink Breath" - }, - "477": { - "Name": "Brain Stew" - }, - "478": { - "Name": "Jaded" - }, - "479": { - "Name": "Walking Contradiction" - }, - "480": { - "Name": "Stuck With Me" - }, - "481": { - "Name": "Hitchin' A Ride" - }, - "482": { - "Name": "Good Riddance (Time Of Your Life)" - }, - "483": { - "Name": "Redundant" - }, - "484": { - "Name": "Nice Guys Finish Last" - }, - "485": { - "Name": "Minority" - }, - "486": { - "Name": "Warning" - }, - "487": { - "Name": "Waiting" - }, - "488": { - "Name": "Macy's Day Parade" - } - }, - "Title": "International Superhits" - }, - "89": { - "tracks": { - "1134": { - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home" - }, - "1137": { - "Name": "Are We The Waiting" - }, - "1138": { - "Name": "St. Jimmy" - }, - "1139": { - "Name": "Give Me Novacaine" - }, - "1140": { - "Name": "She's A Rebel" - }, - "1141": { - "Name": "Extraordinary Girl" - }, - "1142": { - "Name": "Letterbomb" - }, - "1145": { - "Name": "Whatsername" - } - }, - "Title": "American Idiot" - } - }, - "Name": "Green Day" - } - }, - "40": { - "tracks": { - "489": { - "Composer": "David Coverdale", - "Name": "Into The Light" - }, - "490": { - "Composer": "David Coverdale", - "Name": "River Song" - }, - "491": { - "Composer": "David Coverdale", - "Name": "She Give Me ..." - }, - "492": { - "Composer": "David Coverdale", - "Name": "Don't You Cry" - }, - "493": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Love Is Blind" - }, - "494": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Slave" - }, - "495": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "Name": "Cry For Love" - }, - "496": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "Name": "Living On Love" - }, - "497": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Midnight Blue" - }, - "498": { - "Composer": "Adrian Vanderberg/David Coverdale", - "Name": "Too Many Tears" - }, - "499": { - "Composer": "David Coverdale/Earl Slick", - "Name": "Don't Lie To Me" - }, - "500": { - "Composer": "David Coverdale", - "Name": "Wherever You May Go" - } - }, - "Title": "Into The Light", - "artist": { - "ArtistId": 55, - "albums": { - "40": { - "tracks": { - "489": { - "Name": "Into The Light" - }, - "490": { - "Name": "River Song" - }, - "491": { - "Name": "She Give Me ..." - }, - "492": { - "Name": "Don't You Cry" - }, - "493": { - "Name": "Love Is Blind" - }, - "494": { - "Name": "Slave" - }, - "495": { - "Name": "Cry For Love" - }, - "496": { - "Name": "Living On Love" - }, - "497": { - "Name": "Midnight Blue" - }, - "498": { - "Name": "Too Many Tears" - }, - "499": { - "Name": "Don't Lie To Me" - }, - "500": { - "Name": "Wherever You May Go" - } - }, - "Title": "Into The Light" - } - }, - "Name": "David Coverdale" - } - }, - "41": { - "tracks": { - "501": { - "Composer": "Gonzaga Jr.", - "Name": "Grito De Alerta" - }, - "505": { - "Composer": "Gonzaga Jr/Gonzaguinha", - "Name": "Sangrando" - }, - "507": { - "Composer": "Gonzaga Jr.", - "Name": "Lindo Lago Do Amor" - }, - "509": { - "Composer": "Gonzaga Jr.", - "Name": "Com A Perna No Mundo" - }, - "512": { - "Composer": "Gonzaga Jr", - "Name": "Comportamento Geral" - }, - "514": { - "Composer": "Gonzaguinha", - "Name": "Espere Por Mim, Morena" - } - }, - "Title": "Meus Momentos", - "artist": { - "ArtistId": 56, - "albums": { - "41": { - "tracks": { - "501": { - "Name": "Grito De Alerta" - }, - "505": { - "Name": "Sangrando" - }, - "507": { - "Name": "Lindo Lago Do Amor" - }, - "509": { - "Name": "Com A Perna No Mundo" - }, - "512": { - "Name": "Comportamento Geral" - }, - "514": { - "Name": "Espere Por Mim, Morena" - } - }, - "Title": "Meus Momentos" - } - }, - "Name": "Gonzaguinha" - } - }, - "43": { - "tracks": { - "543": { - "Composer": "Coverdale/Lord/Paice", - "Name": "Burn" - }, - "544": { - "Composer": "Coverdale", - "Name": "Stormbringer" - }, - "545": { - "Composer": "Coverdale/Hughes/Lord/Paice", - "Name": "Gypsy" - }, - "546": { - "Composer": "Coverdale", - "Name": "Lady Double Dealer" - }, - "547": { - "Composer": "Coverdale", - "Name": "Mistreated" - }, - "548": { - "Composer": "Gillan/Glover/Lord/Paice", - "Name": "Smoke On The Water" - }, - "549": { - "Composer": "Coverdale/Lord/Paice", - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "44": { - "tracks": { - "550": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Custard Pie" - }, - "551": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "The Rover" - }, - "552": { - "Composer": "John Bonham/John Paul Jones", - "Name": "In My Time Of Dying" - }, - "553": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Houses Of The Holy" - }, - "554": { - "Composer": "John Paul Jones", - "Name": "Trampled Under Foot" - }, - "555": { - "Composer": "John Bonham", - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "45": { - "tracks": { - "556": { - "Composer": "Guga/Marquinho Lessa/Tuninho Professor", - "Name": "Imperatriz" - }, - "557": { - "Composer": "Caruso/Cleber/Deo/Osmar", - "Name": "Beija-Flor" - }, - "558": { - "Composer": "Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto", - "Name": "Viradouro" - }, - "559": { - "Composer": "Domenil/J. Brito/Joaozinho/Rap, Marcelo Do", - "Name": "Mocidade" - }, - "560": { - "Composer": "Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir", - "Name": "Unidos Da Tijuca" - }, - "561": { - "Composer": "Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da", - "Name": "Salgueiro" - }, - "565": { - "Composer": "Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno", - "Name": "Portela" - }, - "566": { - "Composer": "Gule/Jorge 101/Lequinho/Luiz Piao", - "Name": "Caprichosos" - }, - "569": { - "Composer": "Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som", - "Name": "Tuiuti" - } - }, - "Title": "Sambas De Enredo 2001", - "artist": { - "ArtistId": 21, - "albums": { - "32": { - "tracks": { - "360": { - "Name": "Vai-Vai 2001" - }, - "361": { - "Name": "X-9 2001" - }, - "362": { - "Name": "Gavioes 2001" - }, - "363": { - "Name": "Nene 2001" - }, - "364": { - "Name": "Rosas De Ouro 2001" - }, - "365": { - "Name": "Mocidade Alegre 2001" - }, - "366": { - "Name": "Camisa Verde 2001" - }, - "367": { - "Name": "Leandro De Itaquera 2001" - }, - "368": { - "Name": "Tucuruvi 2001" - }, - "369": { - "Name": "Aguia De Ouro 2001" - }, - "370": { - "Name": "Ipiranga 2001" - }, - "371": { - "Name": "Morro Da Casa Verde 2001" - }, - "372": { - "Name": "Perola Negra 2001" - }, - "373": { - "Name": "Sao Lucas 2001" - } - }, - "Title": "Carnaval 2001" - }, - "45": { - "tracks": { - "556": { - "Name": "Imperatriz" - }, - "557": { - "Name": "Beija-Flor" - }, - "558": { - "Name": "Viradouro" - }, - "559": { - "Name": "Mocidade" - }, - "560": { - "Name": "Unidos Da Tijuca" - }, - "561": { - "Name": "Salgueiro" - }, - "565": { - "Name": "Portela" - }, - "566": { - "Name": "Caprichosos" - }, - "569": { - "Name": "Tuiuti" - } - }, - "Title": "Sambas De Enredo 2001" - }, - "53": { - "tracks": { - "664": { - "Name": "Marina (Dorival Caymmi)" - }, - "665": { - "Name": "Aquarela (Toquinho)" - }, - "667": { - "Name": "Dona (Roupa Nova)" - }, - "670": { - "Name": "Romaria (Renato Teixeira)" - }, - "672": { - "Name": "Wave (Os Cariocas)" - }, - "673": { - "Name": "Garota de Ipanema (Dick Farney)" - } - }, - "Title": "Vozes do MPB" - } - }, - "Name": "Various Artists" - } - }, - "46": { - "tracks": { - "570": { - "Composer": "Santana", - "Name": "(Da Le) Yaleo" - }, - "571": { - "Composer": "Carlos Santana & Dave Matthews", - "Name": "Love Of My Life" - }, - "572": { - "Composer": "E. Shrody", - "Name": "Put Your Lights On" - }, - "573": { - "Composer": "I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo", - "Name": "Africa Bamba" - }, - "574": { - "Composer": "M. Itaal Shur & Rob Thomas", - "Name": "Smooth" - }, - "575": { - "Composer": "L. Hill", - "Name": "Do You Like The Way" - }, - "576": { - "Composer": "W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow", - "Name": "Maria Maria" - }, - "577": { - "Composer": "R. Taha, Carlos Santana & T. Lindsay", - "Name": "Migra" - }, - "578": { - "Composer": "F. Olivera", - "Name": "Corazon Espinado" - }, - "579": { - "Composer": "Eale-Eye Cherry, M. Simpson, J. King & M. Nishita", - "Name": "Wishing It Was" - }, - "580": { - "Composer": "Carlos Santana & KC Porter", - "Name": "El Farol" - }, - "581": { - "Composer": "KC Porter & JB Eckl", - "Name": "Primavera" - }, - "582": { - "Composer": "Carlos Santana & C. Thompson", - "Name": "The Calling" - } - }, - "Title": "Supernatural", - "artist": { - "ArtistId": 59, - "albums": { - "46": { - "tracks": { - "570": { - "Name": "(Da Le) Yaleo" - }, - "571": { - "Name": "Love Of My Life" - }, - "572": { - "Name": "Put Your Lights On" - }, - "573": { - "Name": "Africa Bamba" - }, - "574": { - "Name": "Smooth" - }, - "575": { - "Name": "Do You Like The Way" - }, - "576": { - "Name": "Maria Maria" - }, - "577": { - "Name": "Migra" - }, - "578": { - "Name": "Corazon Espinado" - }, - "579": { - "Name": "Wishing It Was" - }, - "580": { - "Name": "El Farol" - }, - "581": { - "Name": "Primavera" - }, - "582": { - "Name": "The Calling" - } - }, - "Title": "Supernatural" - }, - "197": { - "tracks": { - "2420": { - "Name": "Jingo" - }, - "2421": { - "Name": "El Corazon Manda" - }, - "2422": { - "Name": "La Puesta Del Sol" - }, - "2423": { - "Name": "Persuasion" - }, - "2424": { - "Name": "As The Years Go by" - }, - "2425": { - "Name": "Soul Sacrifice" - }, - "2426": { - "Name": "Fried Neckbones And Home Fries" - }, - "2427": { - "Name": "Santana Jam" - } - }, - "Title": "Santana - As Years Go By" - }, - "198": { - "tracks": { - "2428": { - "Name": "Evil Ways" - }, - "2429": { - "Name": "We've Got To Get Together/Jingo" - }, - "2430": { - "Name": "Rock Me" - }, - "2431": { - "Name": "Just Ain't Good Enough" - }, - "2432": { - "Name": "Funky Piano" - }, - "2433": { - "Name": "The Way You Do To Mer" - } - }, - "Title": "Santana Live" - } - }, - "Name": "Santana" - } - }, - "47": { - "tracks": { - "584": { - "Composer": null, - "Name": "Manuel" - }, - "586": { - "Composer": null, - "Name": "Um Contrato Com Deus" - }, - "587": { - "Composer": null, - "Name": "Um Jantar Pra Dois" - }, - "589": { - "Composer": null, - "Name": "Um Love" - }, - "590": { - "Composer": null, - "Name": "Seis Da Tarde" - }, - "591": { - "Composer": null, - "Name": "Baixo Rio" - }, - "592": { - "Composer": null, - "Name": "Sombras Do Meu Destino" - }, - "593": { - "Composer": null, - "Name": "Do You Have Other Loves?" - }, - "594": { - "Composer": null, - "Name": "Agora Que O Dia Acordou" - }, - "596": { - "Composer": null, - "Name": "A Rua" - } - }, - "Title": "The Best of Ed Motta", - "artist": { - "ArtistId": 37, - "albums": { - "47": { - "tracks": { - "584": { - "Name": "Manuel" - }, - "586": { - "Name": "Um Contrato Com Deus" - }, - "587": { - "Name": "Um Jantar Pra Dois" - }, - "589": { - "Name": "Um Love" - }, - "590": { - "Name": "Seis Da Tarde" - }, - "591": { - "Name": "Baixo Rio" - }, - "592": { - "Name": "Sombras Do Meu Destino" - }, - "593": { - "Name": "Do You Have Other Loves?" - }, - "594": { - "Name": "Agora Que O Dia Acordou" - }, - "596": { - "Name": "A Rua" - } - }, - "Title": "The Best of Ed Motta" - } - }, - "Name": "Ed Motta" - } - }, - "48": { - "tracks": { - "597": { - "Composer": "Miles Davis", - "Name": "Now's The Time" - }, - "598": { - "Composer": "Miles Davis", - "Name": "Jeru" - }, - "599": { - "Composer": "Miles Davis", - "Name": "Compulsion" - }, - "600": { - "Composer": "Miles Davis", - "Name": "Tempus Fugit" - }, - "601": { - "Composer": "Miles Davis", - "Name": "Walkin'" - }, - "602": { - "Composer": "Miles Davis", - "Name": "'Round Midnight" - }, - "603": { - "Composer": "Miles Davis", - "Name": "Bye Bye Blackbird" - }, - "604": { - "Composer": "Miles Davis", - "Name": "New Rhumba" - }, - "605": { - "Composer": "Miles Davis", - "Name": "Generique" - }, - "606": { - "Composer": "Miles Davis", - "Name": "Summertime" - }, - "607": { - "Composer": "Miles Davis", - "Name": "So What" - }, - "608": { - "Composer": "Miles Davis", - "Name": "The Pan Piper" - }, - "609": { - "Composer": "Miles Davis", - "Name": "Someday My Prince Will Come" - } - }, - "Title": "The Essential Miles Davis [Disc 1]", - "artist": { - "ArtistId": 68, - "albums": { - "48": { - "tracks": { - "597": { - "Name": "Now's The Time" - }, - "598": { - "Name": "Jeru" - }, - "599": { - "Name": "Compulsion" - }, - "600": { - "Name": "Tempus Fugit" - }, - "601": { - "Name": "Walkin'" - }, - "602": { - "Name": "'Round Midnight" - }, - "603": { - "Name": "Bye Bye Blackbird" - }, - "604": { - "Name": "New Rhumba" - }, - "605": { - "Name": "Generique" - }, - "606": { - "Name": "Summertime" - }, - "607": { - "Name": "So What" - }, - "608": { - "Name": "The Pan Piper" - }, - "609": { - "Name": "Someday My Prince Will Come" - } - }, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "49": { - "tracks": { - "610": { - "Name": "My Funny Valentine (Live)" - }, - "611": { - "Name": "E.S.P." - }, - "612": { - "Name": "Nefertiti" - }, - "613": { - "Name": "Petits Machins (Little Stuff)" - }, - "614": { - "Name": "Miles Runs The Voodoo Down" - }, - "615": { - "Name": "Little Church (Live)" - }, - "616": { - "Name": "Black Satin" - }, - "617": { - "Name": "Jean Pierre (Live)" - }, - "618": { - "Name": "Time After Time" - }, - "619": { - "Name": "Portia" - } - }, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "157": { - "tracks": { - "1902": { - "Name": "Springsville" - }, - "1903": { - "Name": "The Maids Of Cadiz" - }, - "1904": { - "Name": "The Duke" - }, - "1905": { - "Name": "My Ship" - }, - "1906": { - "Name": "Miles Ahead" - }, - "1907": { - "Name": "Blues For Pablo" - }, - "1908": { - "Name": "New Rhumba" - }, - "1909": { - "Name": "The Meaning Of The Blues" - }, - "1910": { - "Name": "Lament" - }, - "1911": { - "Name": "I Don't Wanna Be Kissed (By Anyone But You)" - }, - "1912": { - "Name": "Springsville (Alternate Take)" - }, - "1913": { - "Name": "Blues For Pablo (Alternate Take)" - }, - "1914": { - "Name": "The Meaning Of The Blues/Lament (Alternate Take)" - }, - "1915": { - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)" - } - }, - "Title": "Miles Ahead" - } - }, - "Name": "Miles Davis" - } - }, - "49": { - "tracks": { - "610": { - "Composer": "Miles Davis", - "Name": "My Funny Valentine (Live)" - }, - "611": { - "Composer": "Miles Davis", - "Name": "E.S.P." - }, - "612": { - "Composer": "Miles Davis", - "Name": "Nefertiti" - }, - "613": { - "Composer": "Miles Davis", - "Name": "Petits Machins (Little Stuff)" - }, - "614": { - "Composer": "Miles Davis", - "Name": "Miles Runs The Voodoo Down" - }, - "615": { - "Composer": "Miles Davis", - "Name": "Little Church (Live)" - }, - "616": { - "Composer": "Miles Davis", - "Name": "Black Satin" - }, - "617": { - "Composer": "Miles Davis", - "Name": "Jean Pierre (Live)" - }, - "618": { - "Composer": "Miles Davis", - "Name": "Time After Time" - }, - "619": { - "Composer": "Miles Davis", - "Name": "Portia" - } - }, - "Title": "The Essential Miles Davis [Disc 2]", - "artist": { - "ArtistId": 68, - "albums": { - "48": { - "tracks": { - "597": { - "Name": "Now's The Time" - }, - "598": { - "Name": "Jeru" - }, - "599": { - "Name": "Compulsion" - }, - "600": { - "Name": "Tempus Fugit" - }, - "601": { - "Name": "Walkin'" - }, - "602": { - "Name": "'Round Midnight" - }, - "603": { - "Name": "Bye Bye Blackbird" - }, - "604": { - "Name": "New Rhumba" - }, - "605": { - "Name": "Generique" - }, - "606": { - "Name": "Summertime" - }, - "607": { - "Name": "So What" - }, - "608": { - "Name": "The Pan Piper" - }, - "609": { - "Name": "Someday My Prince Will Come" - } - }, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "49": { - "tracks": { - "610": { - "Name": "My Funny Valentine (Live)" - }, - "611": { - "Name": "E.S.P." - }, - "612": { - "Name": "Nefertiti" - }, - "613": { - "Name": "Petits Machins (Little Stuff)" - }, - "614": { - "Name": "Miles Runs The Voodoo Down" - }, - "615": { - "Name": "Little Church (Live)" - }, - "616": { - "Name": "Black Satin" - }, - "617": { - "Name": "Jean Pierre (Live)" - }, - "618": { - "Name": "Time After Time" - }, - "619": { - "Name": "Portia" - } - }, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "157": { - "tracks": { - "1902": { - "Name": "Springsville" - }, - "1903": { - "Name": "The Maids Of Cadiz" - }, - "1904": { - "Name": "The Duke" - }, - "1905": { - "Name": "My Ship" - }, - "1906": { - "Name": "Miles Ahead" - }, - "1907": { - "Name": "Blues For Pablo" - }, - "1908": { - "Name": "New Rhumba" - }, - "1909": { - "Name": "The Meaning Of The Blues" - }, - "1910": { - "Name": "Lament" - }, - "1911": { - "Name": "I Don't Wanna Be Kissed (By Anyone But You)" - }, - "1912": { - "Name": "Springsville (Alternate Take)" - }, - "1913": { - "Name": "Blues For Pablo (Alternate Take)" - }, - "1914": { - "Name": "The Meaning Of The Blues/Lament (Alternate Take)" - }, - "1915": { - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)" - } - }, - "Title": "Miles Ahead" - } - }, - "Name": "Miles Davis" - } - }, - "50": { - "tracks": { - "620": { - "Composer": "Blackmore/Gillan/Glover/Lord/Paice", - "Name": "Space Truckin'" - }, - "621": { - "Composer": "Gillan/Glover/Lord/Nix - Blackmore/Paice", - "Name": "Going Down / Highway Star" - }, - "622": { - "Composer": "Blackmore/Coverdale", - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Composer": "Blackmore/Coverdale/Lord/Paice", - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "51": { - "tracks": { - "624": { - "Composer": null, - "Name": "Jeepers Creepers" - }, - "625": { - "Composer": null, - "Name": "Blue Rythm Fantasy" - }, - "626": { - "Composer": null, - "Name": "Drum Boogie" - }, - "627": { - "Composer": null, - "Name": "Let Me Off Uptown" - }, - "628": { - "Composer": null, - "Name": "Leave Us Leap" - }, - "629": { - "Composer": null, - "Name": "Opus No.1" - }, - "630": { - "Composer": null, - "Name": "Boogie Blues" - }, - "631": { - "Composer": null, - "Name": "How High The Moon" - }, - "632": { - "Composer": null, - "Name": "Disc Jockey Jump" - }, - "633": { - "Composer": null, - "Name": "Up An' Atom" - }, - "634": { - "Composer": null, - "Name": "Bop Boogie" - }, - "635": { - "Composer": null, - "Name": "Lemon Drop" - }, - "636": { - "Composer": null, - "Name": "Coronation Drop" - }, - "637": { - "Composer": null, - "Name": "Overtime" - }, - "638": { - "Composer": null, - "Name": "Imagination" - }, - "639": { - "Composer": null, - "Name": "Don't Take Your Love From Me" - }, - "640": { - "Composer": null, - "Name": "Midget" - }, - "641": { - "Composer": null, - "Name": "I'm Coming Virginia" - }, - "642": { - "Composer": null, - "Name": "Payin' Them Dues Blues" - }, - "643": { - "Composer": null, - "Name": "Jungle Drums" - }, - "644": { - "Composer": null, - "Name": "Showcase" - }, - "645": { - "Composer": null, - "Name": "Swedish Schnapps" - } - }, - "Title": "Up An' Atom", - "artist": { - "ArtistId": 69, - "albums": { - "51": { - "tracks": { - "624": { - "Name": "Jeepers Creepers" - }, - "625": { - "Name": "Blue Rythm Fantasy" - }, - "626": { - "Name": "Drum Boogie" - }, - "627": { - "Name": "Let Me Off Uptown" - }, - "628": { - "Name": "Leave Us Leap" - }, - "629": { - "Name": "Opus No.1" - }, - "630": { - "Name": "Boogie Blues" - }, - "631": { - "Name": "How High The Moon" - }, - "632": { - "Name": "Disc Jockey Jump" - }, - "633": { - "Name": "Up An' Atom" - }, - "634": { - "Name": "Bop Boogie" - }, - "635": { - "Name": "Lemon Drop" - }, - "636": { - "Name": "Coronation Drop" - }, - "637": { - "Name": "Overtime" - }, - "638": { - "Name": "Imagination" - }, - "639": { - "Name": "Don't Take Your Love From Me" - }, - "640": { - "Name": "Midget" - }, - "641": { - "Name": "I'm Coming Virginia" - }, - "642": { - "Name": "Payin' Them Dues Blues" - }, - "643": { - "Name": "Jungle Drums" - }, - "644": { - "Name": "Showcase" - }, - "645": { - "Name": "Swedish Schnapps" - } - }, - "Title": "Up An' Atom" - } - }, - "Name": "Gene Krupa" - } - }, - "53": { - "tracks": { - "664": { - "Composer": null, - "Name": "Marina (Dorival Caymmi)" - }, - "665": { - "Composer": null, - "Name": "Aquarela (Toquinho)" - }, - "667": { - "Composer": null, - "Name": "Dona (Roupa Nova)" - }, - "670": { - "Composer": null, - "Name": "Romaria (Renato Teixeira)" - }, - "672": { - "Composer": null, - "Name": "Wave (Os Cariocas)" - }, - "673": { - "Composer": null, - "Name": "Garota de Ipanema (Dick Farney)" - } - }, - "Title": "Vozes do MPB", - "artist": { - "ArtistId": 21, - "albums": { - "32": { - "tracks": { - "360": { - "Name": "Vai-Vai 2001" - }, - "361": { - "Name": "X-9 2001" - }, - "362": { - "Name": "Gavioes 2001" - }, - "363": { - "Name": "Nene 2001" - }, - "364": { - "Name": "Rosas De Ouro 2001" - }, - "365": { - "Name": "Mocidade Alegre 2001" - }, - "366": { - "Name": "Camisa Verde 2001" - }, - "367": { - "Name": "Leandro De Itaquera 2001" - }, - "368": { - "Name": "Tucuruvi 2001" - }, - "369": { - "Name": "Aguia De Ouro 2001" - }, - "370": { - "Name": "Ipiranga 2001" - }, - "371": { - "Name": "Morro Da Casa Verde 2001" - }, - "372": { - "Name": "Perola Negra 2001" - }, - "373": { - "Name": "Sao Lucas 2001" - } - }, - "Title": "Carnaval 2001" - }, - "45": { - "tracks": { - "556": { - "Name": "Imperatriz" - }, - "557": { - "Name": "Beija-Flor" - }, - "558": { - "Name": "Viradouro" - }, - "559": { - "Name": "Mocidade" - }, - "560": { - "Name": "Unidos Da Tijuca" - }, - "561": { - "Name": "Salgueiro" - }, - "565": { - "Name": "Portela" - }, - "566": { - "Name": "Caprichosos" - }, - "569": { - "Name": "Tuiuti" - } - }, - "Title": "Sambas De Enredo 2001" - }, - "53": { - "tracks": { - "664": { - "Name": "Marina (Dorival Caymmi)" - }, - "665": { - "Name": "Aquarela (Toquinho)" - }, - "667": { - "Name": "Dona (Roupa Nova)" - }, - "670": { - "Name": "Romaria (Renato Teixeira)" - }, - "672": { - "Name": "Wave (Os Cariocas)" - }, - "673": { - "Name": "Garota de Ipanema (Dick Farney)" - } - }, - "Title": "Vozes do MPB" - } - }, - "Name": "Various Artists" - } - }, - "54": { - "tracks": { - "675": { - "Composer": "Hawkins-Lewis-Broadwater", - "Name": "Susie Q" - }, - "676": { - "Composer": "Jay Hawkins", - "Name": "I Put A Spell On You" - }, - "677": { - "Composer": "J. C. Fogerty", - "Name": "Proud Mary" - }, - "678": { - "Composer": "J. C. Fogerty", - "Name": "Bad Moon Rising" - }, - "679": { - "Composer": "J. C. Fogerty", - "Name": "Lodi" - }, - "680": { - "Composer": "J. C. Fogerty", - "Name": "Green River" - }, - "681": { - "Composer": "J. C. Fogerty", - "Name": "Commotion" - }, - "682": { - "Composer": "J. C. Fogerty", - "Name": "Down On The Corner" - }, - "683": { - "Composer": "J. C. Fogerty", - "Name": "Fortunate Son" - }, - "684": { - "Composer": "J. C. Fogerty", - "Name": "Travelin' Band" - }, - "685": { - "Composer": "J. C. Fogerty", - "Name": "Who'll Stop The Rain" - }, - "686": { - "Composer": "J. C. Fogerty", - "Name": "Up Around The Bend" - }, - "687": { - "Composer": "J. C. Fogerty", - "Name": "Run Through The Jungle" - }, - "688": { - "Composer": "J. C. Fogerty", - "Name": "Lookin' Out My Back Door" - }, - "689": { - "Composer": "J. C. Fogerty", - "Name": "Long As I Can See The Light" - }, - "690": { - "Composer": "Whitfield-Strong", - "Name": "I Heard It Through The Grapevine" - }, - "691": { - "Composer": "J. C. Fogerty", - "Name": "Have You Ever Seen The Rain?" - }, - "692": { - "Composer": "J. C. Fogerty", - "Name": "Hey Tonight" - }, - "693": { - "Composer": "J. C. Fogerty", - "Name": "Sweet Hitch-Hiker" - }, - "694": { - "Composer": "J. C. Fogerty", - "Name": "Someday Never Comes" - } - }, - "Title": "Chronicle, Vol. 1", - "artist": { - "ArtistId": 76, - "albums": { - "54": { - "tracks": { - "675": { - "Name": "Susie Q" - }, - "676": { - "Name": "I Put A Spell On You" - }, - "677": { - "Name": "Proud Mary" - }, - "678": { - "Name": "Bad Moon Rising" - }, - "679": { - "Name": "Lodi" - }, - "680": { - "Name": "Green River" - }, - "681": { - "Name": "Commotion" - }, - "682": { - "Name": "Down On The Corner" - }, - "683": { - "Name": "Fortunate Son" - }, - "684": { - "Name": "Travelin' Band" - }, - "685": { - "Name": "Who'll Stop The Rain" - }, - "686": { - "Name": "Up Around The Bend" - }, - "687": { - "Name": "Run Through The Jungle" - }, - "688": { - "Name": "Lookin' Out My Back Door" - }, - "689": { - "Name": "Long As I Can See The Light" - }, - "690": { - "Name": "I Heard It Through The Grapevine" - }, - "691": { - "Name": "Have You Ever Seen The Rain?" - }, - "692": { - "Name": "Hey Tonight" - }, - "693": { - "Name": "Sweet Hitch-Hiker" - }, - "694": { - "Name": "Someday Never Comes" - } - }, - "Title": "Chronicle, Vol. 1" - }, - "55": { - "tracks": { - "695": { - "Name": "Walking On The Water" - }, - "696": { - "Name": "Suzie-Q, Pt. 2" - }, - "697": { - "Name": "Born On The Bayou" - }, - "698": { - "Name": "Good Golly Miss Molly" - }, - "699": { - "Name": "Tombstone Shadow" - }, - "700": { - "Name": "Wrote A Song For Everyone" - }, - "701": { - "Name": "Night Time Is The Right Time" - }, - "702": { - "Name": "Cotton Fields" - }, - "703": { - "Name": "It Came Out Of The Sky" - }, - "704": { - "Name": "Don't Look Now" - }, - "705": { - "Name": "The Midnight Special" - }, - "706": { - "Name": "Before You Accuse Me" - }, - "707": { - "Name": "My Baby Left Me" - }, - "708": { - "Name": "Pagan Baby" - }, - "709": { - "Name": "(Wish I Could) Hideaway" - }, - "710": { - "Name": "It's Just A Thought" - }, - "711": { - "Name": "Molina" - }, - "712": { - "Name": "Born To Move" - }, - "713": { - "Name": "Lookin' For A Reason" - }, - "714": { - "Name": "Hello Mary Lou" - } - }, - "Title": "Chronicle, Vol. 2" - } - }, - "Name": "Creedence Clearwater Revival" - } - }, - "55": { - "tracks": { - "695": { - "Composer": "J.C. Fogerty", - "Name": "Walking On The Water" - }, - "696": { - "Composer": "J.C. Fogerty", - "Name": "Suzie-Q, Pt. 2" - }, - "697": { - "Composer": "J.C. Fogerty", - "Name": "Born On The Bayou" - }, - "698": { - "Composer": "J.C. Fogerty", - "Name": "Good Golly Miss Molly" - }, - "699": { - "Composer": "J.C. Fogerty", - "Name": "Tombstone Shadow" - }, - "700": { - "Composer": "J.C. Fogerty", - "Name": "Wrote A Song For Everyone" - }, - "701": { - "Composer": "J.C. Fogerty", - "Name": "Night Time Is The Right Time" - }, - "702": { - "Composer": "J.C. Fogerty", - "Name": "Cotton Fields" - }, - "703": { - "Composer": "J.C. Fogerty", - "Name": "It Came Out Of The Sky" - }, - "704": { - "Composer": "J.C. Fogerty", - "Name": "Don't Look Now" - }, - "705": { - "Composer": "J.C. Fogerty", - "Name": "The Midnight Special" - }, - "706": { - "Composer": "J.C. Fogerty", - "Name": "Before You Accuse Me" - }, - "707": { - "Composer": "J.C. Fogerty", - "Name": "My Baby Left Me" - }, - "708": { - "Composer": "J.C. Fogerty", - "Name": "Pagan Baby" - }, - "709": { - "Composer": "J.C. Fogerty", - "Name": "(Wish I Could) Hideaway" - }, - "710": { - "Composer": "J.C. Fogerty", - "Name": "It's Just A Thought" - }, - "711": { - "Composer": "J.C. Fogerty", - "Name": "Molina" - }, - "712": { - "Composer": "J.C. Fogerty", - "Name": "Born To Move" - }, - "713": { - "Composer": "J.C. Fogerty", - "Name": "Lookin' For A Reason" - }, - "714": { - "Composer": "J.C. Fogerty", - "Name": "Hello Mary Lou" - } - }, - "Title": "Chronicle, Vol. 2", - "artist": { - "ArtistId": 76, - "albums": { - "54": { - "tracks": { - "675": { - "Name": "Susie Q" - }, - "676": { - "Name": "I Put A Spell On You" - }, - "677": { - "Name": "Proud Mary" - }, - "678": { - "Name": "Bad Moon Rising" - }, - "679": { - "Name": "Lodi" - }, - "680": { - "Name": "Green River" - }, - "681": { - "Name": "Commotion" - }, - "682": { - "Name": "Down On The Corner" - }, - "683": { - "Name": "Fortunate Son" - }, - "684": { - "Name": "Travelin' Band" - }, - "685": { - "Name": "Who'll Stop The Rain" - }, - "686": { - "Name": "Up Around The Bend" - }, - "687": { - "Name": "Run Through The Jungle" - }, - "688": { - "Name": "Lookin' Out My Back Door" - }, - "689": { - "Name": "Long As I Can See The Light" - }, - "690": { - "Name": "I Heard It Through The Grapevine" - }, - "691": { - "Name": "Have You Ever Seen The Rain?" - }, - "692": { - "Name": "Hey Tonight" - }, - "693": { - "Name": "Sweet Hitch-Hiker" - }, - "694": { - "Name": "Someday Never Comes" - } - }, - "Title": "Chronicle, Vol. 1" - }, - "55": { - "tracks": { - "695": { - "Name": "Walking On The Water" - }, - "696": { - "Name": "Suzie-Q, Pt. 2" - }, - "697": { - "Name": "Born On The Bayou" - }, - "698": { - "Name": "Good Golly Miss Molly" - }, - "699": { - "Name": "Tombstone Shadow" - }, - "700": { - "Name": "Wrote A Song For Everyone" - }, - "701": { - "Name": "Night Time Is The Right Time" - }, - "702": { - "Name": "Cotton Fields" - }, - "703": { - "Name": "It Came Out Of The Sky" - }, - "704": { - "Name": "Don't Look Now" - }, - "705": { - "Name": "The Midnight Special" - }, - "706": { - "Name": "Before You Accuse Me" - }, - "707": { - "Name": "My Baby Left Me" - }, - "708": { - "Name": "Pagan Baby" - }, - "709": { - "Name": "(Wish I Could) Hideaway" - }, - "710": { - "Name": "It's Just A Thought" - }, - "711": { - "Name": "Molina" - }, - "712": { - "Name": "Born To Move" - }, - "713": { - "Name": "Lookin' For A Reason" - }, - "714": { - "Name": "Hello Mary Lou" - } - }, - "Title": "Chronicle, Vol. 2" - } - }, - "Name": "Creedence Clearwater Revival" - } - }, - "58": { - "tracks": { - "745": { - "Composer": "Bolin/Coverdale/Paice", - "Name": "Comin' Home" - }, - "746": { - "Composer": "Cook/Coverdale", - "Name": "Lady Luck" - }, - "747": { - "Composer": "Bolin/Hughes", - "Name": "Gettin' Tighter" - }, - "748": { - "Composer": "Bolin/Coverdale", - "Name": "Dealer" - }, - "749": { - "Composer": "Bolin/Coverdale", - "Name": "I Need Love" - }, - "750": { - "Composer": "Bolin/Coverdale", - "Name": "Drifter" - }, - "751": { - "Composer": "Bolin/Coverdale", - "Name": "Love Child" - }, - "752": { - "Composer": "Bolin/Hughes/Lord", - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Composer": "Coverdale/Hughes", - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "59": { - "tracks": { - "754": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Speed King" - }, - "755": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Bloodsucker" - }, - "756": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Child In Time" - }, - "757": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Flight Of The Rat" - }, - "758": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Into The Fire" - }, - "759": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Living Wreck" - }, - "760": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "60": { - "tracks": { - "761": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Fireball" - }, - "762": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "No No No" - }, - "763": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Strange Kind Of Woman" - }, - "764": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Anyone's Daughter" - }, - "765": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "The Mule" - }, - "766": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "Fools" - }, - "767": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "Name": "No One Came" - } - }, - "Title": "Fireball", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "61": { - "tracks": { - "768": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Name": "Knocking At Your Back Door" - }, - "769": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Name": "Bad Attitude" - }, - "770": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Nobody's Home" - }, - "772": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Black Night" - }, - "773": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "Name": "Perfect Strangers" - }, - "774": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice", - "Name": "The Unwritten Law" - }, - "775": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "Name": "Call Of The Wild" - }, - "776": { - "Composer": "South", - "Name": "Hush" - }, - "777": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Smoke On The Water" - }, - "778": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "62": { - "tracks": { - "779": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Highway Star" - }, - "780": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Maybe I'm A Leo" - }, - "781": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Pictures Of Home" - }, - "782": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Never Before" - }, - "783": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Smoke On The Water" - }, - "784": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Lazy" - }, - "785": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "63": { - "tracks": { - "786": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Loosen My Strings" - }, - "788": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Soon Forgotten" - }, - "789": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "The Aviator" - }, - "792": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Rosa's Cantina" - }, - "793": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "A Touch Away" - }, - "795": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Hey Cisco" - }, - "796": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "64": { - "tracks": { - "798": { - "Composer": "Blackmore, Glover, Turner", - "Name": "King Of Dreams" - }, - "799": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "The Cut Runs Deep" - }, - "800": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "Fire In The Basement" - }, - "801": { - "Composer": "Blackmore, Glover, Turner", - "Name": "Truth Hurts" - }, - "802": { - "Composer": "Blackmore, Glover, Turner", - "Name": "Breakfast In Bed" - }, - "803": { - "Composer": "Blackmore, Glover, Turner", - "Name": "Love Conquers All" - }, - "804": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "Fortuneteller" - }, - "805": { - "Composer": "Turner, Held, Greenwood", - "Name": "Too Much Is Not Enough" - }, - "806": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "65": { - "tracks": { - "807": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Name": "Stormbringer" - }, - "808": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord", - "Name": "Holy Man" - }, - "810": { - "Composer": "D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord", - "Name": "Hold On" - }, - "811": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Name": "Lady Double Dealer" - }, - "812": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore", - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Name": "High Ball Shooter" - }, - "814": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "Name": "The Gypsy" - }, - "815": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "66": { - "tracks": { - "816": { - "Composer": "ian paice/jon lord", - "Name": "The Battle Rages On" - }, - "817": { - "Composer": "roger glover", - "Name": "Lick It Up" - }, - "818": { - "Composer": "jon lord/roger glover", - "Name": "Anya" - }, - "819": { - "Composer": "roger glover", - "Name": "Talk About Love" - }, - "820": { - "Composer": "roger glover", - "Name": "Time To Kill" - }, - "821": { - "Composer": "roger glover", - "Name": "Ramshackle Man" - }, - "822": { - "Composer": "roger glover", - "Name": "A Twist In The Tail" - }, - "823": { - "Composer": "jon lord/roger glover", - "Name": "Nasty Piece Of Work" - }, - "824": { - "Composer": "roger glover", - "Name": "Solitaire" - }, - "825": { - "Composer": "roger glover", - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On", - "artist": { - "ArtistId": 58, - "albums": { - "43": { - "tracks": { - "543": { - "Name": "Burn" - }, - "544": { - "Name": "Stormbringer" - }, - "545": { - "Name": "Gypsy" - }, - "546": { - "Name": "Lady Double Dealer" - }, - "547": { - "Name": "Mistreated" - }, - "548": { - "Name": "Smoke On The Water" - }, - "549": { - "Name": "You Fool No One" - } - }, - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "tracks": { - "620": { - "Name": "Space Truckin'" - }, - "621": { - "Name": "Going Down / Highway Star" - }, - "622": { - "Name": "Mistreated (Alternate Version)" - }, - "623": { - "Name": "You Fool No One (Alternate Version)" - } - }, - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "tracks": { - "745": { - "Name": "Comin' Home" - }, - "746": { - "Name": "Lady Luck" - }, - "747": { - "Name": "Gettin' Tighter" - }, - "748": { - "Name": "Dealer" - }, - "749": { - "Name": "I Need Love" - }, - "750": { - "Name": "Drifter" - }, - "751": { - "Name": "Love Child" - }, - "752": { - "Name": "This Time Around / Owed to 'G' [Instrumental]" - }, - "753": { - "Name": "You Keep On Moving" - } - }, - "Title": "Come Taste The Band" - }, - "59": { - "tracks": { - "754": { - "Name": "Speed King" - }, - "755": { - "Name": "Bloodsucker" - }, - "756": { - "Name": "Child In Time" - }, - "757": { - "Name": "Flight Of The Rat" - }, - "758": { - "Name": "Into The Fire" - }, - "759": { - "Name": "Living Wreck" - }, - "760": { - "Name": "Hard Lovin' Man" - } - }, - "Title": "Deep Purple In Rock" - }, - "60": { - "tracks": { - "761": { - "Name": "Fireball" - }, - "762": { - "Name": "No No No" - }, - "763": { - "Name": "Strange Kind Of Woman" - }, - "764": { - "Name": "Anyone's Daughter" - }, - "765": { - "Name": "The Mule" - }, - "766": { - "Name": "Fools" - }, - "767": { - "Name": "No One Came" - } - }, - "Title": "Fireball" - }, - "61": { - "tracks": { - "768": { - "Name": "Knocking At Your Back Door" - }, - "769": { - "Name": "Bad Attitude" - }, - "770": { - "Name": "Child In Time (Son Of Aleric - Instrumental)" - }, - "771": { - "Name": "Nobody's Home" - }, - "772": { - "Name": "Black Night" - }, - "773": { - "Name": "Perfect Strangers" - }, - "774": { - "Name": "The Unwritten Law" - }, - "775": { - "Name": "Call Of The Wild" - }, - "776": { - "Name": "Hush" - }, - "777": { - "Name": "Smoke On The Water" - }, - "778": { - "Name": "Space Trucking" - } - }, - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "tracks": { - "779": { - "Name": "Highway Star" - }, - "780": { - "Name": "Maybe I'm A Leo" - }, - "781": { - "Name": "Pictures Of Home" - }, - "782": { - "Name": "Never Before" - }, - "783": { - "Name": "Smoke On The Water" - }, - "784": { - "Name": "Lazy" - }, - "785": { - "Name": "Space Truckin'" - } - }, - "Title": "Machine Head" - }, - "63": { - "tracks": { - "786": { - "Name": "Vavoom : Ted The Mechanic" - }, - "787": { - "Name": "Loosen My Strings" - }, - "788": { - "Name": "Soon Forgotten" - }, - "789": { - "Name": "Sometimes I Feel Like Screaming" - }, - "790": { - "Name": "Cascades : I'm Not Your Lover" - }, - "791": { - "Name": "The Aviator" - }, - "792": { - "Name": "Rosa's Cantina" - }, - "793": { - "Name": "A Castle Full Of Rascals" - }, - "794": { - "Name": "A Touch Away" - }, - "795": { - "Name": "Hey Cisco" - }, - "796": { - "Name": "Somebody Stole My Guitar" - }, - "797": { - "Name": "The Purpendicular Waltz" - } - }, - "Title": "Purpendicular" - }, - "64": { - "tracks": { - "798": { - "Name": "King Of Dreams" - }, - "799": { - "Name": "The Cut Runs Deep" - }, - "800": { - "Name": "Fire In The Basement" - }, - "801": { - "Name": "Truth Hurts" - }, - "802": { - "Name": "Breakfast In Bed" - }, - "803": { - "Name": "Love Conquers All" - }, - "804": { - "Name": "Fortuneteller" - }, - "805": { - "Name": "Too Much Is Not Enough" - }, - "806": { - "Name": "Wicked Ways" - } - }, - "Title": "Slaves And Masters" - }, - "65": { - "tracks": { - "807": { - "Name": "Stormbringer" - }, - "808": { - "Name": "Love Don't Mean a Thing" - }, - "809": { - "Name": "Holy Man" - }, - "810": { - "Name": "Hold On" - }, - "811": { - "Name": "Lady Double Dealer" - }, - "812": { - "Name": "You Can't Do it Right (With the One You Love)" - }, - "813": { - "Name": "High Ball Shooter" - }, - "814": { - "Name": "The Gypsy" - }, - "815": { - "Name": "Soldier Of Fortune" - } - }, - "Title": "Stormbringer" - }, - "66": { - "tracks": { - "816": { - "Name": "The Battle Rages On" - }, - "817": { - "Name": "Lick It Up" - }, - "818": { - "Name": "Anya" - }, - "819": { - "Name": "Talk About Love" - }, - "820": { - "Name": "Time To Kill" - }, - "821": { - "Name": "Ramshackle Man" - }, - "822": { - "Name": "A Twist In The Tail" - }, - "823": { - "Name": "Nasty Piece Of Work" - }, - "824": { - "Name": "Solitaire" - }, - "825": { - "Name": "One Man's Meat" - } - }, - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - } - }, - "67": { - "tracks": { - "826": { - "Composer": null, - "Name": "Pour Some Sugar On Me" - }, - "827": { - "Composer": null, - "Name": "Photograph" - }, - "828": { - "Composer": null, - "Name": "Love Bites" - }, - "829": { - "Composer": null, - "Name": "Let's Get Rocked" - }, - "830": { - "Composer": null, - "Name": "Two Steps Behind [Acoustic Version]" - }, - "831": { - "Composer": null, - "Name": "Animal" - }, - "832": { - "Composer": null, - "Name": "Heaven Is" - }, - "833": { - "Composer": null, - "Name": "Rocket" - }, - "834": { - "Composer": null, - "Name": "When Love & Hate Collide" - }, - "835": { - "Composer": null, - "Name": "Action" - }, - "836": { - "Composer": null, - "Name": "Make Love Like A Man" - }, - "837": { - "Composer": null, - "Name": "Armageddon It" - }, - "838": { - "Composer": null, - "Name": "Have You Ever Needed Someone So Bad" - }, - "839": { - "Composer": null, - "Name": "Rock Of Ages" - }, - "840": { - "Composer": null, - "Name": "Hysteria" - }, - "841": { - "Composer": null, - "Name": "Bringin' On The Heartbreak" - } - }, - "Title": "Vault: Def Leppard's Greatest Hits", - "artist": { - "ArtistId": 78, - "albums": { - "67": { - "tracks": { - "826": { - "Name": "Pour Some Sugar On Me" - }, - "827": { - "Name": "Photograph" - }, - "828": { - "Name": "Love Bites" - }, - "829": { - "Name": "Let's Get Rocked" - }, - "830": { - "Name": "Two Steps Behind [Acoustic Version]" - }, - "831": { - "Name": "Animal" - }, - "832": { - "Name": "Heaven Is" - }, - "833": { - "Name": "Rocket" - }, - "834": { - "Name": "When Love & Hate Collide" - }, - "835": { - "Name": "Action" - }, - "836": { - "Name": "Make Love Like A Man" - }, - "837": { - "Name": "Armageddon It" - }, - "838": { - "Name": "Have You Ever Needed Someone So Bad" - }, - "839": { - "Name": "Rock Of Ages" - }, - "840": { - "Name": "Hysteria" - }, - "841": { - "Name": "Bringin' On The Heartbreak" - } - }, - "Title": "Vault: Def Leppard's Greatest Hits" - } - }, - "Name": "Def Leppard" - } - }, - "68": { - "tracks": { - "842": { - "Composer": "Jim Beard", - "Name": "Roll Call" - }, - "843": { - "Composer": "John Scofield, Robert Aries, Milton Chambers and Gary Grainger", - "Name": "Otay" - }, - "844": { - "Composer": "Jim Beard", - "Name": "Groovus Interruptus" - }, - "845": { - "Composer": "Jon Herington", - "Name": "Paris On Mine" - }, - "846": { - "Composer": "Sylvester Stewart", - "Name": "In Time" - }, - "847": { - "Composer": "Dean Brown, Dennis Chambers & Jim Beard", - "Name": "Plan B" - }, - "848": { - "Composer": "Jim Beard & Jon Herington", - "Name": "Outbreak" - }, - "849": { - "Composer": "John Scofield", - "Name": "Baltimore, DC" - }, - "850": { - "Composer": "James Brown & Bobby Byrd", - "Name": "Talkin Loud and Saying Nothin" - } - }, - "Title": "Outbreak", - "artist": { - "ArtistId": 79, - "albums": { - "68": { - "tracks": { - "842": { - "Name": "Roll Call" - }, - "843": { - "Name": "Otay" - }, - "844": { - "Name": "Groovus Interruptus" - }, - "845": { - "Name": "Paris On Mine" - }, - "846": { - "Name": "In Time" - }, - "847": { - "Name": "Plan B" - }, - "848": { - "Name": "Outbreak" - }, - "849": { - "Name": "Baltimore, DC" - }, - "850": { - "Name": "Talkin Loud and Saying Nothin" - } - }, - "Title": "Outbreak" - } - }, - "Name": "Dennis Chambers" - } - }, - "69": { - "tracks": { - "852": { - "Composer": null, - "Name": "Meu Bem-Querer" - }, - "853": { - "Composer": null, - "Name": "Cigano" - }, - "854": { - "Composer": null, - "Name": "Boa Noite" - }, - "855": { - "Composer": null, - "Name": "Fato Consumado" - }, - "858": { - "Composer": null, - "Name": "Esquinas" - }, - "859": { - "Composer": null, - "Name": "Se..." - }, - "860": { - "Composer": null, - "Name": "Eu Te Devoro" - }, - "862": { - "Composer": null, - "Name": "Acelerou" - }, - "863": { - "Composer": null, - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 02", - "artist": { - "ArtistId": 80, - "albums": { - "69": { - "tracks": { - "852": { - "Name": "Meu Bem-Querer" - }, - "853": { - "Name": "Cigano" - }, - "854": { - "Name": "Boa Noite" - }, - "855": { - "Name": "Fato Consumado" - }, - "858": { - "Name": "Esquinas" - }, - "859": { - "Name": "Se..." - }, - "860": { - "Name": "Eu Te Devoro" - }, - "862": { - "Name": "Acelerou" - }, - "863": { - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "70": { - "tracks": { - "864": { - "Name": "Samurai" - }, - "865": { - "Name": "Nem Um Dia" - }, - "866": { - "Name": "Oceano" - }, - "868": { - "Name": "Serrado" - }, - "869": { - "Name": "Flor De Lis" - }, - "871": { - "Name": "Azul" - }, - "872": { - "Name": "Seduzir" - }, - "873": { - "Name": "A Carta" - }, - "874": { - "Name": "Sina" - }, - "875": { - "Name": "Acelerou" - }, - "876": { - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 1" - } - }, - "Name": "Djavan" - } - }, - "70": { - "tracks": { - "864": { - "Composer": "Djavan", - "Name": "Samurai" - }, - "865": { - "Composer": "Djavan", - "Name": "Nem Um Dia" - }, - "866": { - "Composer": "Djavan", - "Name": "Oceano" - }, - "868": { - "Composer": "Djavan", - "Name": "Serrado" - }, - "869": { - "Composer": "Djavan", - "Name": "Flor De Lis" - }, - "871": { - "Composer": "Djavan", - "Name": "Azul" - }, - "872": { - "Composer": "Djavan", - "Name": "Seduzir" - }, - "873": { - "Composer": "Djavan - Gabriel, O Pensador", - "Name": "A Carta" - }, - "874": { - "Composer": "Djavan", - "Name": "Sina" - }, - "875": { - "Composer": "Djavan", - "Name": "Acelerou" - }, - "876": { - "Composer": "Djavan", - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 1", - "artist": { - "ArtistId": 80, - "albums": { - "69": { - "tracks": { - "852": { - "Name": "Meu Bem-Querer" - }, - "853": { - "Name": "Cigano" - }, - "854": { - "Name": "Boa Noite" - }, - "855": { - "Name": "Fato Consumado" - }, - "858": { - "Name": "Esquinas" - }, - "859": { - "Name": "Se..." - }, - "860": { - "Name": "Eu Te Devoro" - }, - "862": { - "Name": "Acelerou" - }, - "863": { - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "70": { - "tracks": { - "864": { - "Name": "Samurai" - }, - "865": { - "Name": "Nem Um Dia" - }, - "866": { - "Name": "Oceano" - }, - "868": { - "Name": "Serrado" - }, - "869": { - "Name": "Flor De Lis" - }, - "871": { - "Name": "Azul" - }, - "872": { - "Name": "Seduzir" - }, - "873": { - "Name": "A Carta" - }, - "874": { - "Name": "Sina" - }, - "875": { - "Name": "Acelerou" - }, - "876": { - "Name": "Um Amor Puro" - } - }, - "Title": "Djavan Ao Vivo - Vol. 1" - } - }, - "Name": "Djavan" - } - }, - "72": { - "tracks": { - "891": { - "Composer": "Clapton/Gordon", - "Name": "Layla" - }, - "892": { - "Composer": "Clapton/Harrison", - "Name": "Badge" - }, - "893": { - "Composer": "Bruce/Clapton", - "Name": "I Feel Free" - }, - "894": { - "Composer": "Bruce/Clapton", - "Name": "Sunshine Of Your Love" - }, - "895": { - "Composer": "Clapton/Robert Johnson Arr: Eric Clapton", - "Name": "Crossroads" - }, - "896": { - "Composer": "Clapton/Collins/Pappalardi", - "Name": "Strange Brew" - }, - "897": { - "Composer": "Bruce/Clapton", - "Name": "White Room" - }, - "898": { - "Composer": "Clapton", - "Name": "Bell Bottom Blues" - }, - "899": { - "Composer": "Cale/Clapton", - "Name": "Cocaine" - }, - "900": { - "Composer": "Marley", - "Name": "I Shot The Sheriff" - }, - "901": { - "Composer": "Clapton/J. J. Cale", - "Name": "After Midnight" - }, - "902": { - "Composer": "Clapton/Trad. Arr. Clapton", - "Name": "Swing Low Sweet Chariot" - }, - "903": { - "Composer": "Clapton/Levy", - "Name": "Lay Down Sally" - }, - "904": { - "Composer": "Clapton/Dylan", - "Name": "Knockin On Heavens Door" - }, - "905": { - "Composer": "Clapton", - "Name": "Wonderful Tonight" - }, - "906": { - "Composer": "Clapton", - "Name": "Let It Grow" - }, - "907": { - "Composer": "Clapton/F.eldman/Linn", - "Name": "Promises" - }, - "908": { - "Composer": "Clapton", - "Name": "I Can't Stand It" - } - }, - "Title": "The Cream Of Clapton", - "artist": { - "ArtistId": 81, - "albums": { - "72": { - "tracks": { - "891": { - "Name": "Layla" - }, - "892": { - "Name": "Badge" - }, - "893": { - "Name": "I Feel Free" - }, - "894": { - "Name": "Sunshine Of Your Love" - }, - "895": { - "Name": "Crossroads" - }, - "896": { - "Name": "Strange Brew" - }, - "897": { - "Name": "White Room" - }, - "898": { - "Name": "Bell Bottom Blues" - }, - "899": { - "Name": "Cocaine" - }, - "900": { - "Name": "I Shot The Sheriff" - }, - "901": { - "Name": "After Midnight" - }, - "902": { - "Name": "Swing Low Sweet Chariot" - }, - "903": { - "Name": "Lay Down Sally" - }, - "904": { - "Name": "Knockin On Heavens Door" - }, - "905": { - "Name": "Wonderful Tonight" - }, - "906": { - "Name": "Let It Grow" - }, - "907": { - "Name": "Promises" - }, - "908": { - "Name": "I Can't Stand It" - } - }, - "Title": "The Cream Of Clapton" - }, - "73": { - "tracks": { - "909": { - "Name": "Signe" - }, - "910": { - "Name": "Before You Accuse Me" - }, - "911": { - "Name": "Hey Hey" - }, - "912": { - "Name": "Tears In Heaven" - }, - "913": { - "Name": "Lonely Stranger" - }, - "914": { - "Name": "Nobody Knows You When You're Down & Out" - }, - "915": { - "Name": "Layla" - }, - "916": { - "Name": "Running On Faith" - }, - "917": { - "Name": "Walkin' Blues" - }, - "918": { - "Name": "Alberta" - }, - "919": { - "Name": "San Francisco Bay Blues" - }, - "920": { - "Name": "Malted Milk" - }, - "921": { - "Name": "Old Love" - }, - "922": { - "Name": "Rollin' And Tumblin'" - }, - "1105": { - "Name": "A Novidade" - }, - "1106": { - "Name": "Tenho Sede" - }, - "1107": { - "Name": "Refazenda" - }, - "1108": { - "Name": "Realce" - }, - "1111": { - "Name": "A Paz" - }, - "1112": { - "Name": "Beira Mar" - }, - "1113": { - "Name": "Sampa" - }, - "1115": { - "Name": "Tempo Rei" - }, - "1116": { - "Name": "Expresso 2222" - }, - "1118": { - "Name": "Palco" - }, - "1119": { - "Name": "Toda Menina Baiana" - } - }, - "Title": "Unplugged" - } - }, - "Name": "Eric Clapton" - } - }, - "73": { - "tracks": { - "909": { - "Composer": "Eric Clapton", - "Name": "Signe" - }, - "910": { - "Composer": "Eugene McDaniel", - "Name": "Before You Accuse Me" - }, - "911": { - "Composer": "Big Bill Broonzy", - "Name": "Hey Hey" - }, - "912": { - "Composer": "Eric Clapton, Will Jennings", - "Name": "Tears In Heaven" - }, - "913": { - "Composer": "Eric Clapton", - "Name": "Lonely Stranger" - }, - "914": { - "Composer": "Jimmy Cox", - "Name": "Nobody Knows You When You're Down & Out" - }, - "915": { - "Composer": "Eric Clapton, Jim Gordon", - "Name": "Layla" - }, - "916": { - "Composer": "Jerry Lynn Williams", - "Name": "Running On Faith" - }, - "917": { - "Composer": "Robert Johnson", - "Name": "Walkin' Blues" - }, - "918": { - "Composer": "Traditional", - "Name": "Alberta" - }, - "919": { - "Composer": "Jesse Fuller", - "Name": "San Francisco Bay Blues" - }, - "920": { - "Composer": "Robert Johnson", - "Name": "Malted Milk" - }, - "921": { - "Composer": "Eric Clapton, Robert Cray", - "Name": "Old Love" - }, - "922": { - "Composer": "McKinley Morgenfield (Muddy Waters)", - "Name": "Rollin' And Tumblin'" - }, - "1105": { - "Composer": "Gilberto Gil", - "Name": "A Novidade" - }, - "1106": { - "Composer": "Gilberto Gil", - "Name": "Tenho Sede" - }, - "1107": { - "Composer": "Gilberto Gil", - "Name": "Refazenda" - }, - "1108": { - "Composer": "Gilberto Gil", - "Name": "Realce" - }, - "1111": { - "Composer": "Gilberto Gil", - "Name": "A Paz" - }, - "1112": { - "Composer": "Gilberto Gil", - "Name": "Beira Mar" - }, - "1113": { - "Composer": "Gilberto Gil", - "Name": "Sampa" - }, - "1115": { - "Composer": "Gilberto Gil", - "Name": "Tempo Rei" - }, - "1116": { - "Composer": "Gilberto Gil", - "Name": "Expresso 2222" - }, - "1118": { - "Composer": "Gilberto Gil", - "Name": "Palco" - }, - "1119": { - "Composer": "Gilberto Gil", - "Name": "Toda Menina Baiana" - } - }, - "Title": "Unplugged", - "artist": { - "ArtistId": 81, - "albums": { - "72": { - "tracks": { - "891": { - "Name": "Layla" - }, - "892": { - "Name": "Badge" - }, - "893": { - "Name": "I Feel Free" - }, - "894": { - "Name": "Sunshine Of Your Love" - }, - "895": { - "Name": "Crossroads" - }, - "896": { - "Name": "Strange Brew" - }, - "897": { - "Name": "White Room" - }, - "898": { - "Name": "Bell Bottom Blues" - }, - "899": { - "Name": "Cocaine" - }, - "900": { - "Name": "I Shot The Sheriff" - }, - "901": { - "Name": "After Midnight" - }, - "902": { - "Name": "Swing Low Sweet Chariot" - }, - "903": { - "Name": "Lay Down Sally" - }, - "904": { - "Name": "Knockin On Heavens Door" - }, - "905": { - "Name": "Wonderful Tonight" - }, - "906": { - "Name": "Let It Grow" - }, - "907": { - "Name": "Promises" - }, - "908": { - "Name": "I Can't Stand It" - } - }, - "Title": "The Cream Of Clapton" - }, - "73": { - "tracks": { - "909": { - "Name": "Signe" - }, - "910": { - "Name": "Before You Accuse Me" - }, - "911": { - "Name": "Hey Hey" - }, - "912": { - "Name": "Tears In Heaven" - }, - "913": { - "Name": "Lonely Stranger" - }, - "914": { - "Name": "Nobody Knows You When You're Down & Out" - }, - "915": { - "Name": "Layla" - }, - "916": { - "Name": "Running On Faith" - }, - "917": { - "Name": "Walkin' Blues" - }, - "918": { - "Name": "Alberta" - }, - "919": { - "Name": "San Francisco Bay Blues" - }, - "920": { - "Name": "Malted Milk" - }, - "921": { - "Name": "Old Love" - }, - "922": { - "Name": "Rollin' And Tumblin'" - }, - "1105": { - "Name": "A Novidade" - }, - "1106": { - "Name": "Tenho Sede" - }, - "1107": { - "Name": "Refazenda" - }, - "1108": { - "Name": "Realce" - }, - "1111": { - "Name": "A Paz" - }, - "1112": { - "Name": "Beira Mar" - }, - "1113": { - "Name": "Sampa" - }, - "1115": { - "Name": "Tempo Rei" - }, - "1116": { - "Name": "Expresso 2222" - }, - "1118": { - "Name": "Palco" - }, - "1119": { - "Name": "Toda Menina Baiana" - } - }, - "Title": "Unplugged" - } - }, - "Name": "Eric Clapton" - } - }, - "74": { - "tracks": { - "923": { - "Composer": "Jon Hudson/Mike Patton", - "Name": "Collision" - }, - "924": { - "Composer": "Jon Hudson/Mike Bordin/Mike Patton", - "Name": "Stripsearch" - }, - "925": { - "Composer": "Bill Gould/Mike Patton", - "Name": "Last Cup Of Sorrow" - }, - "926": { - "Composer": "Mike Patton", - "Name": "Naked In Front Of The Computer" - }, - "927": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Name": "Helpless" - }, - "928": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton", - "Name": "Mouth To Mouth" - }, - "929": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Name": "Ashes To Ashes" - }, - "930": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "Name": "She Loves Me Not" - }, - "931": { - "Composer": "Mike Patton", - "Name": "Got That Feeling" - }, - "932": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "Name": "Paths Of Glory" - }, - "933": { - "Composer": "Mike Patton", - "Name": "Home Sick Home" - }, - "934": { - "Composer": "Bill Gould/Mike Patton", - "Name": "Pristina" - } - }, - "Title": "Album Of The Year", - "artist": { - "ArtistId": 82, - "albums": { - "74": { - "tracks": { - "923": { - "Name": "Collision" - }, - "924": { - "Name": "Stripsearch" - }, - "925": { - "Name": "Last Cup Of Sorrow" - }, - "926": { - "Name": "Naked In Front Of The Computer" - }, - "927": { - "Name": "Helpless" - }, - "928": { - "Name": "Mouth To Mouth" - }, - "929": { - "Name": "Ashes To Ashes" - }, - "930": { - "Name": "She Loves Me Not" - }, - "931": { - "Name": "Got That Feeling" - }, - "932": { - "Name": "Paths Of Glory" - }, - "933": { - "Name": "Home Sick Home" - }, - "934": { - "Name": "Pristina" - } - }, - "Title": "Album Of The Year" - }, - "75": { - "tracks": { - "935": { - "Name": "Land Of Sunshine" - }, - "936": { - "Name": "Caffeine" - }, - "937": { - "Name": "Midlife Crisis" - }, - "938": { - "Name": "RV" - }, - "939": { - "Name": "Smaller And Smaller" - }, - "940": { - "Name": "Everything's Ruined" - }, - "941": { - "Name": "Malpractice" - }, - "942": { - "Name": "Kindergarten" - }, - "943": { - "Name": "Be Aggressive" - }, - "944": { - "Name": "A Small Victory" - }, - "945": { - "Name": "Crack Hitler" - }, - "946": { - "Name": "Jizzlobber" - }, - "947": { - "Name": "Midnight Cowboy" - }, - "948": { - "Name": "Easy" - } - }, - "Title": "Angel Dust" - }, - "76": { - "tracks": { - "949": { - "Name": "Get Out" - }, - "950": { - "Name": "Ricochet" - }, - "951": { - "Name": "Evidence" - }, - "952": { - "Name": "The Gentle Art Of Making Enemies" - }, - "953": { - "Name": "Star A.D." - }, - "954": { - "Name": "Cuckoo For Caca" - }, - "955": { - "Name": "Caralho Voador" - }, - "956": { - "Name": "Ugly In The Morning" - }, - "957": { - "Name": "Digging The Grave" - }, - "958": { - "Name": "Take This Bottle" - }, - "959": { - "Name": "King For A Day" - }, - "960": { - "Name": "What A Day" - }, - "961": { - "Name": "The Last To Know" - }, - "962": { - "Name": "Just A Man" - }, - "963": { - "Name": "Absolute Zero" - } - }, - "Title": "King For A Day Fool For A Lifetime" - }, - "77": { - "tracks": { - "964": { - "Name": "From Out Of Nowhere" - }, - "965": { - "Name": "Epic" - }, - "966": { - "Name": "Falling To Pieces" - }, - "967": { - "Name": "Surprise! You're Dead!" - }, - "968": { - "Name": "Zombie Eaters" - }, - "969": { - "Name": "The Real Thing" - }, - "970": { - "Name": "Underwater Love" - }, - "971": { - "Name": "The Morning After" - }, - "972": { - "Name": "Woodpecker From Mars" - }, - "973": { - "Name": "War Pigs" - }, - "974": { - "Name": "Edge Of The World" - } - }, - "Title": "The Real Thing" - } - }, - "Name": "Faith No More" - } - }, - "75": { - "tracks": { - "935": { - "Composer": null, - "Name": "Land Of Sunshine" - }, - "936": { - "Composer": null, - "Name": "Caffeine" - }, - "937": { - "Composer": null, - "Name": "Midlife Crisis" - }, - "938": { - "Composer": null, - "Name": "RV" - }, - "939": { - "Composer": null, - "Name": "Smaller And Smaller" - }, - "940": { - "Composer": null, - "Name": "Everything's Ruined" - }, - "941": { - "Composer": null, - "Name": "Malpractice" - }, - "942": { - "Composer": null, - "Name": "Kindergarten" - }, - "943": { - "Composer": null, - "Name": "Be Aggressive" - }, - "944": { - "Composer": null, - "Name": "A Small Victory" - }, - "945": { - "Composer": null, - "Name": "Crack Hitler" - }, - "946": { - "Composer": null, - "Name": "Jizzlobber" - }, - "947": { - "Composer": null, - "Name": "Midnight Cowboy" - }, - "948": { - "Composer": null, - "Name": "Easy" - } - }, - "Title": "Angel Dust", - "artist": { - "ArtistId": 82, - "albums": { - "74": { - "tracks": { - "923": { - "Name": "Collision" - }, - "924": { - "Name": "Stripsearch" - }, - "925": { - "Name": "Last Cup Of Sorrow" - }, - "926": { - "Name": "Naked In Front Of The Computer" - }, - "927": { - "Name": "Helpless" - }, - "928": { - "Name": "Mouth To Mouth" - }, - "929": { - "Name": "Ashes To Ashes" - }, - "930": { - "Name": "She Loves Me Not" - }, - "931": { - "Name": "Got That Feeling" - }, - "932": { - "Name": "Paths Of Glory" - }, - "933": { - "Name": "Home Sick Home" - }, - "934": { - "Name": "Pristina" - } - }, - "Title": "Album Of The Year" - }, - "75": { - "tracks": { - "935": { - "Name": "Land Of Sunshine" - }, - "936": { - "Name": "Caffeine" - }, - "937": { - "Name": "Midlife Crisis" - }, - "938": { - "Name": "RV" - }, - "939": { - "Name": "Smaller And Smaller" - }, - "940": { - "Name": "Everything's Ruined" - }, - "941": { - "Name": "Malpractice" - }, - "942": { - "Name": "Kindergarten" - }, - "943": { - "Name": "Be Aggressive" - }, - "944": { - "Name": "A Small Victory" - }, - "945": { - "Name": "Crack Hitler" - }, - "946": { - "Name": "Jizzlobber" - }, - "947": { - "Name": "Midnight Cowboy" - }, - "948": { - "Name": "Easy" - } - }, - "Title": "Angel Dust" - }, - "76": { - "tracks": { - "949": { - "Name": "Get Out" - }, - "950": { - "Name": "Ricochet" - }, - "951": { - "Name": "Evidence" - }, - "952": { - "Name": "The Gentle Art Of Making Enemies" - }, - "953": { - "Name": "Star A.D." - }, - "954": { - "Name": "Cuckoo For Caca" - }, - "955": { - "Name": "Caralho Voador" - }, - "956": { - "Name": "Ugly In The Morning" - }, - "957": { - "Name": "Digging The Grave" - }, - "958": { - "Name": "Take This Bottle" - }, - "959": { - "Name": "King For A Day" - }, - "960": { - "Name": "What A Day" - }, - "961": { - "Name": "The Last To Know" - }, - "962": { - "Name": "Just A Man" - }, - "963": { - "Name": "Absolute Zero" - } - }, - "Title": "King For A Day Fool For A Lifetime" - }, - "77": { - "tracks": { - "964": { - "Name": "From Out Of Nowhere" - }, - "965": { - "Name": "Epic" - }, - "966": { - "Name": "Falling To Pieces" - }, - "967": { - "Name": "Surprise! You're Dead!" - }, - "968": { - "Name": "Zombie Eaters" - }, - "969": { - "Name": "The Real Thing" - }, - "970": { - "Name": "Underwater Love" - }, - "971": { - "Name": "The Morning After" - }, - "972": { - "Name": "Woodpecker From Mars" - }, - "973": { - "Name": "War Pigs" - }, - "974": { - "Name": "Edge Of The World" - } - }, - "Title": "The Real Thing" - } - }, - "Name": "Faith No More" - } - }, - "76": { - "tracks": { - "949": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Get Out" - }, - "950": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Ricochet" - }, - "951": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Evidence" - }, - "952": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "The Gentle Art Of Making Enemies" - }, - "953": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Star A.D." - }, - "954": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Cuckoo For Caca" - }, - "955": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Caralho Voador" - }, - "956": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Ugly In The Morning" - }, - "957": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Digging The Grave" - }, - "958": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "Take This Bottle" - }, - "959": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "Name": "King For A Day" - }, - "960": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "What A Day" - }, - "961": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "The Last To Know" - }, - "962": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Just A Man" - }, - "963": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "Name": "Absolute Zero" - } - }, - "Title": "King For A Day Fool For A Lifetime", - "artist": { - "ArtistId": 82, - "albums": { - "74": { - "tracks": { - "923": { - "Name": "Collision" - }, - "924": { - "Name": "Stripsearch" - }, - "925": { - "Name": "Last Cup Of Sorrow" - }, - "926": { - "Name": "Naked In Front Of The Computer" - }, - "927": { - "Name": "Helpless" - }, - "928": { - "Name": "Mouth To Mouth" - }, - "929": { - "Name": "Ashes To Ashes" - }, - "930": { - "Name": "She Loves Me Not" - }, - "931": { - "Name": "Got That Feeling" - }, - "932": { - "Name": "Paths Of Glory" - }, - "933": { - "Name": "Home Sick Home" - }, - "934": { - "Name": "Pristina" - } - }, - "Title": "Album Of The Year" - }, - "75": { - "tracks": { - "935": { - "Name": "Land Of Sunshine" - }, - "936": { - "Name": "Caffeine" - }, - "937": { - "Name": "Midlife Crisis" - }, - "938": { - "Name": "RV" - }, - "939": { - "Name": "Smaller And Smaller" - }, - "940": { - "Name": "Everything's Ruined" - }, - "941": { - "Name": "Malpractice" - }, - "942": { - "Name": "Kindergarten" - }, - "943": { - "Name": "Be Aggressive" - }, - "944": { - "Name": "A Small Victory" - }, - "945": { - "Name": "Crack Hitler" - }, - "946": { - "Name": "Jizzlobber" - }, - "947": { - "Name": "Midnight Cowboy" - }, - "948": { - "Name": "Easy" - } - }, - "Title": "Angel Dust" - }, - "76": { - "tracks": { - "949": { - "Name": "Get Out" - }, - "950": { - "Name": "Ricochet" - }, - "951": { - "Name": "Evidence" - }, - "952": { - "Name": "The Gentle Art Of Making Enemies" - }, - "953": { - "Name": "Star A.D." - }, - "954": { - "Name": "Cuckoo For Caca" - }, - "955": { - "Name": "Caralho Voador" - }, - "956": { - "Name": "Ugly In The Morning" - }, - "957": { - "Name": "Digging The Grave" - }, - "958": { - "Name": "Take This Bottle" - }, - "959": { - "Name": "King For A Day" - }, - "960": { - "Name": "What A Day" - }, - "961": { - "Name": "The Last To Know" - }, - "962": { - "Name": "Just A Man" - }, - "963": { - "Name": "Absolute Zero" - } - }, - "Title": "King For A Day Fool For A Lifetime" - }, - "77": { - "tracks": { - "964": { - "Name": "From Out Of Nowhere" - }, - "965": { - "Name": "Epic" - }, - "966": { - "Name": "Falling To Pieces" - }, - "967": { - "Name": "Surprise! You're Dead!" - }, - "968": { - "Name": "Zombie Eaters" - }, - "969": { - "Name": "The Real Thing" - }, - "970": { - "Name": "Underwater Love" - }, - "971": { - "Name": "The Morning After" - }, - "972": { - "Name": "Woodpecker From Mars" - }, - "973": { - "Name": "War Pigs" - }, - "974": { - "Name": "Edge Of The World" - } - }, - "Title": "The Real Thing" - } - }, - "Name": "Faith No More" - } - }, - "77": { - "tracks": { - "964": { - "Composer": "Faith No More", - "Name": "From Out Of Nowhere" - }, - "965": { - "Composer": "Faith No More", - "Name": "Epic" - }, - "966": { - "Composer": "Faith No More", - "Name": "Falling To Pieces" - }, - "967": { - "Composer": "Faith No More", - "Name": "Surprise! You're Dead!" - }, - "968": { - "Composer": "Faith No More", - "Name": "Zombie Eaters" - }, - "969": { - "Composer": "Faith No More", - "Name": "The Real Thing" - }, - "970": { - "Composer": "Faith No More", - "Name": "Underwater Love" - }, - "971": { - "Composer": "Faith No More", - "Name": "The Morning After" - }, - "972": { - "Composer": "Faith No More", - "Name": "Woodpecker From Mars" - }, - "973": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "Name": "War Pigs" - }, - "974": { - "Composer": "Faith No More", - "Name": "Edge Of The World" - } - }, - "Title": "The Real Thing", - "artist": { - "ArtistId": 82, - "albums": { - "74": { - "tracks": { - "923": { - "Name": "Collision" - }, - "924": { - "Name": "Stripsearch" - }, - "925": { - "Name": "Last Cup Of Sorrow" - }, - "926": { - "Name": "Naked In Front Of The Computer" - }, - "927": { - "Name": "Helpless" - }, - "928": { - "Name": "Mouth To Mouth" - }, - "929": { - "Name": "Ashes To Ashes" - }, - "930": { - "Name": "She Loves Me Not" - }, - "931": { - "Name": "Got That Feeling" - }, - "932": { - "Name": "Paths Of Glory" - }, - "933": { - "Name": "Home Sick Home" - }, - "934": { - "Name": "Pristina" - } - }, - "Title": "Album Of The Year" - }, - "75": { - "tracks": { - "935": { - "Name": "Land Of Sunshine" - }, - "936": { - "Name": "Caffeine" - }, - "937": { - "Name": "Midlife Crisis" - }, - "938": { - "Name": "RV" - }, - "939": { - "Name": "Smaller And Smaller" - }, - "940": { - "Name": "Everything's Ruined" - }, - "941": { - "Name": "Malpractice" - }, - "942": { - "Name": "Kindergarten" - }, - "943": { - "Name": "Be Aggressive" - }, - "944": { - "Name": "A Small Victory" - }, - "945": { - "Name": "Crack Hitler" - }, - "946": { - "Name": "Jizzlobber" - }, - "947": { - "Name": "Midnight Cowboy" - }, - "948": { - "Name": "Easy" - } - }, - "Title": "Angel Dust" - }, - "76": { - "tracks": { - "949": { - "Name": "Get Out" - }, - "950": { - "Name": "Ricochet" - }, - "951": { - "Name": "Evidence" - }, - "952": { - "Name": "The Gentle Art Of Making Enemies" - }, - "953": { - "Name": "Star A.D." - }, - "954": { - "Name": "Cuckoo For Caca" - }, - "955": { - "Name": "Caralho Voador" - }, - "956": { - "Name": "Ugly In The Morning" - }, - "957": { - "Name": "Digging The Grave" - }, - "958": { - "Name": "Take This Bottle" - }, - "959": { - "Name": "King For A Day" - }, - "960": { - "Name": "What A Day" - }, - "961": { - "Name": "The Last To Know" - }, - "962": { - "Name": "Just A Man" - }, - "963": { - "Name": "Absolute Zero" - } - }, - "Title": "King For A Day Fool For A Lifetime" - }, - "77": { - "tracks": { - "964": { - "Name": "From Out Of Nowhere" - }, - "965": { - "Name": "Epic" - }, - "966": { - "Name": "Falling To Pieces" - }, - "967": { - "Name": "Surprise! You're Dead!" - }, - "968": { - "Name": "Zombie Eaters" - }, - "969": { - "Name": "The Real Thing" - }, - "970": { - "Name": "Underwater Love" - }, - "971": { - "Name": "The Morning After" - }, - "972": { - "Name": "Woodpecker From Mars" - }, - "973": { - "Name": "War Pigs" - }, - "974": { - "Name": "Edge Of The World" - } - }, - "Title": "The Real Thing" - } - }, - "Name": "Faith No More" - } - }, - "78": { - "tracks": { - "975": { - "Composer": null, - "Name": "Deixa Entrar" - }, - "976": { - "Composer": null, - "Name": "Falamansa Song" - }, - "977": { - "Composer": null, - "Name": "Xote Dos Milagres" - }, - "981": { - "Composer": null, - "Name": "Zeca Violeiro" - }, - "982": { - "Composer": null, - "Name": "Avisa" - }, - "983": { - "Composer": null, - "Name": "Principiando/Decolagem" - }, - "984": { - "Composer": null, - "Name": "Asas" - }, - "985": { - "Composer": null, - "Name": "Medo De Escuro" - }, - "987": { - "Composer": null, - "Name": "Minha Gata" - }, - "988": { - "Composer": null, - "Name": "Desaforo" - } - }, - "Title": "Deixa Entrar", - "artist": { - "ArtistId": 83, - "albums": { - "78": { - "tracks": { - "975": { - "Name": "Deixa Entrar" - }, - "976": { - "Name": "Falamansa Song" - }, - "977": { - "Name": "Xote Dos Milagres" - }, - "981": { - "Name": "Zeca Violeiro" - }, - "982": { - "Name": "Avisa" - }, - "983": { - "Name": "Principiando/Decolagem" - }, - "984": { - "Name": "Asas" - }, - "985": { - "Name": "Medo De Escuro" - }, - "987": { - "Name": "Minha Gata" - }, - "988": { - "Name": "Desaforo" - } - }, - "Title": "Deixa Entrar" - } - }, - "Name": "Falamansa" - } - }, - "79": { - "tracks": { - "989": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "In Your Honor" - }, - "990": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "No Way Back" - }, - "991": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Best Of You" - }, - "992": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "DOA" - }, - "993": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Hell" - }, - "994": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "The Last Song" - }, - "995": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Free Me" - }, - "996": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "Resolve" - }, - "997": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "The Deepest Blues Are Black" - }, - "998": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "Name": "End Over End" - } - }, - "Title": "In Your Honor [Disc 1]", - "artist": { - "ArtistId": 84, - "albums": { - "79": { - "tracks": { - "989": { - "Name": "In Your Honor" - }, - "990": { - "Name": "No Way Back" - }, - "991": { - "Name": "Best Of You" - }, - "992": { - "Name": "DOA" - }, - "993": { - "Name": "Hell" - }, - "994": { - "Name": "The Last Song" - }, - "995": { - "Name": "Free Me" - }, - "996": { - "Name": "Resolve" - }, - "997": { - "Name": "The Deepest Blues Are Black" - }, - "998": { - "Name": "End Over End" - } - }, - "Title": "In Your Honor [Disc 1]" - }, - "80": { - "tracks": { - "999": { - "Name": "Still" - }, - "1000": { - "Name": "What If I Do?" - }, - "1001": { - "Name": "Miracle" - }, - "1002": { - "Name": "Another Round" - }, - "1003": { - "Name": "Friend Of A Friend" - }, - "1004": { - "Name": "Over And Out" - }, - "1005": { - "Name": "On The Mend" - }, - "1006": { - "Name": "Virginia Moon" - }, - "1007": { - "Name": "Cold Day In The Sun" - }, - "1008": { - "Name": "Razor" - } - }, - "Title": "In Your Honor [Disc 2]" - }, - "81": { - "tracks": { - "1009": { - "Name": "All My Life" - }, - "1010": { - "Name": "Low" - }, - "1011": { - "Name": "Have It All" - }, - "1012": { - "Name": "Times Like These" - }, - "1013": { - "Name": "Disenchanted Lullaby" - }, - "1014": { - "Name": "Tired Of You" - }, - "1015": { - "Name": "Halo" - }, - "1016": { - "Name": "Lonely As You" - }, - "1017": { - "Name": "Overdrive" - }, - "1018": { - "Name": "Burn Away" - }, - "1019": { - "Name": "Come Back" - } - }, - "Title": "One By One" - }, - "82": { - "tracks": { - "1020": { - "Name": "Doll" - }, - "1021": { - "Name": "Monkey Wrench" - }, - "1022": { - "Name": "Hey, Johnny Park!" - }, - "1023": { - "Name": "My Poor Brain" - }, - "1024": { - "Name": "Wind Up" - }, - "1025": { - "Name": "Up In Arms" - }, - "1026": { - "Name": "My Hero" - }, - "1027": { - "Name": "See You" - }, - "1028": { - "Name": "Enough Space" - }, - "1029": { - "Name": "February Stars" - }, - "1030": { - "Name": "Everlong" - }, - "1031": { - "Name": "Walking After You" - }, - "1032": { - "Name": "New Way Home" - } - }, - "Title": "The Colour And The Shape" - } - }, - "Name": "Foo Fighters" - } - }, - "80": { - "tracks": { - "999": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Still" - }, - "1000": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "What If I Do?" - }, - "1001": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Miracle" - }, - "1002": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Another Round" - }, - "1003": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Friend Of A Friend" - }, - "1004": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Over And Out" - }, - "1005": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "On The Mend" - }, - "1006": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Virginia Moon" - }, - "1007": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Cold Day In The Sun" - }, - "1008": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "Name": "Razor" - } - }, - "Title": "In Your Honor [Disc 2]", - "artist": { - "ArtistId": 84, - "albums": { - "79": { - "tracks": { - "989": { - "Name": "In Your Honor" - }, - "990": { - "Name": "No Way Back" - }, - "991": { - "Name": "Best Of You" - }, - "992": { - "Name": "DOA" - }, - "993": { - "Name": "Hell" - }, - "994": { - "Name": "The Last Song" - }, - "995": { - "Name": "Free Me" - }, - "996": { - "Name": "Resolve" - }, - "997": { - "Name": "The Deepest Blues Are Black" - }, - "998": { - "Name": "End Over End" - } - }, - "Title": "In Your Honor [Disc 1]" - }, - "80": { - "tracks": { - "999": { - "Name": "Still" - }, - "1000": { - "Name": "What If I Do?" - }, - "1001": { - "Name": "Miracle" - }, - "1002": { - "Name": "Another Round" - }, - "1003": { - "Name": "Friend Of A Friend" - }, - "1004": { - "Name": "Over And Out" - }, - "1005": { - "Name": "On The Mend" - }, - "1006": { - "Name": "Virginia Moon" - }, - "1007": { - "Name": "Cold Day In The Sun" - }, - "1008": { - "Name": "Razor" - } - }, - "Title": "In Your Honor [Disc 2]" - }, - "81": { - "tracks": { - "1009": { - "Name": "All My Life" - }, - "1010": { - "Name": "Low" - }, - "1011": { - "Name": "Have It All" - }, - "1012": { - "Name": "Times Like These" - }, - "1013": { - "Name": "Disenchanted Lullaby" - }, - "1014": { - "Name": "Tired Of You" - }, - "1015": { - "Name": "Halo" - }, - "1016": { - "Name": "Lonely As You" - }, - "1017": { - "Name": "Overdrive" - }, - "1018": { - "Name": "Burn Away" - }, - "1019": { - "Name": "Come Back" - } - }, - "Title": "One By One" - }, - "82": { - "tracks": { - "1020": { - "Name": "Doll" - }, - "1021": { - "Name": "Monkey Wrench" - }, - "1022": { - "Name": "Hey, Johnny Park!" - }, - "1023": { - "Name": "My Poor Brain" - }, - "1024": { - "Name": "Wind Up" - }, - "1025": { - "Name": "Up In Arms" - }, - "1026": { - "Name": "My Hero" - }, - "1027": { - "Name": "See You" - }, - "1028": { - "Name": "Enough Space" - }, - "1029": { - "Name": "February Stars" - }, - "1030": { - "Name": "Everlong" - }, - "1031": { - "Name": "Walking After You" - }, - "1032": { - "Name": "New Way Home" - } - }, - "Title": "The Colour And The Shape" - } - }, - "Name": "Foo Fighters" - } - }, - "81": { - "tracks": { - "1009": { - "Composer": "Foo Fighters", - "Name": "All My Life" - }, - "1010": { - "Composer": "Foo Fighters", - "Name": "Low" - }, - "1011": { - "Composer": "Foo Fighters", - "Name": "Have It All" - }, - "1012": { - "Composer": "Foo Fighters", - "Name": "Times Like These" - }, - "1013": { - "Composer": "Foo Fighters", - "Name": "Disenchanted Lullaby" - }, - "1014": { - "Composer": "Foo Fighters", - "Name": "Tired Of You" - }, - "1015": { - "Composer": "Foo Fighters", - "Name": "Halo" - }, - "1016": { - "Composer": "Foo Fighters", - "Name": "Lonely As You" - }, - "1017": { - "Composer": "Foo Fighters", - "Name": "Overdrive" - }, - "1018": { - "Composer": "Foo Fighters", - "Name": "Burn Away" - }, - "1019": { - "Composer": "Foo Fighters", - "Name": "Come Back" - } - }, - "Title": "One By One", - "artist": { - "ArtistId": 84, - "albums": { - "79": { - "tracks": { - "989": { - "Name": "In Your Honor" - }, - "990": { - "Name": "No Way Back" - }, - "991": { - "Name": "Best Of You" - }, - "992": { - "Name": "DOA" - }, - "993": { - "Name": "Hell" - }, - "994": { - "Name": "The Last Song" - }, - "995": { - "Name": "Free Me" - }, - "996": { - "Name": "Resolve" - }, - "997": { - "Name": "The Deepest Blues Are Black" - }, - "998": { - "Name": "End Over End" - } - }, - "Title": "In Your Honor [Disc 1]" - }, - "80": { - "tracks": { - "999": { - "Name": "Still" - }, - "1000": { - "Name": "What If I Do?" - }, - "1001": { - "Name": "Miracle" - }, - "1002": { - "Name": "Another Round" - }, - "1003": { - "Name": "Friend Of A Friend" - }, - "1004": { - "Name": "Over And Out" - }, - "1005": { - "Name": "On The Mend" - }, - "1006": { - "Name": "Virginia Moon" - }, - "1007": { - "Name": "Cold Day In The Sun" - }, - "1008": { - "Name": "Razor" - } - }, - "Title": "In Your Honor [Disc 2]" - }, - "81": { - "tracks": { - "1009": { - "Name": "All My Life" - }, - "1010": { - "Name": "Low" - }, - "1011": { - "Name": "Have It All" - }, - "1012": { - "Name": "Times Like These" - }, - "1013": { - "Name": "Disenchanted Lullaby" - }, - "1014": { - "Name": "Tired Of You" - }, - "1015": { - "Name": "Halo" - }, - "1016": { - "Name": "Lonely As You" - }, - "1017": { - "Name": "Overdrive" - }, - "1018": { - "Name": "Burn Away" - }, - "1019": { - "Name": "Come Back" - } - }, - "Title": "One By One" - }, - "82": { - "tracks": { - "1020": { - "Name": "Doll" - }, - "1021": { - "Name": "Monkey Wrench" - }, - "1022": { - "Name": "Hey, Johnny Park!" - }, - "1023": { - "Name": "My Poor Brain" - }, - "1024": { - "Name": "Wind Up" - }, - "1025": { - "Name": "Up In Arms" - }, - "1026": { - "Name": "My Hero" - }, - "1027": { - "Name": "See You" - }, - "1028": { - "Name": "Enough Space" - }, - "1029": { - "Name": "February Stars" - }, - "1030": { - "Name": "Everlong" - }, - "1031": { - "Name": "Walking After You" - }, - "1032": { - "Name": "New Way Home" - } - }, - "Title": "The Colour And The Shape" - } - }, - "Name": "Foo Fighters" - } - }, - "82": { - "tracks": { - "1020": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Doll" - }, - "1021": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Monkey Wrench" - }, - "1022": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Hey, Johnny Park!" - }, - "1023": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "My Poor Brain" - }, - "1024": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Wind Up" - }, - "1025": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "Up In Arms" - }, - "1026": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "My Hero" - }, - "1027": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "See You" - }, - "1028": { - "Composer": "Dave Grohl", - "Name": "Enough Space" - }, - "1029": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "February Stars" - }, - "1030": { - "Composer": "Dave Grohl", - "Name": "Everlong" - }, - "1031": { - "Composer": "Dave Grohl", - "Name": "Walking After You" - }, - "1032": { - "Composer": "Dave, Taylor, Nate, Chris", - "Name": "New Way Home" - } - }, - "Title": "The Colour And The Shape", - "artist": { - "ArtistId": 84, - "albums": { - "79": { - "tracks": { - "989": { - "Name": "In Your Honor" - }, - "990": { - "Name": "No Way Back" - }, - "991": { - "Name": "Best Of You" - }, - "992": { - "Name": "DOA" - }, - "993": { - "Name": "Hell" - }, - "994": { - "Name": "The Last Song" - }, - "995": { - "Name": "Free Me" - }, - "996": { - "Name": "Resolve" - }, - "997": { - "Name": "The Deepest Blues Are Black" - }, - "998": { - "Name": "End Over End" - } - }, - "Title": "In Your Honor [Disc 1]" - }, - "80": { - "tracks": { - "999": { - "Name": "Still" - }, - "1000": { - "Name": "What If I Do?" - }, - "1001": { - "Name": "Miracle" - }, - "1002": { - "Name": "Another Round" - }, - "1003": { - "Name": "Friend Of A Friend" - }, - "1004": { - "Name": "Over And Out" - }, - "1005": { - "Name": "On The Mend" - }, - "1006": { - "Name": "Virginia Moon" - }, - "1007": { - "Name": "Cold Day In The Sun" - }, - "1008": { - "Name": "Razor" - } - }, - "Title": "In Your Honor [Disc 2]" - }, - "81": { - "tracks": { - "1009": { - "Name": "All My Life" - }, - "1010": { - "Name": "Low" - }, - "1011": { - "Name": "Have It All" - }, - "1012": { - "Name": "Times Like These" - }, - "1013": { - "Name": "Disenchanted Lullaby" - }, - "1014": { - "Name": "Tired Of You" - }, - "1015": { - "Name": "Halo" - }, - "1016": { - "Name": "Lonely As You" - }, - "1017": { - "Name": "Overdrive" - }, - "1018": { - "Name": "Burn Away" - }, - "1019": { - "Name": "Come Back" - } - }, - "Title": "One By One" - }, - "82": { - "tracks": { - "1020": { - "Name": "Doll" - }, - "1021": { - "Name": "Monkey Wrench" - }, - "1022": { - "Name": "Hey, Johnny Park!" - }, - "1023": { - "Name": "My Poor Brain" - }, - "1024": { - "Name": "Wind Up" - }, - "1025": { - "Name": "Up In Arms" - }, - "1026": { - "Name": "My Hero" - }, - "1027": { - "Name": "See You" - }, - "1028": { - "Name": "Enough Space" - }, - "1029": { - "Name": "February Stars" - }, - "1030": { - "Name": "Everlong" - }, - "1031": { - "Name": "Walking After You" - }, - "1032": { - "Name": "New Way Home" - } - }, - "Title": "The Colour And The Shape" - } - }, - "Name": "Foo Fighters" - } - }, - "83": { - "tracks": { - "1034": { - "Composer": "berthold kaempfert/charles singleton/eddie snyder", - "Name": "Strangers In The Night" - }, - "1035": { - "Composer": "fred ebb/john kander", - "Name": "New York, New York" - }, - "1036": { - "Composer": "cole porter", - "Name": "I Get A Kick Out Of You" - }, - "1037": { - "Composer": "carson c. parks", - "Name": "Something Stupid" - }, - "1038": { - "Composer": "henry mancini/johnny mercer", - "Name": "Moon River" - }, - "1039": { - "Composer": "carl sigman/gilbert becaud/pierre leroyer", - "Name": "What Now My Love" - }, - "1040": { - "Composer": "hans bradtke/heinz meier/johnny mercer", - "Name": "Summer Love" - }, - "1041": { - "Composer": "orlando murden/ronald miller", - "Name": "For Once In My Life" - }, - "1042": { - "Composer": "jimmy van heusen/sammy cahn", - "Name": "Love And Marriage" - }, - "1043": { - "Composer": "george gershwin/ira gershwin", - "Name": "They Can't Take That Away From Me" - }, - "1044": { - "Composer": "jimmy van heusen/sammy cahn", - "Name": "My Kind Of Town" - }, - "1045": { - "Composer": "bart howard", - "Name": "Fly Me To The Moon" - }, - "1046": { - "Composer": "cole porter", - "Name": "I've Got You Under My Skin" - }, - "1047": { - "Composer": "carolyn leigh/cy coleman", - "Name": "The Best Is Yet To Come" - }, - "1048": { - "Composer": "ervin drake", - "Name": "It Was A Very Good Year" - }, - "1049": { - "Composer": "jimmy van heusen/sammy cahn", - "Name": "Come Fly With Me" - }, - "1050": { - "Composer": "dean kay thompson/kelly gordon", - "Name": "That's Life" - }, - "1051": { - "Composer": "antonio carlos jobim/norman gimbel/vinicius de moraes", - "Name": "The Girl From Ipanema" - }, - "1052": { - "Composer": "lorenz hart/richard rodgers", - "Name": "The Lady Is A Tramp" - }, - "1053": { - "Composer": "jim croce", - "Name": "Bad, Bad Leroy Brown" - }, - "1054": { - "Composer": "bert brecht/kurt weill/marc blitzstein", - "Name": "Mack The Knife" - }, - "1055": { - "Composer": "rod mckuen", - "Name": "Loves Been Good To Me" - }, - "1056": { - "Composer": "alan bergman/marilyn bergman/peggy lipton jones/quincy jones", - "Name": "L.A. Is My Lady" - } - }, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]", - "artist": { - "ArtistId": 85, - "albums": { - "83": { - "tracks": { - "1034": { - "Name": "Strangers In The Night" - }, - "1035": { - "Name": "New York, New York" - }, - "1036": { - "Name": "I Get A Kick Out Of You" - }, - "1037": { - "Name": "Something Stupid" - }, - "1038": { - "Name": "Moon River" - }, - "1039": { - "Name": "What Now My Love" - }, - "1040": { - "Name": "Summer Love" - }, - "1041": { - "Name": "For Once In My Life" - }, - "1042": { - "Name": "Love And Marriage" - }, - "1043": { - "Name": "They Can't Take That Away From Me" - }, - "1044": { - "Name": "My Kind Of Town" - }, - "1045": { - "Name": "Fly Me To The Moon" - }, - "1046": { - "Name": "I've Got You Under My Skin" - }, - "1047": { - "Name": "The Best Is Yet To Come" - }, - "1048": { - "Name": "It Was A Very Good Year" - }, - "1049": { - "Name": "Come Fly With Me" - }, - "1050": { - "Name": "That's Life" - }, - "1051": { - "Name": "The Girl From Ipanema" - }, - "1052": { - "Name": "The Lady Is A Tramp" - }, - "1053": { - "Name": "Bad, Bad Leroy Brown" - }, - "1054": { - "Name": "Mack The Knife" - }, - "1055": { - "Name": "Loves Been Good To Me" - }, - "1056": { - "Name": "L.A. Is My Lady" - } - }, - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - } - }, - "Name": "Frank Sinatra" - } - }, - "84": { - "tracks": { - "1057": { - "Composer": null, - "Name": "Entrando Na Sua (Intro)" - }, - "1058": { - "Composer": null, - "Name": "Nervosa" - }, - "1059": { - "Composer": null, - "Name": "Funk De Bamba (Com Fernanda Abreu)" - }, - "1063": { - "Composer": null, - "Name": "Funk Hum" - }, - "1064": { - "Composer": null, - "Name": "Forty Days (Com DJ Hum)" - }, - "1065": { - "Composer": "Emerson Villani", - "Name": "Balada Da Paula" - }, - "1066": { - "Composer": null, - "Name": "Dujji" - }, - "1067": { - "Composer": null, - "Name": "Meu Guarda-Chuva" - }, - "1069": { - "Composer": null, - "Name": "Whistle Stop" - }, - "1070": { - "Composer": null, - "Name": "16 Toneladas" - }, - "1071": { - "Composer": null, - "Name": "Divirta-Se (Saindo Da Sua)" - }, - "1072": { - "Composer": null, - "Name": "Forty Days Instrumental" - } - }, - "Title": "Roda De Funk", - "artist": { - "ArtistId": 86, - "albums": { - "84": { - "tracks": { - "1057": { - "Name": "Entrando Na Sua (Intro)" - }, - "1058": { - "Name": "Nervosa" - }, - "1059": { - "Name": "Funk De Bamba (Com Fernanda Abreu)" - }, - "1063": { - "Name": "Funk Hum" - }, - "1064": { - "Name": "Forty Days (Com DJ Hum)" - }, - "1065": { - "Name": "Balada Da Paula" - }, - "1066": { - "Name": "Dujji" - }, - "1067": { - "Name": "Meu Guarda-Chuva" - }, - "1069": { - "Name": "Whistle Stop" - }, - "1070": { - "Name": "16 Toneladas" - }, - "1071": { - "Name": "Divirta-Se (Saindo Da Sua)" - }, - "1072": { - "Name": "Forty Days Instrumental" - } - }, - "Title": "Roda De Funk" - } - }, - "Name": "Funk Como Le Gusta" - } - }, - "86": { - "tracks": { - "1088": { - "Composer": null, - "Name": "Palco (Live)" - }, - "1089": { - "Composer": null, - "Name": "Is This Love (Live)" - }, - "1090": { - "Composer": null, - "Name": "Stir It Up (Live)" - }, - "1091": { - "Composer": null, - "Name": "Refavela (Live)" - }, - "1092": { - "Composer": null, - "Name": "Vendedor De Caranguejo (Live)" - }, - "1093": { - "Composer": null, - "Name": "Quanta (Live)" - }, - "1094": { - "Composer": null, - "Name": "Estrela (Live)" - }, - "1095": { - "Composer": null, - "Name": "Pela Internet (Live)" - }, - "1098": { - "Composer": null, - "Name": "Copacabana (Live)" - }, - "1099": { - "Composer": null, - "Name": "A Novidade (Live)" - }, - "1100": { - "Composer": null, - "Name": "Ghandi (Live)" - }, - "1101": { - "Composer": null, - "Name": "De Ouro E Marfim (Live)" - } - }, - "Title": "Quanta Gente Veio Ver (Live)", - "artist": { - "ArtistId": 27, - "albums": { - "86": { - "tracks": { - "1088": { - "Name": "Palco (Live)" - }, - "1089": { - "Name": "Is This Love (Live)" - }, - "1090": { - "Name": "Stir It Up (Live)" - }, - "1091": { - "Name": "Refavela (Live)" - }, - "1092": { - "Name": "Vendedor De Caranguejo (Live)" - }, - "1093": { - "Name": "Quanta (Live)" - }, - "1094": { - "Name": "Estrela (Live)" - }, - "1095": { - "Name": "Pela Internet (Live)" - }, - "1098": { - "Name": "Copacabana (Live)" - }, - "1099": { - "Name": "A Novidade (Live)" - }, - "1100": { - "Name": "Ghandi (Live)" - }, - "1101": { - "Name": "De Ouro E Marfim (Live)" - } - }, - "Title": "Quanta Gente Veio Ver (Live)" - } - }, - "Name": "Gilberto Gil" - } - }, - "88": { - "tracks": { - "1121": { - "Composer": "Sully Erna", - "Name": "Straight Out Of Line" - }, - "1122": { - "Composer": "Sully Erna", - "Name": "Faceless" - }, - "1123": { - "Composer": "Sully Erna; Tony Rombola", - "Name": "Changes" - }, - "1124": { - "Composer": "Sully Erna", - "Name": "Make Me Believe" - }, - "1125": { - "Composer": "Sully Erna", - "Name": "I Stand Alone" - }, - "1126": { - "Composer": "Sully Erna", - "Name": "Re-Align" - }, - "1127": { - "Composer": "Sully Erna", - "Name": "I Fucking Hate You" - }, - "1128": { - "Composer": "Sully Erna", - "Name": "Releasing The Demons" - }, - "1129": { - "Composer": "Sully Erna", - "Name": "Dead And Broken" - }, - "1130": { - "Composer": "Sully Erna", - "Name": "I Am" - }, - "1131": { - "Composer": "Sully Erna", - "Name": "The Awakening" - }, - "1132": { - "Composer": "Sully Erna; Tony Rombola", - "Name": "Serenity" - } - }, - "Title": "Faceless", - "artist": { - "ArtistId": 87, - "albums": { - "88": { - "tracks": { - "1121": { - "Name": "Straight Out Of Line" - }, - "1122": { - "Name": "Faceless" - }, - "1123": { - "Name": "Changes" - }, - "1124": { - "Name": "Make Me Believe" - }, - "1125": { - "Name": "I Stand Alone" - }, - "1126": { - "Name": "Re-Align" - }, - "1127": { - "Name": "I Fucking Hate You" - }, - "1128": { - "Name": "Releasing The Demons" - }, - "1129": { - "Name": "Dead And Broken" - }, - "1130": { - "Name": "I Am" - }, - "1131": { - "Name": "The Awakening" - }, - "1132": { - "Name": "Serenity" - } - }, - "Title": "Faceless" - } - }, - "Name": "Godsmack" - } - }, - "89": { - "tracks": { - "1134": { - "Composer": "Billie Joe Armstrong/Green Day", - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home" - }, - "1137": { - "Composer": "Green Day", - "Name": "Are We The Waiting" - }, - "1138": { - "Composer": "Green Day", - "Name": "St. Jimmy" - }, - "1139": { - "Composer": "Green Day", - "Name": "Give Me Novacaine" - }, - "1140": { - "Composer": "Green Day", - "Name": "She's A Rebel" - }, - "1141": { - "Composer": "Green Day", - "Name": "Extraordinary Girl" - }, - "1142": { - "Composer": "Green Day", - "Name": "Letterbomb" - }, - "1145": { - "Composer": "Green Day", - "Name": "Whatsername" - } - }, - "Title": "American Idiot", - "artist": { - "ArtistId": 54, - "albums": { - "39": { - "tracks": { - "468": { - "Name": "Maria" - }, - "469": { - "Name": "Poprocks And Coke" - }, - "470": { - "Name": "Longview" - }, - "471": { - "Name": "Welcome To Paradise" - }, - "472": { - "Name": "Basket Case" - }, - "473": { - "Name": "When I Come Around" - }, - "474": { - "Name": "She" - }, - "475": { - "Name": "J.A.R. (Jason Andrew Relva)" - }, - "476": { - "Name": "Geek Stink Breath" - }, - "477": { - "Name": "Brain Stew" - }, - "478": { - "Name": "Jaded" - }, - "479": { - "Name": "Walking Contradiction" - }, - "480": { - "Name": "Stuck With Me" - }, - "481": { - "Name": "Hitchin' A Ride" - }, - "482": { - "Name": "Good Riddance (Time Of Your Life)" - }, - "483": { - "Name": "Redundant" - }, - "484": { - "Name": "Nice Guys Finish Last" - }, - "485": { - "Name": "Minority" - }, - "486": { - "Name": "Warning" - }, - "487": { - "Name": "Waiting" - }, - "488": { - "Name": "Macy's Day Parade" - } - }, - "Title": "International Superhits" - }, - "89": { - "tracks": { - "1134": { - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home" - }, - "1137": { - "Name": "Are We The Waiting" - }, - "1138": { - "Name": "St. Jimmy" - }, - "1139": { - "Name": "Give Me Novacaine" - }, - "1140": { - "Name": "She's A Rebel" - }, - "1141": { - "Name": "Extraordinary Girl" - }, - "1142": { - "Name": "Letterbomb" - }, - "1145": { - "Name": "Whatsername" - } - }, - "Title": "American Idiot" - } - }, - "Name": "Green Day" - } - }, - "90": { - "tracks": { - "1146": { - "Composer": null, - "Name": "Welcome to the Jungle" - }, - "1147": { - "Composer": null, - "Name": "It's So Easy" - }, - "1148": { - "Composer": null, - "Name": "Nightrain" - }, - "1149": { - "Composer": null, - "Name": "Out Ta Get Me" - }, - "1150": { - "Composer": null, - "Name": "Mr. Brownstone" - }, - "1151": { - "Composer": null, - "Name": "Paradise City" - }, - "1152": { - "Composer": null, - "Name": "My Michelle" - }, - "1153": { - "Composer": null, - "Name": "Think About You" - }, - "1154": { - "Composer": null, - "Name": "Sweet Child O' Mine" - }, - "1155": { - "Composer": null, - "Name": "You're Crazy" - }, - "1156": { - "Composer": null, - "Name": "Anything Goes" - }, - "1157": { - "Composer": null, - "Name": "Rocket Queen" - } - }, - "Title": "Appetite for Destruction", - "artist": { - "ArtistId": 88, - "albums": { - "90": { - "tracks": { - "1146": { - "Name": "Welcome to the Jungle" - }, - "1147": { - "Name": "It's So Easy" - }, - "1148": { - "Name": "Nightrain" - }, - "1149": { - "Name": "Out Ta Get Me" - }, - "1150": { - "Name": "Mr. Brownstone" - }, - "1151": { - "Name": "Paradise City" - }, - "1152": { - "Name": "My Michelle" - }, - "1153": { - "Name": "Think About You" - }, - "1154": { - "Name": "Sweet Child O' Mine" - }, - "1155": { - "Name": "You're Crazy" - }, - "1156": { - "Name": "Anything Goes" - }, - "1157": { - "Name": "Rocket Queen" - } - }, - "Title": "Appetite for Destruction" - }, - "91": { - "tracks": { - "1158": { - "Name": "Right Next Door to Hell" - }, - "1159": { - "Name": "Dust N' Bones" - }, - "1160": { - "Name": "Live and Let Die" - }, - "1161": { - "Name": "Don't Cry (Original)" - }, - "1162": { - "Name": "Perfect Crime" - }, - "1163": { - "Name": "You Ain't the First" - }, - "1164": { - "Name": "Bad Obsession" - }, - "1165": { - "Name": "Back off Bitch" - }, - "1166": { - "Name": "Double Talkin' Jive" - }, - "1167": { - "Name": "November Rain" - }, - "1168": { - "Name": "The Garden" - }, - "1169": { - "Name": "Garden of Eden" - }, - "1170": { - "Name": "Don't Damn Me" - }, - "1171": { - "Name": "Bad Apples" - }, - "1172": { - "Name": "Dead Horse" - }, - "1173": { - "Name": "Coma" - } - }, - "Title": "Use Your Illusion I" - }, - "92": { - "tracks": { - "1174": { - "Name": "Civil War" - }, - "1175": { - "Name": "14 Years" - }, - "1176": { - "Name": "Yesterdays" - }, - "1177": { - "Name": "Knockin' On Heaven's Door" - }, - "1178": { - "Name": "Get In The Ring" - }, - "1179": { - "Name": "Shotgun Blues" - }, - "1180": { - "Name": "Breakdown" - }, - "1181": { - "Name": "Pretty Tied Up" - }, - "1182": { - "Name": "Locomotive" - }, - "1183": { - "Name": "So Fine" - }, - "1184": { - "Name": "Estranged" - }, - "1185": { - "Name": "You Could Be Mine" - }, - "1186": { - "Name": "Don't Cry" - }, - "1187": { - "Name": "My World" - } - }, - "Title": "Use Your Illusion II" - } - }, - "Name": "Guns N' Roses" - } - }, - "91": { - "tracks": { - "1158": { - "Composer": null, - "Name": "Right Next Door to Hell" - }, - "1159": { - "Composer": null, - "Name": "Dust N' Bones" - }, - "1160": { - "Composer": null, - "Name": "Live and Let Die" - }, - "1161": { - "Composer": null, - "Name": "Don't Cry (Original)" - }, - "1162": { - "Composer": null, - "Name": "Perfect Crime" - }, - "1163": { - "Composer": null, - "Name": "You Ain't the First" - }, - "1164": { - "Composer": null, - "Name": "Bad Obsession" - }, - "1165": { - "Composer": null, - "Name": "Back off Bitch" - }, - "1166": { - "Composer": null, - "Name": "Double Talkin' Jive" - }, - "1167": { - "Composer": null, - "Name": "November Rain" - }, - "1168": { - "Composer": null, - "Name": "The Garden" - }, - "1169": { - "Composer": null, - "Name": "Garden of Eden" - }, - "1170": { - "Composer": null, - "Name": "Don't Damn Me" - }, - "1171": { - "Composer": null, - "Name": "Bad Apples" - }, - "1172": { - "Composer": null, - "Name": "Dead Horse" - }, - "1173": { - "Composer": null, - "Name": "Coma" - } - }, - "Title": "Use Your Illusion I", - "artist": { - "ArtistId": 88, - "albums": { - "90": { - "tracks": { - "1146": { - "Name": "Welcome to the Jungle" - }, - "1147": { - "Name": "It's So Easy" - }, - "1148": { - "Name": "Nightrain" - }, - "1149": { - "Name": "Out Ta Get Me" - }, - "1150": { - "Name": "Mr. Brownstone" - }, - "1151": { - "Name": "Paradise City" - }, - "1152": { - "Name": "My Michelle" - }, - "1153": { - "Name": "Think About You" - }, - "1154": { - "Name": "Sweet Child O' Mine" - }, - "1155": { - "Name": "You're Crazy" - }, - "1156": { - "Name": "Anything Goes" - }, - "1157": { - "Name": "Rocket Queen" - } - }, - "Title": "Appetite for Destruction" - }, - "91": { - "tracks": { - "1158": { - "Name": "Right Next Door to Hell" - }, - "1159": { - "Name": "Dust N' Bones" - }, - "1160": { - "Name": "Live and Let Die" - }, - "1161": { - "Name": "Don't Cry (Original)" - }, - "1162": { - "Name": "Perfect Crime" - }, - "1163": { - "Name": "You Ain't the First" - }, - "1164": { - "Name": "Bad Obsession" - }, - "1165": { - "Name": "Back off Bitch" - }, - "1166": { - "Name": "Double Talkin' Jive" - }, - "1167": { - "Name": "November Rain" - }, - "1168": { - "Name": "The Garden" - }, - "1169": { - "Name": "Garden of Eden" - }, - "1170": { - "Name": "Don't Damn Me" - }, - "1171": { - "Name": "Bad Apples" - }, - "1172": { - "Name": "Dead Horse" - }, - "1173": { - "Name": "Coma" - } - }, - "Title": "Use Your Illusion I" - }, - "92": { - "tracks": { - "1174": { - "Name": "Civil War" - }, - "1175": { - "Name": "14 Years" - }, - "1176": { - "Name": "Yesterdays" - }, - "1177": { - "Name": "Knockin' On Heaven's Door" - }, - "1178": { - "Name": "Get In The Ring" - }, - "1179": { - "Name": "Shotgun Blues" - }, - "1180": { - "Name": "Breakdown" - }, - "1181": { - "Name": "Pretty Tied Up" - }, - "1182": { - "Name": "Locomotive" - }, - "1183": { - "Name": "So Fine" - }, - "1184": { - "Name": "Estranged" - }, - "1185": { - "Name": "You Could Be Mine" - }, - "1186": { - "Name": "Don't Cry" - }, - "1187": { - "Name": "My World" - } - }, - "Title": "Use Your Illusion II" - } - }, - "Name": "Guns N' Roses" - } - }, - "92": { - "tracks": { - "1174": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Name": "Civil War" - }, - "1175": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Name": "14 Years" - }, - "1176": { - "Composer": "Billy/Del James/W. Axl Rose/West Arkeen", - "Name": "Yesterdays" - }, - "1177": { - "Composer": "Bob Dylan", - "Name": "Knockin' On Heaven's Door" - }, - "1178": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "Name": "Get In The Ring" - }, - "1179": { - "Composer": "W. Axl Rose", - "Name": "Shotgun Blues" - }, - "1180": { - "Composer": "W. Axl Rose", - "Name": "Breakdown" - }, - "1181": { - "Composer": "Izzy Stradlin'", - "Name": "Pretty Tied Up" - }, - "1182": { - "Composer": "Slash/W. Axl Rose", - "Name": "Locomotive" - }, - "1183": { - "Composer": "Duff McKagan", - "Name": "So Fine" - }, - "1184": { - "Composer": "W. Axl Rose", - "Name": "Estranged" - }, - "1185": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Name": "You Could Be Mine" - }, - "1186": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "Name": "Don't Cry" - }, - "1187": { - "Composer": "W. Axl Rose", - "Name": "My World" - } - }, - "Title": "Use Your Illusion II", - "artist": { - "ArtistId": 88, - "albums": { - "90": { - "tracks": { - "1146": { - "Name": "Welcome to the Jungle" - }, - "1147": { - "Name": "It's So Easy" - }, - "1148": { - "Name": "Nightrain" - }, - "1149": { - "Name": "Out Ta Get Me" - }, - "1150": { - "Name": "Mr. Brownstone" - }, - "1151": { - "Name": "Paradise City" - }, - "1152": { - "Name": "My Michelle" - }, - "1153": { - "Name": "Think About You" - }, - "1154": { - "Name": "Sweet Child O' Mine" - }, - "1155": { - "Name": "You're Crazy" - }, - "1156": { - "Name": "Anything Goes" - }, - "1157": { - "Name": "Rocket Queen" - } - }, - "Title": "Appetite for Destruction" - }, - "91": { - "tracks": { - "1158": { - "Name": "Right Next Door to Hell" - }, - "1159": { - "Name": "Dust N' Bones" - }, - "1160": { - "Name": "Live and Let Die" - }, - "1161": { - "Name": "Don't Cry (Original)" - }, - "1162": { - "Name": "Perfect Crime" - }, - "1163": { - "Name": "You Ain't the First" - }, - "1164": { - "Name": "Bad Obsession" - }, - "1165": { - "Name": "Back off Bitch" - }, - "1166": { - "Name": "Double Talkin' Jive" - }, - "1167": { - "Name": "November Rain" - }, - "1168": { - "Name": "The Garden" - }, - "1169": { - "Name": "Garden of Eden" - }, - "1170": { - "Name": "Don't Damn Me" - }, - "1171": { - "Name": "Bad Apples" - }, - "1172": { - "Name": "Dead Horse" - }, - "1173": { - "Name": "Coma" - } - }, - "Title": "Use Your Illusion I" - }, - "92": { - "tracks": { - "1174": { - "Name": "Civil War" - }, - "1175": { - "Name": "14 Years" - }, - "1176": { - "Name": "Yesterdays" - }, - "1177": { - "Name": "Knockin' On Heaven's Door" - }, - "1178": { - "Name": "Get In The Ring" - }, - "1179": { - "Name": "Shotgun Blues" - }, - "1180": { - "Name": "Breakdown" - }, - "1181": { - "Name": "Pretty Tied Up" - }, - "1182": { - "Name": "Locomotive" - }, - "1183": { - "Name": "So Fine" - }, - "1184": { - "Name": "Estranged" - }, - "1185": { - "Name": "You Could Be Mine" - }, - "1186": { - "Name": "Don't Cry" - }, - "1187": { - "Name": "My World" - } - }, - "Title": "Use Your Illusion II" - } - }, - "Name": "Guns N' Roses" - } - }, - "93": { - "tracks": { - "1188": { - "Composer": "Richard Bull", - "Name": "Colibri" - }, - "1189": { - "Composer": "R. Carless", - "Name": "Love Is The Colour" - }, - "1190": { - "Composer": "Patrick Claher/Richard Bull", - "Name": "Magnetic Ocean" - }, - "1191": { - "Composer": "Richard Bull", - "Name": "Deep Waters" - }, - "1192": { - "Composer": "Kevin Robinson/Richard Bull", - "Name": "L'Arc En Ciel De Miles" - }, - "1193": { - "Composer": "Kevin Robinson", - "Name": "Gypsy" - }, - "1194": { - "Composer": "Jean Paul Maunick", - "Name": "Journey Into Sunlight" - }, - "1195": { - "Composer": "Graham Harvey", - "Name": "Sunchild" - }, - "1196": { - "Composer": "Maxton Gig Beesley Jnr.", - "Name": "Millenium" - }, - "1197": { - "Composer": "Fayyaz Virgi/Richard Bull", - "Name": "Thinking 'Bout Tomorrow" - }, - "1198": { - "Composer": "Julian Crampton", - "Name": "Jacob's Ladder" - }, - "1199": { - "Composer": "G Harvey/R Hope-Taylor", - "Name": "She Wears Black" - }, - "1200": { - "Composer": "Jean Paul Maunick", - "Name": "Dark Side Of The Cog" - } - }, - "Title": "Blue Moods", - "artist": { - "ArtistId": 89, - "albums": { - "93": { - "tracks": { - "1188": { - "Name": "Colibri" - }, - "1189": { - "Name": "Love Is The Colour" - }, - "1190": { - "Name": "Magnetic Ocean" - }, - "1191": { - "Name": "Deep Waters" - }, - "1192": { - "Name": "L'Arc En Ciel De Miles" - }, - "1193": { - "Name": "Gypsy" - }, - "1194": { - "Name": "Journey Into Sunlight" - }, - "1195": { - "Name": "Sunchild" - }, - "1196": { - "Name": "Millenium" - }, - "1197": { - "Name": "Thinking 'Bout Tomorrow" - }, - "1198": { - "Name": "Jacob's Ladder" - }, - "1199": { - "Name": "She Wears Black" - }, - "1200": { - "Name": "Dark Side Of The Cog" - } - }, - "Title": "Blue Moods" - } - }, - "Name": "Incognito" - } - }, - "94": { - "tracks": { - "1201": { - "Composer": null, - "Name": "Different World" - }, - "1202": { - "Composer": null, - "Name": "These Colours Don't Run" - }, - "1203": { - "Composer": null, - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Composer": null, - "Name": "The Pilgrim" - }, - "1205": { - "Composer": null, - "Name": "The Longest Day" - }, - "1206": { - "Composer": null, - "Name": "Out of the Shadows" - }, - "1207": { - "Composer": null, - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Composer": null, - "Name": "For the Greater Good of God" - }, - "1209": { - "Composer": null, - "Name": "Lord of Light" - }, - "1210": { - "Composer": null, - "Name": "The Legacy" - }, - "1211": { - "Composer": null, - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "95": { - "tracks": { - "1212": { - "Composer": "Steve Harris", - "Name": "The Number Of The Beast" - }, - "1213": { - "Composer": "Steve Harris", - "Name": "The Trooper" - }, - "1214": { - "Composer": "Steve Harris", - "Name": "Prowler" - }, - "1215": { - "Composer": "Steve Harris", - "Name": "Transylvania" - }, - "1216": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Remember Tomorrow" - }, - "1217": { - "Composer": "Steve Harris", - "Name": "Where Eagles Dare" - }, - "1218": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "Sanctuary" - }, - "1219": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Running Free" - }, - "1220": { - "Composer": "Steve Harris", - "Name": "Run To The Hilss" - }, - "1221": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Composer": "Steve Harris", - "Name": "Iron Maiden" - }, - "1223": { - "Composer": "Steve Harris", - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "96": { - "tracks": { - "1224": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Composer": "Steve Harris", - "Name": "From Here To Eternity" - }, - "1226": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Can I Play With Madness" - }, - "1227": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Wasting Love" - }, - "1228": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Tailgunner" - }, - "1229": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Evil That Men Do" - }, - "1230": { - "Composer": "Steve Harris", - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Composer": "Bruce Dickinson", - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Composer": "Steve Harris", - "Name": "Heaven Can Wait" - }, - "1233": { - "Composer": "Steve Harris", - "Name": "The Clairvoyant" - }, - "1234": { - "Composer": "Steve Harris", - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "97": { - "tracks": { - "1235": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Wicker Man" - }, - "1236": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Brave New World" - }, - "1238": { - "Composer": "Steve Harris", - "Name": "Blood Brothers" - }, - "1239": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Mercenary" - }, - "1240": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Dream Of Mirrors" - }, - "1241": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "The Fallen Angel" - }, - "1242": { - "Composer": "David Murray/Steve Harris", - "Name": "The Nomad" - }, - "1243": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Composer": "David Murray/Steve Harris", - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "98": { - "tracks": { - "1245": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "Wildest Dreams" - }, - "1246": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Rainmaker" - }, - "1247": { - "Composer": "Steve Harris", - "Name": "No More Lies" - }, - "1248": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Montsegur" - }, - "1249": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Dance Of Death" - }, - "1250": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Composer": "Adrian Smith/Bruce Dickinson/Nicko McBrain", - "Name": "New Frontier" - }, - "1252": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "Paschendale" - }, - "1253": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Face In The Sand" - }, - "1254": { - "Composer": "David Murray/Steve Harris", - "Name": "Age Of Innocence" - }, - "1255": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "99": { - "tracks": { - "1256": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Composer": "Steve Harris", - "Name": "From Here To Eternity" - }, - "1258": { - "Composer": "Steve Harris", - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Fear Is The Key" - }, - "1260": { - "Composer": "Steve Harris", - "Name": "Childhood's End" - }, - "1261": { - "Composer": "Bruce Dickinson/Janick Gers", - "Name": "Wasting Love" - }, - "1262": { - "Composer": "Steve Harris", - "Name": "The Fugitive" - }, - "1263": { - "Composer": "Bruce Dickinson/David Murray", - "Name": "Chains Of Misery" - }, - "1264": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Apparition" - }, - "1265": { - "Composer": "Bruce Dickinson/David Murray", - "Name": "Judas Be My Guide" - }, - "1266": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Weekend Warrior" - }, - "1267": { - "Composer": "Steve Harris", - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "100": { - "tracks": { - "1268": { - "Composer": "Steve Harris", - "Name": "01 - Prowler" - }, - "1269": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "02 - Sanctuary" - }, - "1272": { - "Composer": "Steve Harris", - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Composer": "Steve Harris", - "Name": "06 - Transylvania" - }, - "1274": { - "Composer": "Steve Harris", - "Name": "07 - Strange World" - }, - "1275": { - "Composer": "Murray Dave", - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Composer": "Steve Harris", - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "101": { - "tracks": { - "1277": { - "Composer": "Steve Harris", - "Name": "The Ides Of March" - }, - "1278": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "1279": { - "Composer": "Steve Harris", - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Composer": "Steve Harris", - "Name": "Another Life" - }, - "1281": { - "Composer": "Steve Harris", - "Name": "Genghis Khan" - }, - "1283": { - "Composer": "Steve Harris", - "Name": "Killers" - }, - "1284": { - "Composer": "Steve Harris", - "Name": "Prodigal Son" - }, - "1285": { - "Composer": "Steve Harris", - "Name": "Purgatory" - }, - "1286": { - "Composer": "Steve Harris", - "Name": "Drifter" - } - }, - "Title": "Killers", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "102": { - "tracks": { - "1287": { - "Composer": null, - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Composer": null, - "Name": "Aces High" - }, - "1289": { - "Composer": "Smith/Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Composer": "Harris", - "Name": "The Trooper" - }, - "1291": { - "Composer": "Dickinson", - "Name": "Revelations" - }, - "1292": { - "Composer": "Smith/Dickinson", - "Name": "Flight Of Icarus" - }, - "1293": { - "Composer": null, - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Composer": null, - "Name": "Powerslave" - }, - "1295": { - "Composer": "Harris", - "Name": "The Number Of The Beast" - }, - "1296": { - "Composer": "Harris", - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Composer": "Harris", - "Name": "Iron Maiden" - }, - "1298": { - "Composer": "Harris", - "Name": "Run To The Hills" - }, - "1299": { - "Composer": "Harris/Di Anno", - "Name": "Running Free" - }, - "1300": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "1301": { - "Composer": null, - "Name": "Acacia Avenue" - }, - "1302": { - "Composer": "Steve Harris", - "Name": "Children Of The Damned" - }, - "1303": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Die With Your Boots On" - }, - "1304": { - "Composer": "Steve Harris", - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "103": { - "tracks": { - "1305": { - "Composer": null, - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Composer": null, - "Name": "The Number Of The Beast" - }, - "1307": { - "Composer": null, - "Name": "Wrathchild" - }, - "1308": { - "Composer": null, - "Name": "From Here To Eternity" - }, - "1309": { - "Composer": null, - "Name": "Can I Play With Madness" - }, - "1310": { - "Composer": null, - "Name": "Wasting Love" - }, - "1311": { - "Composer": null, - "Name": "Tailgunner" - }, - "1312": { - "Composer": null, - "Name": "The Evil That Men Do" - }, - "1313": { - "Composer": null, - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Composer": null, - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "104": { - "tracks": { - "1315": { - "Composer": null, - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Composer": null, - "Name": "The Clairvoyant" - }, - "1317": { - "Composer": null, - "Name": "Heaven Can Wait" - }, - "1318": { - "Composer": null, - "Name": "Run To The Hills" - }, - "1319": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Composer": null, - "Name": "Iron Maiden" - }, - "1321": { - "Composer": null, - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Composer": null, - "Name": "The Trooper" - }, - "1323": { - "Composer": null, - "Name": "Sanctuary" - }, - "1324": { - "Composer": null, - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "105": { - "tracks": { - "1325": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Tailgunner" - }, - "1326": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Holy Smoke" - }, - "1327": { - "Composer": "Steve Harris", - "Name": "No Prayer For The Dying" - }, - "1328": { - "Composer": "Bruce Dickinson/David Murray", - "Name": "Public Enema Number One" - }, - "1329": { - "Composer": "David Murray/Steve Harris", - "Name": "Fates Warning" - }, - "1330": { - "Composer": "Steve Harris", - "Name": "The Assassin" - }, - "1331": { - "Composer": "Bruce Dickinson/Steve Harris", - "Name": "Run Silent Run Deep" - }, - "1332": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "Hooks In You" - }, - "1333": { - "Composer": "Bruce Dickinson", - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Composer": "Steve Harris", - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "106": { - "tracks": { - "1335": { - "Composer": "Steve Harris", - "Name": "Where Eagles Dare" - }, - "1336": { - "Composer": "Bruce Dickinson", - "Name": "Revelations" - }, - "1337": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "Flight Of The Icarus" - }, - "1338": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "Die With Your Boots On" - }, - "1339": { - "Composer": "Steve Harris", - "Name": "The Trooper" - }, - "1340": { - "Composer": "David Murray/Steve Harris", - "Name": "Still Life" - }, - "1341": { - "Composer": "Steve Harris", - "Name": "Quest For Fire" - }, - "1342": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "Sun And Steel" - }, - "1343": { - "Composer": "Steve Harris", - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "107": { - "tracks": { - "1344": { - "Composer": "Harris", - "Name": "Aces High" - }, - "1345": { - "Composer": "Smith/Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Composer": "Steve Harris", - "Name": "Losfer Words" - }, - "1347": { - "Composer": "Dickinson", - "Name": "Flash of The Blade" - }, - "1348": { - "Composer": "Steve Harris", - "Name": "Duelists" - }, - "1349": { - "Composer": "Dickinson/Smith", - "Name": "Back in the Village" - }, - "1350": { - "Composer": "Dickinson", - "Name": "Powerslave" - }, - "1351": { - "Composer": "Harris", - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "108": { - "tracks": { - "1352": { - "Composer": null, - "Name": "Intro" - }, - "1353": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Wicker Man" - }, - "1354": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "Name": "Brave New World" - }, - "1356": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "1357": { - "Composer": "Adrian Smith/Bruce Dickinson", - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Composer": "Steve Harris", - "Name": "Blood Brothers" - }, - "1359": { - "Composer": "Steve Harris", - "Name": "Sign Of The Cross" - }, - "1360": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Mercenary" - }, - "1361": { - "Composer": "Steve Harris", - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "109": { - "tracks": { - "1362": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Dream Of Mirrors" - }, - "1363": { - "Composer": "Steve Harris", - "Name": "The Clansman" - }, - "1364": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "Name": "The Evil That Men Do" - }, - "1365": { - "Composer": "Steve Harris", - "Name": "Fear Of The Dark" - }, - "1366": { - "Composer": "Steve Harris", - "Name": "Iron Maiden" - }, - "1367": { - "Composer": "Steve Harris", - "Name": "The Number Of The Beast" - }, - "1368": { - "Composer": "Steve Harris", - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "Sanctuary" - }, - "1370": { - "Composer": "Steve Harris", - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "110": { - "tracks": { - "1371": { - "Composer": "Adrian Smith; Bruce Dickinson", - "Name": "Moonchild" - }, - "1372": { - "Composer": "Steve Harris", - "Name": "Infinite Dreams" - }, - "1373": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Name": "Can I Play With Madness" - }, - "1374": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Name": "The Evil That Men Do" - }, - "1375": { - "Composer": "Steve Harris", - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Composer": "Dave Murray; Steve Harris", - "Name": "The Prophecy" - }, - "1377": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "Name": "The Clairvoyant" - }, - "1378": { - "Composer": "Bruce Dickinson; Harris", - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "111": { - "tracks": { - "1379": { - "Composer": "Steve Harris", - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Composer": "Adrian Smith", - "Name": "Wasted Years" - }, - "1381": { - "Composer": "Adrian Smith", - "Name": "Sea of Madness" - }, - "1382": { - "Composer": "Steve Harris", - "Name": "Heaven Can Wait" - }, - "1383": { - "Composer": "Adrian Smith", - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Composer": "Steve Harris", - "Name": "Alexander the Great" - }, - "1385": { - "Composer": "David Murray/Steve Harris", - "Name": "De Ja Vu" - }, - "1386": { - "Composer": "Steve Harris", - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "112": { - "tracks": { - "1387": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "22 Acacia Avenue" - }, - "1388": { - "Composer": "Steve Harris", - "Name": "Children of the Damned" - }, - "1389": { - "Composer": "Adrian Smith/Clive Burr/Steve Harris", - "Name": "Gangland" - }, - "1390": { - "Composer": "Steve Harris", - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Composer": "Steve Harris", - "Name": "Invaders" - }, - "1392": { - "Composer": "Steve Harris", - "Name": "Run to the Hills" - }, - "1393": { - "Composer": "Steve Harris", - "Name": "The Number Of The Beast" - }, - "1394": { - "Composer": "Adrian Smith/Steve Harris", - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "113": { - "tracks": { - "1395": { - "Composer": "Steve Harris", - "Name": "Sign Of The Cross" - }, - "1396": { - "Composer": "Janick Gers/Steve Harris", - "Name": "Lord Of The Flies" - }, - "1397": { - "Composer": "Blaze Bayley/Janick Gers", - "Name": "Man On The Edge" - }, - "1398": { - "Composer": "Steve Harris", - "Name": "Fortunes Of War" - }, - "1399": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "Look For The Truth" - }, - "1400": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "The Aftermath" - }, - "1401": { - "Composer": "Steve Harris", - "Name": "Judgement Of Heaven" - }, - "1402": { - "Composer": "Steve Harris", - "Name": "Blood On The World's Hands" - }, - "1403": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "The Edge Of Darkness" - }, - "1404": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "Name": "2 A.M." - }, - "1405": { - "Composer": "Janick Gers/Steve Harris", - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "114": { - "tracks": { - "1406": { - "Composer": "Blaze Bayley/Steve Harris", - "Name": "Futureal" - }, - "1407": { - "Composer": "Steve Harris", - "Name": "The Angel And The Gambler" - }, - "1408": { - "Composer": "David Murray/Steve Harris", - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Composer": "Steve Harris", - "Name": "The Clansman" - }, - "1410": { - "Composer": "Blaze Bayley/David Murray/Steve Harris", - "Name": "When Two Worlds Collide" - }, - "1411": { - "Composer": "Steve Harris", - "Name": "The Educated Fool" - }, - "1412": { - "Composer": "Steve Harris", - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Composer": "Blaze Bayley/Janick Gers", - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI", - "artist": { - "ArtistId": 90, - "albums": { - "94": { - "tracks": { - "1201": { - "Name": "Different World" - }, - "1202": { - "Name": "These Colours Don't Run" - }, - "1203": { - "Name": "Brighter Than a Thousand Suns" - }, - "1204": { - "Name": "The Pilgrim" - }, - "1205": { - "Name": "The Longest Day" - }, - "1206": { - "Name": "Out of the Shadows" - }, - "1207": { - "Name": "The Reincarnation of Benjamin Breeg" - }, - "1208": { - "Name": "For the Greater Good of God" - }, - "1209": { - "Name": "Lord of Light" - }, - "1210": { - "Name": "The Legacy" - }, - "1211": { - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]" - } - }, - "Title": "A Matter of Life and Death" - }, - "95": { - "tracks": { - "1212": { - "Name": "The Number Of The Beast" - }, - "1213": { - "Name": "The Trooper" - }, - "1214": { - "Name": "Prowler" - }, - "1215": { - "Name": "Transylvania" - }, - "1216": { - "Name": "Remember Tomorrow" - }, - "1217": { - "Name": "Where Eagles Dare" - }, - "1218": { - "Name": "Sanctuary" - }, - "1219": { - "Name": "Running Free" - }, - "1220": { - "Name": "Run To The Hilss" - }, - "1221": { - "Name": "2 Minutes To Midnight" - }, - "1222": { - "Name": "Iron Maiden" - }, - "1223": { - "Name": "Hallowed Be Thy Name" - } - }, - "Title": "A Real Dead One" - }, - "96": { - "tracks": { - "1224": { - "Name": "Be Quick Or Be Dead" - }, - "1225": { - "Name": "From Here To Eternity" - }, - "1226": { - "Name": "Can I Play With Madness" - }, - "1227": { - "Name": "Wasting Love" - }, - "1228": { - "Name": "Tailgunner" - }, - "1229": { - "Name": "The Evil That Men Do" - }, - "1230": { - "Name": "Afraid To Shoot Strangers" - }, - "1231": { - "Name": "Bring Your Daughter... To The Slaughter" - }, - "1232": { - "Name": "Heaven Can Wait" - }, - "1233": { - "Name": "The Clairvoyant" - }, - "1234": { - "Name": "Fear Of The Dark" - } - }, - "Title": "A Real Live One" - }, - "97": { - "tracks": { - "1235": { - "Name": "The Wicker Man" - }, - "1236": { - "Name": "Ghost Of The Navigator" - }, - "1237": { - "Name": "Brave New World" - }, - "1238": { - "Name": "Blood Brothers" - }, - "1239": { - "Name": "The Mercenary" - }, - "1240": { - "Name": "Dream Of Mirrors" - }, - "1241": { - "Name": "The Fallen Angel" - }, - "1242": { - "Name": "The Nomad" - }, - "1243": { - "Name": "Out Of The Silent Planet" - }, - "1244": { - "Name": "The Thin Line Between Love & Hate" - } - }, - "Title": "Brave New World" - }, - "98": { - "tracks": { - "1245": { - "Name": "Wildest Dreams" - }, - "1246": { - "Name": "Rainmaker" - }, - "1247": { - "Name": "No More Lies" - }, - "1248": { - "Name": "Montsegur" - }, - "1249": { - "Name": "Dance Of Death" - }, - "1250": { - "Name": "Gates Of Tomorrow" - }, - "1251": { - "Name": "New Frontier" - }, - "1252": { - "Name": "Paschendale" - }, - "1253": { - "Name": "Face In The Sand" - }, - "1254": { - "Name": "Age Of Innocence" - }, - "1255": { - "Name": "Journeyman" - } - }, - "Title": "Dance Of Death" - }, - "99": { - "tracks": { - "1256": { - "Name": "Be Quick Or Be Dead" - }, - "1257": { - "Name": "From Here To Eternity" - }, - "1258": { - "Name": "Afraid To Shoot Strangers" - }, - "1259": { - "Name": "Fear Is The Key" - }, - "1260": { - "Name": "Childhood's End" - }, - "1261": { - "Name": "Wasting Love" - }, - "1262": { - "Name": "The Fugitive" - }, - "1263": { - "Name": "Chains Of Misery" - }, - "1264": { - "Name": "The Apparition" - }, - "1265": { - "Name": "Judas Be My Guide" - }, - "1266": { - "Name": "Weekend Warrior" - }, - "1267": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Fear Of The Dark" - }, - "100": { - "tracks": { - "1268": { - "Name": "01 - Prowler" - }, - "1269": { - "Name": "02 - Sanctuary" - }, - "1272": { - "Name": "05 - Phantom of the Opera" - }, - "1273": { - "Name": "06 - Transylvania" - }, - "1274": { - "Name": "07 - Strange World" - }, - "1275": { - "Name": "08 - Charlotte the Harlot" - }, - "1276": { - "Name": "09 - Iron Maiden" - } - }, - "Title": "Iron Maiden" - }, - "101": { - "tracks": { - "1277": { - "Name": "The Ides Of March" - }, - "1278": { - "Name": "Wrathchild" - }, - "1279": { - "Name": "Murders In The Rue Morgue" - }, - "1280": { - "Name": "Another Life" - }, - "1281": { - "Name": "Genghis Khan" - }, - "1283": { - "Name": "Killers" - }, - "1284": { - "Name": "Prodigal Son" - }, - "1285": { - "Name": "Purgatory" - }, - "1286": { - "Name": "Drifter" - } - }, - "Title": "Killers" - }, - "102": { - "tracks": { - "1287": { - "Name": "Intro- Churchill S Speech" - }, - "1288": { - "Name": "Aces High" - }, - "1289": { - "Name": "2 Minutes To Midnight" - }, - "1290": { - "Name": "The Trooper" - }, - "1291": { - "Name": "Revelations" - }, - "1292": { - "Name": "Flight Of Icarus" - }, - "1293": { - "Name": "Rime Of The Ancient Mariner" - }, - "1294": { - "Name": "Powerslave" - }, - "1295": { - "Name": "The Number Of The Beast" - }, - "1296": { - "Name": "Hallowed Be Thy Name" - }, - "1297": { - "Name": "Iron Maiden" - }, - "1298": { - "Name": "Run To The Hills" - }, - "1299": { - "Name": "Running Free" - }, - "1300": { - "Name": "Wrathchild" - }, - "1301": { - "Name": "Acacia Avenue" - }, - "1302": { - "Name": "Children Of The Damned" - }, - "1303": { - "Name": "Die With Your Boots On" - }, - "1304": { - "Name": "Phantom Of The Opera" - } - }, - "Title": "Live After Death" - }, - "103": { - "tracks": { - "1305": { - "Name": "Be Quick Or Be Dead" - }, - "1306": { - "Name": "The Number Of The Beast" - }, - "1307": { - "Name": "Wrathchild" - }, - "1308": { - "Name": "From Here To Eternity" - }, - "1309": { - "Name": "Can I Play With Madness" - }, - "1310": { - "Name": "Wasting Love" - }, - "1311": { - "Name": "Tailgunner" - }, - "1312": { - "Name": "The Evil That Men Do" - }, - "1313": { - "Name": "Afraid To Shoot Strangers" - }, - "1314": { - "Name": "Fear Of The Dark" - } - }, - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "tracks": { - "1315": { - "Name": "Bring Your Daughter... To The Slaughter..." - }, - "1316": { - "Name": "The Clairvoyant" - }, - "1317": { - "Name": "Heaven Can Wait" - }, - "1318": { - "Name": "Run To The Hills" - }, - "1319": { - "Name": "2 Minutes To Midnight" - }, - "1320": { - "Name": "Iron Maiden" - }, - "1321": { - "Name": "Hallowed Be Thy Name" - }, - "1322": { - "Name": "The Trooper" - }, - "1323": { - "Name": "Sanctuary" - }, - "1324": { - "Name": "Running Free" - } - }, - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "tracks": { - "1325": { - "Name": "Tailgunner" - }, - "1326": { - "Name": "Holy Smoke" - }, - "1327": { - "Name": "No Prayer For The Dying" - }, - "1328": { - "Name": "Public Enema Number One" - }, - "1329": { - "Name": "Fates Warning" - }, - "1330": { - "Name": "The Assassin" - }, - "1331": { - "Name": "Run Silent Run Deep" - }, - "1332": { - "Name": "Hooks In You" - }, - "1333": { - "Name": "Bring Your Daughter... ...To The Slaughter" - }, - "1334": { - "Name": "Mother Russia" - } - }, - "Title": "No Prayer For The Dying" - }, - "106": { - "tracks": { - "1335": { - "Name": "Where Eagles Dare" - }, - "1336": { - "Name": "Revelations" - }, - "1337": { - "Name": "Flight Of The Icarus" - }, - "1338": { - "Name": "Die With Your Boots On" - }, - "1339": { - "Name": "The Trooper" - }, - "1340": { - "Name": "Still Life" - }, - "1341": { - "Name": "Quest For Fire" - }, - "1342": { - "Name": "Sun And Steel" - }, - "1343": { - "Name": "To Tame A Land" - } - }, - "Title": "Piece Of Mind" - }, - "107": { - "tracks": { - "1344": { - "Name": "Aces High" - }, - "1345": { - "Name": "2 Minutes To Midnight" - }, - "1346": { - "Name": "Losfer Words" - }, - "1347": { - "Name": "Flash of The Blade" - }, - "1348": { - "Name": "Duelists" - }, - "1349": { - "Name": "Back in the Village" - }, - "1350": { - "Name": "Powerslave" - }, - "1351": { - "Name": "Rime of the Ancient Mariner" - } - }, - "Title": "Powerslave" - }, - "108": { - "tracks": { - "1352": { - "Name": "Intro" - }, - "1353": { - "Name": "The Wicker Man" - }, - "1354": { - "Name": "Ghost Of The Navigator" - }, - "1355": { - "Name": "Brave New World" - }, - "1356": { - "Name": "Wrathchild" - }, - "1357": { - "Name": "2 Minutes To Midnight" - }, - "1358": { - "Name": "Blood Brothers" - }, - "1359": { - "Name": "Sign Of The Cross" - }, - "1360": { - "Name": "The Mercenary" - }, - "1361": { - "Name": "The Trooper" - } - }, - "Title": "Rock In Rio [CD1]" - }, - "109": { - "tracks": { - "1362": { - "Name": "Dream Of Mirrors" - }, - "1363": { - "Name": "The Clansman" - }, - "1364": { - "Name": "The Evil That Men Do" - }, - "1365": { - "Name": "Fear Of The Dark" - }, - "1366": { - "Name": "Iron Maiden" - }, - "1367": { - "Name": "The Number Of The Beast" - }, - "1368": { - "Name": "Hallowed Be Thy Name" - }, - "1369": { - "Name": "Sanctuary" - }, - "1370": { - "Name": "Run To The Hills" - } - }, - "Title": "Rock In Rio [CD2]" - }, - "110": { - "tracks": { - "1371": { - "Name": "Moonchild" - }, - "1372": { - "Name": "Infinite Dreams" - }, - "1373": { - "Name": "Can I Play With Madness" - }, - "1374": { - "Name": "The Evil That Men Do" - }, - "1375": { - "Name": "Seventh Son of a Seventh Son" - }, - "1376": { - "Name": "The Prophecy" - }, - "1377": { - "Name": "The Clairvoyant" - }, - "1378": { - "Name": "Only the Good Die Young" - } - }, - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "tracks": { - "1379": { - "Name": "Caught Somewhere in Time" - }, - "1380": { - "Name": "Wasted Years" - }, - "1381": { - "Name": "Sea of Madness" - }, - "1382": { - "Name": "Heaven Can Wait" - }, - "1383": { - "Name": "Stranger in a Strange Land" - }, - "1384": { - "Name": "Alexander the Great" - }, - "1385": { - "Name": "De Ja Vu" - }, - "1386": { - "Name": "The Loneliness of the Long Dis" - } - }, - "Title": "Somewhere in Time" - }, - "112": { - "tracks": { - "1387": { - "Name": "22 Acacia Avenue" - }, - "1388": { - "Name": "Children of the Damned" - }, - "1389": { - "Name": "Gangland" - }, - "1390": { - "Name": "Hallowed Be Thy Name" - }, - "1391": { - "Name": "Invaders" - }, - "1392": { - "Name": "Run to the Hills" - }, - "1393": { - "Name": "The Number Of The Beast" - }, - "1394": { - "Name": "The Prisoner" - } - }, - "Title": "The Number of The Beast" - }, - "113": { - "tracks": { - "1395": { - "Name": "Sign Of The Cross" - }, - "1396": { - "Name": "Lord Of The Flies" - }, - "1397": { - "Name": "Man On The Edge" - }, - "1398": { - "Name": "Fortunes Of War" - }, - "1399": { - "Name": "Look For The Truth" - }, - "1400": { - "Name": "The Aftermath" - }, - "1401": { - "Name": "Judgement Of Heaven" - }, - "1402": { - "Name": "Blood On The World's Hands" - }, - "1403": { - "Name": "The Edge Of Darkness" - }, - "1404": { - "Name": "2 A.M." - }, - "1405": { - "Name": "The Unbeliever" - } - }, - "Title": "The X Factor" - }, - "114": { - "tracks": { - "1406": { - "Name": "Futureal" - }, - "1407": { - "Name": "The Angel And The Gambler" - }, - "1408": { - "Name": "Lightning Strikes Twice" - }, - "1409": { - "Name": "The Clansman" - }, - "1410": { - "Name": "When Two Worlds Collide" - }, - "1411": { - "Name": "The Educated Fool" - }, - "1412": { - "Name": "Don't Look To The Eyes Of A Stranger" - }, - "1413": { - "Name": "Como Estais Amigos" - } - }, - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - } - }, - "115": { - "tracks": { - "1414": { - "Composer": "James Brown/Johnny Terry", - "Name": "Please Please Please" - }, - "1415": { - "Composer": "Lowman Pauling", - "Name": "Think" - }, - "1416": { - "Composer": "Jimmy Forrest/Lewis C. Simpkins/Oscar Washington", - "Name": "Night Train" - }, - "1417": { - "Composer": "Ted Wright", - "Name": "Out Of Sight" - }, - "1418": { - "Composer": "James Brown", - "Name": "Papa's Got A Brand New Bag Pt.1" - }, - "1419": { - "Composer": "James Brown", - "Name": "I Got You (I Feel Good)" - }, - "1420": { - "Composer": "Betty Newsome/James Brown", - "Name": "It's A Man's Man's Man's World" - }, - "1421": { - "Composer": "Alfred Ellis/James Brown", - "Name": "Cold Sweat" - }, - "1422": { - "Composer": "Alfred Ellis/James Brown", - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1" - }, - "1423": { - "Composer": "Bobby Byrd/James Brown/Ron Lenhoff", - "Name": "Get Up (I Feel Like Being A) Sex Machine" - }, - "1424": { - "Composer": "Addie William Jones/Nat Jones", - "Name": "Hey America" - }, - "1425": { - "Composer": "Charles Bobbitt/James Brown", - "Name": "Make It Funky Pt.1" - }, - "1426": { - "Composer": "Charles Bobbitt/James Brown", - "Name": "I'm A Greedy Man Pt.1" - }, - "1427": { - "Composer": "Fred Wesley/James Brown/Joseph Mims", - "Name": "Get On The Good Foot" - }, - "1428": { - "Composer": "Deanna Brown/Deidra Jenkins/Yamma Brown", - "Name": "Get Up Offa That Thing" - }, - "1429": { - "Composer": "Brad Shapiro/George Jackson/Robert Miller/Walter Shaw", - "Name": "It's Too Funky In Here" - }, - "1430": { - "Composer": "Charlie Midnight/Dan Hartman", - "Name": "Living In America" - }, - "1431": { - "Composer": "Full Force/James Brown", - "Name": "I'm Real" - }, - "1432": { - "Composer": "Fred Wesley/James Brown", - "Name": "Hot Pants Pt.1" - }, - "1433": { - "Composer": "James Brown", - "Name": "Soul Power (Live)" - } - }, - "Title": "Sex Machine", - "artist": { - "ArtistId": 91, - "albums": { - "115": { - "tracks": { - "1414": { - "Name": "Please Please Please" - }, - "1415": { - "Name": "Think" - }, - "1416": { - "Name": "Night Train" - }, - "1417": { - "Name": "Out Of Sight" - }, - "1418": { - "Name": "Papa's Got A Brand New Bag Pt.1" - }, - "1419": { - "Name": "I Got You (I Feel Good)" - }, - "1420": { - "Name": "It's A Man's Man's Man's World" - }, - "1421": { - "Name": "Cold Sweat" - }, - "1422": { - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1" - }, - "1423": { - "Name": "Get Up (I Feel Like Being A) Sex Machine" - }, - "1424": { - "Name": "Hey America" - }, - "1425": { - "Name": "Make It Funky Pt.1" - }, - "1426": { - "Name": "I'm A Greedy Man Pt.1" - }, - "1427": { - "Name": "Get On The Good Foot" - }, - "1428": { - "Name": "Get Up Offa That Thing" - }, - "1429": { - "Name": "It's Too Funky In Here" - }, - "1430": { - "Name": "Living In America" - }, - "1431": { - "Name": "I'm Real" - }, - "1432": { - "Name": "Hot Pants Pt.1" - }, - "1433": { - "Name": "Soul Power (Live)" - } - }, - "Title": "Sex Machine" - } - }, - "Name": "James Brown" - } - }, - "116": { - "tracks": { - "1434": { - "Composer": "Jay Kay/Kay, Jay", - "Name": "When You Gonna Learn (Digeridoo)" - }, - "1435": { - "Composer": "Smith, Toby", - "Name": "Too Young To Die" - }, - "1436": { - "Composer": "Smith, Toby", - "Name": "Hooked Up" - }, - "1437": { - "Composer": "Gelder, Nick van", - "Name": "If I Like It, I Do It" - }, - "1438": { - "Composer": "Smith, Toby", - "Name": "Music Of The Wind" - }, - "1439": { - "Composer": "Smith, Toby", - "Name": "Emergency On Planet Earth" - }, - "1440": { - "Composer": "Jay Kay/Kay, Jay", - "Name": "Whatever It Is, I Just Can't Stop" - }, - "1441": { - "Composer": "Smith, Toby", - "Name": "Blow Your Mind" - }, - "1442": { - "Composer": "Smith, Toby", - "Name": "Revolution 1993" - }, - "1443": { - "Composer": "Buchanan, Wallis", - "Name": "Didgin' Out" - } - }, - "Title": "Emergency On Planet Earth", - "artist": { - "ArtistId": 92, - "albums": { - "116": { - "tracks": { - "1434": { - "Name": "When You Gonna Learn (Digeridoo)" - }, - "1435": { - "Name": "Too Young To Die" - }, - "1436": { - "Name": "Hooked Up" - }, - "1437": { - "Name": "If I Like It, I Do It" - }, - "1438": { - "Name": "Music Of The Wind" - }, - "1439": { - "Name": "Emergency On Planet Earth" - }, - "1440": { - "Name": "Whatever It Is, I Just Can't Stop" - }, - "1441": { - "Name": "Blow Your Mind" - }, - "1442": { - "Name": "Revolution 1993" - }, - "1443": { - "Name": "Didgin' Out" - } - }, - "Title": "Emergency On Planet Earth" - }, - "117": { - "tracks": { - "1444": { - "Name": "Canned Heat" - }, - "1445": { - "Name": "Planet Home" - }, - "1446": { - "Name": "Black Capricorn Day" - }, - "1447": { - "Name": "Soul Education" - }, - "1448": { - "Name": "Failling" - }, - "1449": { - "Name": "Destitute Illusions" - }, - "1450": { - "Name": "Supersonic" - }, - "1451": { - "Name": "Butterfly" - }, - "1452": { - "Name": "Were Do We Go From Here" - }, - "1453": { - "Name": "King For A Day" - }, - "1454": { - "Name": "Deeper Underground" - } - }, - "Title": "Synkronized" - }, - "118": { - "tracks": { - "1455": { - "Name": "Just Another Story" - }, - "1456": { - "Name": "Stillness In Time" - }, - "1457": { - "Name": "Half The Man" - }, - "1458": { - "Name": "Light Years" - }, - "1459": { - "Name": "Manifest Destiny" - }, - "1460": { - "Name": "The Kids" - }, - "1461": { - "Name": "Mr. Moon" - }, - "1462": { - "Name": "Scam" - }, - "1463": { - "Name": "Journey To Arnhemland" - }, - "1464": { - "Name": "Morning Glory" - }, - "1465": { - "Name": "Space Cowboy" - } - }, - "Title": "The Return Of The Space Cowboy" - } - }, - "Name": "Jamiroquai" - } - }, - "117": { - "tracks": { - "1444": { - "Composer": "Jay Kay", - "Name": "Canned Heat" - }, - "1445": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Planet Home" - }, - "1446": { - "Composer": "Jay Kay", - "Name": "Black Capricorn Day" - }, - "1447": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Soul Education" - }, - "1448": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Failling" - }, - "1449": { - "Composer": "Derrick McKenzie/Jay Kay/Toby Smith", - "Name": "Destitute Illusions" - }, - "1450": { - "Composer": "Jay Kay", - "Name": "Supersonic" - }, - "1451": { - "Composer": "Jay Kay/Toby Smith", - "Name": "Butterfly" - }, - "1452": { - "Composer": "Jay Kay", - "Name": "Were Do We Go From Here" - }, - "1453": { - "Composer": "Jay Kay/Toby Smith", - "Name": "King For A Day" - }, - "1454": { - "Composer": "Toby Smith", - "Name": "Deeper Underground" - } - }, - "Title": "Synkronized", - "artist": { - "ArtistId": 92, - "albums": { - "116": { - "tracks": { - "1434": { - "Name": "When You Gonna Learn (Digeridoo)" - }, - "1435": { - "Name": "Too Young To Die" - }, - "1436": { - "Name": "Hooked Up" - }, - "1437": { - "Name": "If I Like It, I Do It" - }, - "1438": { - "Name": "Music Of The Wind" - }, - "1439": { - "Name": "Emergency On Planet Earth" - }, - "1440": { - "Name": "Whatever It Is, I Just Can't Stop" - }, - "1441": { - "Name": "Blow Your Mind" - }, - "1442": { - "Name": "Revolution 1993" - }, - "1443": { - "Name": "Didgin' Out" - } - }, - "Title": "Emergency On Planet Earth" - }, - "117": { - "tracks": { - "1444": { - "Name": "Canned Heat" - }, - "1445": { - "Name": "Planet Home" - }, - "1446": { - "Name": "Black Capricorn Day" - }, - "1447": { - "Name": "Soul Education" - }, - "1448": { - "Name": "Failling" - }, - "1449": { - "Name": "Destitute Illusions" - }, - "1450": { - "Name": "Supersonic" - }, - "1451": { - "Name": "Butterfly" - }, - "1452": { - "Name": "Were Do We Go From Here" - }, - "1453": { - "Name": "King For A Day" - }, - "1454": { - "Name": "Deeper Underground" - } - }, - "Title": "Synkronized" - }, - "118": { - "tracks": { - "1455": { - "Name": "Just Another Story" - }, - "1456": { - "Name": "Stillness In Time" - }, - "1457": { - "Name": "Half The Man" - }, - "1458": { - "Name": "Light Years" - }, - "1459": { - "Name": "Manifest Destiny" - }, - "1460": { - "Name": "The Kids" - }, - "1461": { - "Name": "Mr. Moon" - }, - "1462": { - "Name": "Scam" - }, - "1463": { - "Name": "Journey To Arnhemland" - }, - "1464": { - "Name": "Morning Glory" - }, - "1465": { - "Name": "Space Cowboy" - } - }, - "Title": "The Return Of The Space Cowboy" - } - }, - "Name": "Jamiroquai" - } - }, - "118": { - "tracks": { - "1455": { - "Composer": "Toby Smith", - "Name": "Just Another Story" - }, - "1456": { - "Composer": "Toby Smith", - "Name": "Stillness In Time" - }, - "1457": { - "Composer": "Toby Smith", - "Name": "Half The Man" - }, - "1458": { - "Composer": "Toby Smith", - "Name": "Light Years" - }, - "1459": { - "Composer": "Toby Smith", - "Name": "Manifest Destiny" - }, - "1460": { - "Composer": "Toby Smith", - "Name": "The Kids" - }, - "1461": { - "Composer": "Stuard Zender/Toby Smith", - "Name": "Mr. Moon" - }, - "1462": { - "Composer": "Stuart Zender", - "Name": "Scam" - }, - "1463": { - "Composer": "Toby Smith/Wallis Buchanan", - "Name": "Journey To Arnhemland" - }, - "1464": { - "Composer": "J. Kay/Jay Kay", - "Name": "Morning Glory" - }, - "1465": { - "Composer": "J. Kay/Jay Kay", - "Name": "Space Cowboy" - } - }, - "Title": "The Return Of The Space Cowboy", - "artist": { - "ArtistId": 92, - "albums": { - "116": { - "tracks": { - "1434": { - "Name": "When You Gonna Learn (Digeridoo)" - }, - "1435": { - "Name": "Too Young To Die" - }, - "1436": { - "Name": "Hooked Up" - }, - "1437": { - "Name": "If I Like It, I Do It" - }, - "1438": { - "Name": "Music Of The Wind" - }, - "1439": { - "Name": "Emergency On Planet Earth" - }, - "1440": { - "Name": "Whatever It Is, I Just Can't Stop" - }, - "1441": { - "Name": "Blow Your Mind" - }, - "1442": { - "Name": "Revolution 1993" - }, - "1443": { - "Name": "Didgin' Out" - } - }, - "Title": "Emergency On Planet Earth" - }, - "117": { - "tracks": { - "1444": { - "Name": "Canned Heat" - }, - "1445": { - "Name": "Planet Home" - }, - "1446": { - "Name": "Black Capricorn Day" - }, - "1447": { - "Name": "Soul Education" - }, - "1448": { - "Name": "Failling" - }, - "1449": { - "Name": "Destitute Illusions" - }, - "1450": { - "Name": "Supersonic" - }, - "1451": { - "Name": "Butterfly" - }, - "1452": { - "Name": "Were Do We Go From Here" - }, - "1453": { - "Name": "King For A Day" - }, - "1454": { - "Name": "Deeper Underground" - } - }, - "Title": "Synkronized" - }, - "118": { - "tracks": { - "1455": { - "Name": "Just Another Story" - }, - "1456": { - "Name": "Stillness In Time" - }, - "1457": { - "Name": "Half The Man" - }, - "1458": { - "Name": "Light Years" - }, - "1459": { - "Name": "Manifest Destiny" - }, - "1460": { - "Name": "The Kids" - }, - "1461": { - "Name": "Mr. Moon" - }, - "1462": { - "Name": "Scam" - }, - "1463": { - "Name": "Journey To Arnhemland" - }, - "1464": { - "Name": "Morning Glory" - }, - "1465": { - "Name": "Space Cowboy" - } - }, - "Title": "The Return Of The Space Cowboy" - } - }, - "Name": "Jamiroquai" - } - }, - "119": { - "tracks": { - "1466": { - "Composer": "C. Cester/C. Muncey", - "Name": "Last Chance" - }, - "1467": { - "Composer": "C. Muncey/N. Cester", - "Name": "Are You Gonna Be My Girl" - }, - "1468": { - "Composer": "C. Cester/N. Cester", - "Name": "Rollover D.J." - }, - "1469": { - "Composer": "N. Cester", - "Name": "Look What You've Done" - }, - "1470": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "Name": "Get What You Need" - }, - "1471": { - "Composer": "C. Cester/N. Cester", - "Name": "Move On" - }, - "1472": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "Name": "Radio Song" - }, - "1473": { - "Composer": "C. Cester/N. Cester", - "Name": "Get Me Outta Here" - }, - "1474": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "Name": "Cold Hard Bitch" - }, - "1475": { - "Composer": "C. Muncey/N. Cester", - "Name": "Come Around Again" - }, - "1476": { - "Composer": "C. Muncey/N. Cester", - "Name": "Take It Or Leave It" - }, - "1477": { - "Composer": "C. Cester/N. Cester", - "Name": "Lazy Gun" - }, - "1478": { - "Composer": "C. Cester", - "Name": "Timothy" - } - }, - "Title": "Get Born", - "artist": { - "ArtistId": 93, - "albums": { - "119": { - "tracks": { - "1466": { - "Name": "Last Chance" - }, - "1467": { - "Name": "Are You Gonna Be My Girl" - }, - "1468": { - "Name": "Rollover D.J." - }, - "1469": { - "Name": "Look What You've Done" - }, - "1470": { - "Name": "Get What You Need" - }, - "1471": { - "Name": "Move On" - }, - "1472": { - "Name": "Radio Song" - }, - "1473": { - "Name": "Get Me Outta Here" - }, - "1474": { - "Name": "Cold Hard Bitch" - }, - "1475": { - "Name": "Come Around Again" - }, - "1476": { - "Name": "Take It Or Leave It" - }, - "1477": { - "Name": "Lazy Gun" - }, - "1478": { - "Name": "Timothy" - } - }, - "Title": "Get Born" - } - }, - "Name": "JET" - } - }, - "120": { - "tracks": { - "1479": { - "Composer": "Jimi Hendrix", - "Name": "Foxy Lady" - }, - "1480": { - "Composer": "Jimi Hendrix", - "Name": "Manic Depression" - }, - "1481": { - "Composer": "Jimi Hendrix", - "Name": "Red House" - }, - "1482": { - "Composer": "Jimi Hendrix", - "Name": "Can You See Me" - }, - "1483": { - "Composer": "Jimi Hendrix", - "Name": "Love Or Confusion" - }, - "1484": { - "Composer": "Jimi Hendrix", - "Name": "I Don't Live Today" - }, - "1485": { - "Composer": "Jimi Hendrix", - "Name": "May This Be Love" - }, - "1486": { - "Composer": "Jimi Hendrix", - "Name": "Fire" - }, - "1487": { - "Composer": "Jimi Hendrix", - "Name": "Third Stone From The Sun" - }, - "1488": { - "Composer": "Jimi Hendrix", - "Name": "Remember" - }, - "1489": { - "Composer": "Jimi Hendrix", - "Name": "Are You Experienced?" - }, - "1490": { - "Composer": "Billy Roberts", - "Name": "Hey Joe" - }, - "1491": { - "Composer": "Jimi Hendrix", - "Name": "Stone Free" - }, - "1492": { - "Composer": "Jimi Hendrix", - "Name": "Purple Haze" - }, - "1493": { - "Composer": "Jimi Hendrix", - "Name": "51st Anniversary" - }, - "1494": { - "Composer": "Jimi Hendrix", - "Name": "The Wind Cries Mary" - }, - "1495": { - "Composer": "Jimi Hendrix", - "Name": "Highway Chile" - } - }, - "Title": "Are You Experienced?", - "artist": { - "ArtistId": 94, - "albums": { - "120": { - "tracks": { - "1479": { - "Name": "Foxy Lady" - }, - "1480": { - "Name": "Manic Depression" - }, - "1481": { - "Name": "Red House" - }, - "1482": { - "Name": "Can You See Me" - }, - "1483": { - "Name": "Love Or Confusion" - }, - "1484": { - "Name": "I Don't Live Today" - }, - "1485": { - "Name": "May This Be Love" - }, - "1486": { - "Name": "Fire" - }, - "1487": { - "Name": "Third Stone From The Sun" - }, - "1488": { - "Name": "Remember" - }, - "1489": { - "Name": "Are You Experienced?" - }, - "1490": { - "Name": "Hey Joe" - }, - "1491": { - "Name": "Stone Free" - }, - "1492": { - "Name": "Purple Haze" - }, - "1493": { - "Name": "51st Anniversary" - }, - "1494": { - "Name": "The Wind Cries Mary" - }, - "1495": { - "Name": "Highway Chile" - } - }, - "Title": "Are You Experienced?" - } - }, - "Name": "Jimi Hendrix" - } - }, - "121": { - "tracks": { - "1496": { - "Composer": null, - "Name": "Surfing with the Alien" - }, - "1497": { - "Composer": null, - "Name": "Ice 9" - }, - "1498": { - "Composer": null, - "Name": "Crushing Day" - }, - "1499": { - "Composer": null, - "Name": "Always With Me, Always With You" - }, - "1500": { - "Composer": null, - "Name": "Satch Boogie" - }, - "1501": { - "Composer": "J. Satriani", - "Name": "Hill of the Skull" - }, - "1502": { - "Composer": null, - "Name": "Circles" - }, - "1503": { - "Composer": "J. Satriani", - "Name": "Lords of Karma" - }, - "1504": { - "Composer": "J. Satriani", - "Name": "Midnight" - }, - "1505": { - "Composer": "J. Satriani", - "Name": "Echo" - } - }, - "Title": "Surfing with the Alien (Remastered)", - "artist": { - "ArtistId": 95, - "albums": { - "121": { - "tracks": { - "1496": { - "Name": "Surfing with the Alien" - }, - "1497": { - "Name": "Ice 9" - }, - "1498": { - "Name": "Crushing Day" - }, - "1499": { - "Name": "Always With Me, Always With You" - }, - "1500": { - "Name": "Satch Boogie" - }, - "1501": { - "Name": "Hill of the Skull" - }, - "1502": { - "Name": "Circles" - }, - "1503": { - "Name": "Lords of Karma" - }, - "1504": { - "Name": "Midnight" - }, - "1505": { - "Name": "Echo" - } - }, - "Title": "Surfing with the Alien (Remastered)" - } - }, - "Name": "Joe Satriani" - } - }, - "122": { - "tracks": { - "1506": { - "Composer": null, - "Name": "Engenho De Dentro" - }, - "1507": { - "Composer": null, - "Name": "Alcohol" - }, - "1508": { - "Composer": null, - "Name": "Mama Africa" - }, - "1509": { - "Composer": null, - "Name": "Salve Simpatia" - }, - "1513": { - "Composer": null, - "Name": "Charles Anjo 45" - }, - "1516": { - "Composer": null, - "Name": "Que Maravilha" - }, - "1517": { - "Composer": null, - "Name": "Santa Clara Clareou" - }, - "1518": { - "Composer": null, - "Name": "Filho Maravilha" - }, - "1519": { - "Composer": null, - "Name": "Taj Mahal" - } - }, - "Title": "Jorge Ben Jor 25 Anos", - "artist": { - "ArtistId": 46, - "albums": { - "122": { - "tracks": { - "1506": { - "Name": "Engenho De Dentro" - }, - "1507": { - "Name": "Alcohol" - }, - "1508": { - "Name": "Mama Africa" - }, - "1509": { - "Name": "Salve Simpatia" - }, - "1513": { - "Name": "Charles Anjo 45" - }, - "1516": { - "Name": "Que Maravilha" - }, - "1517": { - "Name": "Santa Clara Clareou" - }, - "1518": { - "Name": "Filho Maravilha" - }, - "1519": { - "Name": "Taj Mahal" - } - }, - "Title": "Jorge Ben Jor 25 Anos" - } - }, - "Name": "Jorge Ben" - } - }, - "123": { - "tracks": { - "1520": { - "Composer": null, - "Name": "Rapidamente" - }, - "1521": { - "Composer": "Hyldon", - "Name": "As Dores do Mundo" - }, - "1522": { - "Composer": null, - "Name": "Vou Pra Ai" - }, - "1523": { - "Composer": null, - "Name": "My Brother" - }, - "1528": { - "Composer": null, - "Name": "A Tarde" - }, - "1529": { - "Composer": null, - "Name": "Always Be All Right" - }, - "1530": { - "Composer": null, - "Name": "Sem Sentido" - }, - "1531": { - "Composer": null, - "Name": "Onibusfobia" - } - }, - "Title": "Jota Quest-1995", - "artist": { - "ArtistId": 96, - "albums": { - "123": { - "tracks": { - "1520": { - "Name": "Rapidamente" - }, - "1521": { - "Name": "As Dores do Mundo" - }, - "1522": { - "Name": "Vou Pra Ai" - }, - "1523": { - "Name": "My Brother" - }, - "1528": { - "Name": "A Tarde" - }, - "1529": { - "Name": "Always Be All Right" - }, - "1530": { - "Name": "Sem Sentido" - }, - "1531": { - "Name": "Onibusfobia" - } - }, - "Title": "Jota Quest-1995" - } - }, - "Name": "Jota Quest" - } - }, - "125": { - "tracks": { - "1546": { - "Composer": null, - "Name": "The Green Manalishi" - }, - "1547": { - "Composer": null, - "Name": "Living After Midnight" - }, - "1548": { - "Composer": null, - "Name": "Breaking The Law (Live)" - }, - "1549": { - "Composer": null, - "Name": "Hot Rockin'" - }, - "1550": { - "Composer": null, - "Name": "Heading Out To The Highway (Live)" - }, - "1551": { - "Composer": null, - "Name": "The Hellion" - }, - "1552": { - "Composer": null, - "Name": "Electric Eye" - }, - "1553": { - "Composer": null, - "Name": "You've Got Another Thing Comin'" - }, - "1554": { - "Composer": null, - "Name": "Turbo Lover" - }, - "1555": { - "Composer": null, - "Name": "Freewheel Burning" - }, - "1556": { - "Composer": null, - "Name": "Some Heads Are Gonna Roll" - }, - "1557": { - "Composer": null, - "Name": "Metal Meltdown" - }, - "1558": { - "Composer": null, - "Name": "Ram It Down" - }, - "1559": { - "Composer": null, - "Name": "Diamonds And Rust (Live)" - }, - "1560": { - "Composer": null, - "Name": "Victim Of Change (Live)" - }, - "1561": { - "Composer": null, - "Name": "Tyrant (Live)" - } - }, - "Title": "Living After Midnight", - "artist": { - "ArtistId": 98, - "albums": { - "125": { - "tracks": { - "1546": { - "Name": "The Green Manalishi" - }, - "1547": { - "Name": "Living After Midnight" - }, - "1548": { - "Name": "Breaking The Law (Live)" - }, - "1549": { - "Name": "Hot Rockin'" - }, - "1550": { - "Name": "Heading Out To The Highway (Live)" - }, - "1551": { - "Name": "The Hellion" - }, - "1552": { - "Name": "Electric Eye" - }, - "1553": { - "Name": "You've Got Another Thing Comin'" - }, - "1554": { - "Name": "Turbo Lover" - }, - "1555": { - "Name": "Freewheel Burning" - }, - "1556": { - "Name": "Some Heads Are Gonna Roll" - }, - "1557": { - "Name": "Metal Meltdown" - }, - "1558": { - "Name": "Ram It Down" - }, - "1559": { - "Name": "Diamonds And Rust (Live)" - }, - "1560": { - "Name": "Victim Of Change (Live)" - }, - "1561": { - "Name": "Tyrant (Live)" - } - }, - "Title": "Living After Midnight" - } - }, - "Name": "Judas Priest" - } - }, - "126": { - "tracks": { - "1562": { - "Composer": "Paul Stanley, Ace Frehley", - "Name": "Comin' Home" - }, - "1563": { - "Composer": "Gene Simmons", - "Name": "Plaster Caster" - }, - "1564": { - "Composer": "Gene Simmons, Stephen Coronel", - "Name": "Goin' Blind" - }, - "1565": { - "Composer": "Paul Stanley, Bob Ezrin, Kim Fowley", - "Name": "Do You Love Me" - }, - "1566": { - "Composer": "Gene Simmons", - "Name": "Domino" - }, - "1567": { - "Composer": "Paul Stanley, Vincent Poncia", - "Name": "Sure Know Something" - }, - "1568": { - "Composer": "Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed", - "Name": "A World Without Heroes" - }, - "1569": { - "Composer": "Paul Stanley, Ace Frehley", - "Name": "Rock Bottom" - }, - "1570": { - "Composer": "Gene Simmons", - "Name": "See You Tonight" - }, - "1571": { - "Composer": "Paul Stanley", - "Name": "I Still Love You" - }, - "1572": { - "Composer": "Paul Stanley, Vincent Cusano", - "Name": "Every Time I Look At You" - }, - "1573": { - "Composer": "Mick Jagger, Keith Richard", - "Name": "2,000 Man" - }, - "1574": { - "Composer": "Peter Criss, Stan Penridge, Bob Ezrin", - "Name": "Beth" - }, - "1575": { - "Composer": "Gene Simmons", - "Name": "Nothin' To Lose" - }, - "1576": { - "Composer": "Paul Stanley, Gene Simmons", - "Name": "Rock And Roll All Nite" - } - }, - "Title": "Unplugged [Live]", - "artist": { - "ArtistId": 52, - "albums": { - "37": { - "tracks": { - "436": { - "Name": "Detroit Rock City" - }, - "437": { - "Name": "Black Diamond" - }, - "438": { - "Name": "Hard Luck Woman" - }, - "439": { - "Name": "Sure Know Something" - }, - "440": { - "Name": "Love Gun" - }, - "441": { - "Name": "Deuce" - }, - "442": { - "Name": "Goin' Blind" - }, - "443": { - "Name": "Shock Me" - }, - "444": { - "Name": "Do You Love Me" - }, - "445": { - "Name": "She" - }, - "446": { - "Name": "I Was Made For Loving You" - }, - "447": { - "Name": "Shout It Out Loud" - }, - "448": { - "Name": "God Of Thunder" - }, - "449": { - "Name": "Calling Dr. Love" - }, - "450": { - "Name": "Beth" - }, - "451": { - "Name": "Strutter" - }, - "452": { - "Name": "Rock And Roll All Nite" - }, - "453": { - "Name": "Cold Gin" - }, - "454": { - "Name": "Plaster Caster" - }, - "455": { - "Name": "God Gave Rock 'n' Roll To You" - } - }, - "Title": "Greatest Kiss" - }, - "126": { - "tracks": { - "1562": { - "Name": "Comin' Home" - }, - "1563": { - "Name": "Plaster Caster" - }, - "1564": { - "Name": "Goin' Blind" - }, - "1565": { - "Name": "Do You Love Me" - }, - "1566": { - "Name": "Domino" - }, - "1567": { - "Name": "Sure Know Something" - }, - "1568": { - "Name": "A World Without Heroes" - }, - "1569": { - "Name": "Rock Bottom" - }, - "1570": { - "Name": "See You Tonight" - }, - "1571": { - "Name": "I Still Love You" - }, - "1572": { - "Name": "Every Time I Look At You" - }, - "1573": { - "Name": "2,000 Man" - }, - "1574": { - "Name": "Beth" - }, - "1575": { - "Name": "Nothin' To Lose" - }, - "1576": { - "Name": "Rock And Roll All Nite" - } - }, - "Title": "Unplugged [Live]" - } - }, - "Name": "Kiss" - } - }, - "127": { - "tracks": { - "1577": { - "Composer": "Robert Plant", - "Name": "Immigrant Song" - }, - "1578": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Name": "Heartbreaker" - }, - "1579": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Since I've Been Loving You" - }, - "1580": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Black Dog" - }, - "1581": { - "Composer": "Jimmy Page/Led Zeppelin", - "Name": "Dazed And Confused" - }, - "1582": { - "Composer": "Robert Plant", - "Name": "Stairway To Heaven" - }, - "1583": { - "Composer": "Robert Plant", - "Name": "Going To California" - }, - "1584": { - "Composer": "Robert Plant", - "Name": "That's The Way" - }, - "1585": { - "Composer": "Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon", - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Composer": "Robert Plant", - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "128": { - "tracks": { - "1587": { - "Composer": "Ben E.King/James Bethea", - "Name": "We're Gonna Groove" - }, - "1588": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Poor Tom" - }, - "1589": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Walter's Walk" - }, - "1591": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Ozone Baby" - }, - "1592": { - "Composer": "Jimmy Page, Robert Plant, John Bonham, John Paul Jones", - "Name": "Darlene" - }, - "1593": { - "Composer": "John Bonham", - "Name": "Bonzo's Montreux" - }, - "1594": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "129": { - "tracks": { - "1595": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "The Song Remains The Same" - }, - "1596": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "The Rain Song" - }, - "1597": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Composer": "John Bonham/John Paul Jones", - "Name": "The Crunge" - }, - "1599": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "Name": "Dancing Days" - }, - "1600": { - "Composer": "John Bonham/John Paul Jones", - "Name": "D'Yer Mak'er" - }, - "1601": { - "Composer": "John Paul Jones", - "Name": "No Quarter" - }, - "1602": { - "Composer": "John Bonham/John Paul Jones", - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "130": { - "tracks": { - "1603": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "Name": "In The Evening" - }, - "1604": { - "Composer": "John Paul Jones & Robert Plant", - "Name": "South Bound Saurez" - }, - "1605": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "Name": "Fool In The Rain" - }, - "1606": { - "Composer": "Jimmy Page & Robert Plant", - "Name": "Hot Dog" - }, - "1607": { - "Composer": "John Paul Jones, Jimmy Page & Robert Plant", - "Name": "Carouselambra" - }, - "1608": { - "Composer": "Robert Plant & John Paul Jones", - "Name": "All My Love" - }, - "1609": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "131": { - "tracks": { - "1610": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Black Dog" - }, - "1611": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "Rock & Roll" - }, - "1612": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "The Battle Of Evermore" - }, - "1613": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Stairway To Heaven" - }, - "1614": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Misty Mountain Hop" - }, - "1615": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Four Sticks" - }, - "1616": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Going To California" - }, - "1617": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie", - "Name": "When The Levee Breaks" - } - }, - "Title": "IV", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "132": { - "tracks": { - "1618": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Good Times Bad Times" - }, - "1619": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Composer": "J. B. Lenoir/Willie Dixon", - "Name": "You Shook Me" - }, - "1621": { - "Composer": "Jimmy Page", - "Name": "Dazed and Confused" - }, - "1622": { - "Composer": "Jimmy Page/John Paul Jones", - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Composer": "Jimmy Page", - "Name": "Black Mountain Side" - }, - "1624": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "Communication Breakdown" - }, - "1625": { - "Composer": "Willie Dixon", - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "133": { - "tracks": { - "1627": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "Whole Lotta Love" - }, - "1628": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "The Lemon Song" - }, - "1630": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Thank You" - }, - "1631": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "Name": "Heartbreaker" - }, - "1632": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Ramble On" - }, - "1634": { - "Composer": "John Bonham, John Paul Jones, Jimmy Page", - "Name": "Moby Dick" - }, - "1635": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "134": { - "tracks": { - "1636": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Immigrant Song" - }, - "1637": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "Friends" - }, - "1638": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Celebration Day" - }, - "1639": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Since I've Been Loving You" - }, - "1640": { - "Composer": "Jimmy Page, Robert Plant, John Bonham", - "Name": "Out On The Tiles" - }, - "1641": { - "Composer": "Traditional", - "Name": "Gallows Pole" - }, - "1642": { - "Composer": "Jimmy Page", - "Name": "Tangerine" - }, - "1643": { - "Composer": "Jimmy Page, Robert Plant", - "Name": "That's The Way" - }, - "1644": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Composer": "Traditional", - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "135": { - "tracks": { - "1646": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "In The Light" - }, - "1647": { - "Composer": "Jimmy Page", - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Composer": "Robert Plant", - "Name": "Down By The Seaside" - }, - "1649": { - "Composer": "Robert Plant", - "Name": "Ten Years Gone" - }, - "1650": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Night Flight" - }, - "1651": { - "Composer": "Robert Plant", - "Name": "The Wanton Song" - }, - "1652": { - "Composer": "Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant", - "Name": "Boogie With Stu" - }, - "1653": { - "Composer": "Robert Plant", - "Name": "Black Country Woman" - }, - "1654": { - "Composer": "Robert Plant", - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "136": { - "tracks": { - "1655": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Achilles Last Stand" - }, - "1656": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "For Your Life" - }, - "1657": { - "Composer": "John Bonham/John Paul Jones", - "Name": "Royal Orleans" - }, - "1658": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Candy Store Rock" - }, - "1660": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Hots On For Nowhere" - }, - "1661": { - "Composer": "Jimmy Page/Robert Plant", - "Name": "Tea For One" - } - }, - "Title": "Presence", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "137": { - "tracks": { - "1662": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "Name": "Rock & Roll" - }, - "1663": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "Celebration Day" - }, - "1664": { - "Composer": "Robert Plant", - "Name": "The Song Remains The Same" - }, - "1665": { - "Composer": "Robert Plant", - "Name": "Rain Song" - }, - "1666": { - "Composer": "Jimmy Page", - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "138": { - "tracks": { - "1667": { - "Composer": "John Paul Jones/Robert Plant", - "Name": "No Quarter" - }, - "1668": { - "Composer": "Robert Plant", - "Name": "Stairway To Heaven" - }, - "1669": { - "Composer": "John Bonham/John Paul Jones", - "Name": "Moby Dick" - }, - "1670": { - "Composer": "John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)", - "artist": { - "ArtistId": 22, - "albums": { - "30": { - "tracks": { - "337": { - "Name": "You Shook Me" - }, - "338": { - "Name": "I Can't Quit You Baby" - }, - "339": { - "Name": "Communication Breakdown" - }, - "340": { - "Name": "Dazed and Confused" - }, - "341": { - "Name": "The Girl I Love She Got Long Black Wavy Hair" - }, - "342": { - "Name": "What is and Should Never Be" - }, - "343": { - "Name": "Communication Breakdown(2)" - }, - "344": { - "Name": "Travelling Riverside Blues" - }, - "345": { - "Name": "Whole Lotta Love" - }, - "346": { - "Name": "Somethin' Else" - }, - "347": { - "Name": "Communication Breakdown(3)" - }, - "348": { - "Name": "I Can't Quit You Baby(2)" - }, - "349": { - "Name": "You Shook Me(2)" - }, - "350": { - "Name": "How Many More Times" - } - }, - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "tracks": { - "550": { - "Name": "Custard Pie" - }, - "551": { - "Name": "The Rover" - }, - "552": { - "Name": "In My Time Of Dying" - }, - "553": { - "Name": "Houses Of The Holy" - }, - "554": { - "Name": "Trampled Under Foot" - }, - "555": { - "Name": "Kashmir" - } - }, - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "tracks": { - "1577": { - "Name": "Immigrant Song" - }, - "1578": { - "Name": "Heartbreaker" - }, - "1579": { - "Name": "Since I've Been Loving You" - }, - "1580": { - "Name": "Black Dog" - }, - "1581": { - "Name": "Dazed And Confused" - }, - "1582": { - "Name": "Stairway To Heaven" - }, - "1583": { - "Name": "Going To California" - }, - "1584": { - "Name": "That's The Way" - }, - "1585": { - "Name": "Whole Lotta Love (Medley)" - }, - "1586": { - "Name": "Thank You" - } - }, - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "tracks": { - "1587": { - "Name": "We're Gonna Groove" - }, - "1588": { - "Name": "Poor Tom" - }, - "1589": { - "Name": "I Can't Quit You Baby" - }, - "1590": { - "Name": "Walter's Walk" - }, - "1591": { - "Name": "Ozone Baby" - }, - "1592": { - "Name": "Darlene" - }, - "1593": { - "Name": "Bonzo's Montreux" - }, - "1594": { - "Name": "Wearing And Tearing" - } - }, - "Title": "Coda" - }, - "129": { - "tracks": { - "1595": { - "Name": "The Song Remains The Same" - }, - "1596": { - "Name": "The Rain Song" - }, - "1597": { - "Name": "Over The Hills And Far Away" - }, - "1598": { - "Name": "The Crunge" - }, - "1599": { - "Name": "Dancing Days" - }, - "1600": { - "Name": "D'Yer Mak'er" - }, - "1601": { - "Name": "No Quarter" - }, - "1602": { - "Name": "The Ocean" - } - }, - "Title": "Houses Of The Holy" - }, - "130": { - "tracks": { - "1603": { - "Name": "In The Evening" - }, - "1604": { - "Name": "South Bound Saurez" - }, - "1605": { - "Name": "Fool In The Rain" - }, - "1606": { - "Name": "Hot Dog" - }, - "1607": { - "Name": "Carouselambra" - }, - "1608": { - "Name": "All My Love" - }, - "1609": { - "Name": "I'm Gonna Crawl" - } - }, - "Title": "In Through The Out Door" - }, - "131": { - "tracks": { - "1610": { - "Name": "Black Dog" - }, - "1611": { - "Name": "Rock & Roll" - }, - "1612": { - "Name": "The Battle Of Evermore" - }, - "1613": { - "Name": "Stairway To Heaven" - }, - "1614": { - "Name": "Misty Mountain Hop" - }, - "1615": { - "Name": "Four Sticks" - }, - "1616": { - "Name": "Going To California" - }, - "1617": { - "Name": "When The Levee Breaks" - } - }, - "Title": "IV" - }, - "132": { - "tracks": { - "1618": { - "Name": "Good Times Bad Times" - }, - "1619": { - "Name": "Babe I'm Gonna Leave You" - }, - "1620": { - "Name": "You Shook Me" - }, - "1621": { - "Name": "Dazed and Confused" - }, - "1622": { - "Name": "Your Time Is Gonna Come" - }, - "1623": { - "Name": "Black Mountain Side" - }, - "1624": { - "Name": "Communication Breakdown" - }, - "1625": { - "Name": "I Can't Quit You Baby" - }, - "1626": { - "Name": "How Many More Times" - } - }, - "Title": "Led Zeppelin I" - }, - "133": { - "tracks": { - "1627": { - "Name": "Whole Lotta Love" - }, - "1628": { - "Name": "What Is And What Should Never Be" - }, - "1629": { - "Name": "The Lemon Song" - }, - "1630": { - "Name": "Thank You" - }, - "1631": { - "Name": "Heartbreaker" - }, - "1632": { - "Name": "Living Loving Maid (She's Just A Woman)" - }, - "1633": { - "Name": "Ramble On" - }, - "1634": { - "Name": "Moby Dick" - }, - "1635": { - "Name": "Bring It On Home" - } - }, - "Title": "Led Zeppelin II" - }, - "134": { - "tracks": { - "1636": { - "Name": "Immigrant Song" - }, - "1637": { - "Name": "Friends" - }, - "1638": { - "Name": "Celebration Day" - }, - "1639": { - "Name": "Since I've Been Loving You" - }, - "1640": { - "Name": "Out On The Tiles" - }, - "1641": { - "Name": "Gallows Pole" - }, - "1642": { - "Name": "Tangerine" - }, - "1643": { - "Name": "That's The Way" - }, - "1644": { - "Name": "Bron-Y-Aur Stomp" - }, - "1645": { - "Name": "Hats Off To (Roy) Harper" - } - }, - "Title": "Led Zeppelin III" - }, - "135": { - "tracks": { - "1646": { - "Name": "In The Light" - }, - "1647": { - "Name": "Bron-Yr-Aur" - }, - "1648": { - "Name": "Down By The Seaside" - }, - "1649": { - "Name": "Ten Years Gone" - }, - "1650": { - "Name": "Night Flight" - }, - "1651": { - "Name": "The Wanton Song" - }, - "1652": { - "Name": "Boogie With Stu" - }, - "1653": { - "Name": "Black Country Woman" - }, - "1654": { - "Name": "Sick Again" - } - }, - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "tracks": { - "1655": { - "Name": "Achilles Last Stand" - }, - "1656": { - "Name": "For Your Life" - }, - "1657": { - "Name": "Royal Orleans" - }, - "1658": { - "Name": "Nobody's Fault But Mine" - }, - "1659": { - "Name": "Candy Store Rock" - }, - "1660": { - "Name": "Hots On For Nowhere" - }, - "1661": { - "Name": "Tea For One" - } - }, - "Title": "Presence" - }, - "137": { - "tracks": { - "1662": { - "Name": "Rock & Roll" - }, - "1663": { - "Name": "Celebration Day" - }, - "1664": { - "Name": "The Song Remains The Same" - }, - "1665": { - "Name": "Rain Song" - }, - "1666": { - "Name": "Dazed And Confused" - } - }, - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "tracks": { - "1667": { - "Name": "No Quarter" - }, - "1668": { - "Name": "Stairway To Heaven" - }, - "1669": { - "Name": "Moby Dick" - }, - "1670": { - "Name": "Whole Lotta Love" - } - }, - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - } - }, - "141": { - "tracks": { - "1702": { - "Composer": "Craig Ross/Lenny Kravitz", - "Name": "Are You Gonna Go My Way" - }, - "1703": { - "Composer": "Lenny Kravitz", - "Name": "Fly Away" - }, - "1704": { - "Composer": "Lenny Kravitz", - "Name": "Rock And Roll Is Dead" - }, - "1705": { - "Composer": "Lenny Kravitz", - "Name": "Again" - }, - "1706": { - "Composer": "Lenny Kravitz", - "Name": "It Ain't Over 'Til It's Over" - }, - "1707": { - "Composer": "Lenny Kravitz", - "Name": "Can't Get You Off My Mind" - }, - "1708": { - "Composer": "Lenny Kravitz", - "Name": "Mr. Cab Driver" - }, - "1709": { - "Composer": "B. Cummings/G. Peterson/M.J. Kale/R. Bachman", - "Name": "American Woman" - }, - "1710": { - "Composer": "Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan", - "Name": "Stand By My Woman" - }, - "1711": { - "Composer": "Lenny Kravitz/Slash", - "Name": "Always On The Run" - }, - "1712": { - "Composer": "Gerry DeVeaux/Terry Britten", - "Name": "Heaven Help" - }, - "1713": { - "Composer": "Lenny Kravitz", - "Name": "I Belong To You" - }, - "1714": { - "Composer": "Henry Hirsch/Lenny Kravitz", - "Name": "Believe" - }, - "1715": { - "Composer": "Lenny Kravitz", - "Name": "Let Love Rule" - }, - "1716": { - "Composer": "Lenny Kravitz", - "Name": "Black Velveteen" - }, - "2216": { - "Composer": null, - "Name": "Johnny B. Goode" - }, - "2217": { - "Composer": null, - "Name": "Don't Look Back" - }, - "2218": { - "Composer": null, - "Name": "Jah Seh No" - }, - "2219": { - "Composer": null, - "Name": "I'm The Toughest" - }, - "2220": { - "Composer": null, - "Name": "Nothing But Love" - }, - "2221": { - "Composer": null, - "Name": "Buk-In-Hamm Palace" - }, - "2222": { - "Composer": null, - "Name": "Bush Doctor" - }, - "2223": { - "Composer": null, - "Name": "Wanted Dread And Alive" - }, - "2224": { - "Composer": null, - "Name": "Mystic Man" - }, - "2225": { - "Composer": null, - "Name": "Coming In Hot" - }, - "2226": { - "Composer": null, - "Name": "Pick Myself Up" - }, - "2227": { - "Composer": null, - "Name": "Crystal Ball" - }, - "2228": { - "Composer": null, - "Name": "Equal Rights Downpresser Man" - }, - "2434": { - "Composer": "Mick Hucknall and Neil Moss", - "Name": "Holding Back The Years" - }, - "2435": { - "Composer": "John and William Valentine", - "Name": "Money's Too Tight To Mention" - }, - "2436": { - "Composer": "Mick Hucknall", - "Name": "The Right Thing" - }, - "2437": { - "Composer": "Jimmy and Vella Cameron", - "Name": "It's Only Love" - }, - "2438": { - "Composer": "Mick Hucknall", - "Name": "A New Flame" - }, - "2439": { - "Composer": "Mick Hucknall and Lamont Dozier", - "Name": "You've Got It" - }, - "2440": { - "Composer": "Kenny Gamble and Leon Huff", - "Name": "If You Don't Know Me By Now" - }, - "2441": { - "Composer": "Mick Hucknall", - "Name": "Stars" - }, - "2442": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "Name": "Something Got Me Started" - }, - "2443": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "Name": "Thrill Me" - }, - "2444": { - "Composer": "Mick Hucknall", - "Name": "Your Mirror" - }, - "2445": { - "Composer": "Mick Hucknall", - "Name": "For Your Babies" - }, - "2446": { - "Composer": "Mick Hucknall", - "Name": "So Beautiful" - }, - "2447": { - "Composer": "Carolyn Franklin and Sonny Saunders", - "Name": "Angel" - }, - "2448": { - "Composer": "Mick Hucknall", - "Name": "Fairground" - }, - "3132": { - "Composer": "Sykes", - "Name": "Still Of The Night" - }, - "3133": { - "Composer": "Marsden", - "Name": "Here I Go Again" - }, - "3134": { - "Composer": "Sykes", - "Name": "Is This Love" - }, - "3135": { - "Composer": "Galley", - "Name": "Love Ain't No Stranger" - }, - "3136": { - "Composer": "Sykes", - "Name": "Looking For Love" - }, - "3137": { - "Composer": "Vandenberg", - "Name": "Now You're Gone" - }, - "3138": { - "Composer": "Coverdale", - "Name": "Slide It In" - }, - "3139": { - "Composer": "Moody", - "Name": "Slow An' Easy" - }, - "3140": { - "Composer": "Vandenberg", - "Name": "Judgement Day" - }, - "3141": { - "Composer": "Sykes", - "Name": "You're Gonna Break My Hart Again" - }, - "3142": { - "Composer": "Vandenberg", - "Name": "The Deeper The Love" - }, - "3143": { - "Composer": "Coverdale", - "Name": "Crying In The Rain" - }, - "3144": { - "Composer": "Marsden/Moody", - "Name": "Fool For Your Loving" - }, - "3145": { - "Composer": "Vandenberg", - "Name": "Sweet Lady Luck" - } - }, - "Title": "Greatest Hits", - "artist": { - "ArtistId": 100, - "albums": { - "141": { - "tracks": { - "1702": { - "Name": "Are You Gonna Go My Way" - }, - "1703": { - "Name": "Fly Away" - }, - "1704": { - "Name": "Rock And Roll Is Dead" - }, - "1705": { - "Name": "Again" - }, - "1706": { - "Name": "It Ain't Over 'Til It's Over" - }, - "1707": { - "Name": "Can't Get You Off My Mind" - }, - "1708": { - "Name": "Mr. Cab Driver" - }, - "1709": { - "Name": "American Woman" - }, - "1710": { - "Name": "Stand By My Woman" - }, - "1711": { - "Name": "Always On The Run" - }, - "1712": { - "Name": "Heaven Help" - }, - "1713": { - "Name": "I Belong To You" - }, - "1714": { - "Name": "Believe" - }, - "1715": { - "Name": "Let Love Rule" - }, - "1716": { - "Name": "Black Velveteen" - }, - "2216": { - "Name": "Johnny B. Goode" - }, - "2217": { - "Name": "Don't Look Back" - }, - "2218": { - "Name": "Jah Seh No" - }, - "2219": { - "Name": "I'm The Toughest" - }, - "2220": { - "Name": "Nothing But Love" - }, - "2221": { - "Name": "Buk-In-Hamm Palace" - }, - "2222": { - "Name": "Bush Doctor" - }, - "2223": { - "Name": "Wanted Dread And Alive" - }, - "2224": { - "Name": "Mystic Man" - }, - "2225": { - "Name": "Coming In Hot" - }, - "2226": { - "Name": "Pick Myself Up" - }, - "2227": { - "Name": "Crystal Ball" - }, - "2228": { - "Name": "Equal Rights Downpresser Man" - }, - "2434": { - "Name": "Holding Back The Years" - }, - "2435": { - "Name": "Money's Too Tight To Mention" - }, - "2436": { - "Name": "The Right Thing" - }, - "2437": { - "Name": "It's Only Love" - }, - "2438": { - "Name": "A New Flame" - }, - "2439": { - "Name": "You've Got It" - }, - "2440": { - "Name": "If You Don't Know Me By Now" - }, - "2441": { - "Name": "Stars" - }, - "2442": { - "Name": "Something Got Me Started" - }, - "2443": { - "Name": "Thrill Me" - }, - "2444": { - "Name": "Your Mirror" - }, - "2445": { - "Name": "For Your Babies" - }, - "2446": { - "Name": "So Beautiful" - }, - "2447": { - "Name": "Angel" - }, - "2448": { - "Name": "Fairground" - }, - "3132": { - "Name": "Still Of The Night" - }, - "3133": { - "Name": "Here I Go Again" - }, - "3134": { - "Name": "Is This Love" - }, - "3135": { - "Name": "Love Ain't No Stranger" - }, - "3136": { - "Name": "Looking For Love" - }, - "3137": { - "Name": "Now You're Gone" - }, - "3138": { - "Name": "Slide It In" - }, - "3139": { - "Name": "Slow An' Easy" - }, - "3140": { - "Name": "Judgement Day" - }, - "3141": { - "Name": "You're Gonna Break My Hart Again" - }, - "3142": { - "Name": "The Deeper The Love" - }, - "3143": { - "Name": "Crying In The Rain" - }, - "3144": { - "Name": "Fool For Your Loving" - }, - "3145": { - "Name": "Sweet Lady Luck" - } - }, - "Title": "Greatest Hits" - } - }, - "Name": "Lenny Kravitz" - } - }, - "144": { - "tracks": { - "1745": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Pseudo Silk Kimono" - }, - "1746": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Kayleigh" - }, - "1747": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Lavender" - }, - "1748": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel" - }, - "1749": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Heart Of Lothian: Wide Boy / Curtain Call" - }, - "1750": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Waterhole (Expresso Bongo)" - }, - "1751": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Lords Of The Backstage" - }, - "1752": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold" - }, - "1753": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "Childhoods End?" - }, - "1754": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "Name": "White Feather" - } - }, - "Title": "Misplaced Childhood", - "artist": { - "ArtistId": 102, - "albums": { - "144": { - "tracks": { - "1745": { - "Name": "Pseudo Silk Kimono" - }, - "1746": { - "Name": "Kayleigh" - }, - "1747": { - "Name": "Lavender" - }, - "1748": { - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel" - }, - "1749": { - "Name": "Heart Of Lothian: Wide Boy / Curtain Call" - }, - "1750": { - "Name": "Waterhole (Expresso Bongo)" - }, - "1751": { - "Name": "Lords Of The Backstage" - }, - "1752": { - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold" - }, - "1753": { - "Name": "Childhoods End?" - }, - "1754": { - "Name": "White Feather" - } - }, - "Title": "Misplaced Childhood" - } - }, - "Name": "Marillion" - } - }, - "145": { - "tracks": { - "1755": { - "Composer": "Carlinhos Brown", - "Name": "Arrepio" - }, - "1756": { - "Composer": "Carlinhos Brown", - "Name": "Magamalabares" - }, - "1757": { - "Composer": "Morais", - "Name": "Chuva No Brejo" - }, - "1759": { - "Composer": "Lulu Santos", - "Name": "Tempos Modernos" - }, - "1762": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Panis Et Circenses" - }, - "1763": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "De Noite Na Cama" - }, - "1764": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Beija Eu" - }, - "1765": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Give Me Love" - }, - "1766": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Ainda Lembro" - }, - "1769": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Ao Meu Redor" - }, - "1770": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Bem Leve" - }, - "1771": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "Segue O Seco" - }, - "1772": { - "Composer": "Caetano Veloso e Gilberto Gil", - "Name": "O Xote Das Meninas" - } - }, - "Title": "Barulhinho Bom", - "artist": { - "ArtistId": 103, - "albums": { - "145": { - "tracks": { - "1755": { - "Name": "Arrepio" - }, - "1756": { - "Name": "Magamalabares" - }, - "1757": { - "Name": "Chuva No Brejo" - }, - "1759": { - "Name": "Tempos Modernos" - }, - "1762": { - "Name": "Panis Et Circenses" - }, - "1763": { - "Name": "De Noite Na Cama" - }, - "1764": { - "Name": "Beija Eu" - }, - "1765": { - "Name": "Give Me Love" - }, - "1766": { - "Name": "Ainda Lembro" - }, - "1769": { - "Name": "Ao Meu Redor" - }, - "1770": { - "Name": "Bem Leve" - }, - "1771": { - "Name": "Segue O Seco" - }, - "1772": { - "Name": "O Xote Das Meninas" - } - }, - "Title": "Barulhinho Bom" - } - }, - "Name": "Marisa Monte" - } - }, - "146": { - "tracks": { - "1773": { - "Composer": null, - "Name": "Wherever I Lay My Hat" - }, - "1774": { - "Composer": null, - "Name": "Get My Hands On Some Lovin'" - }, - "1775": { - "Composer": "William \"Mickey\" Stevenson", - "Name": "No Good Without You" - }, - "1776": { - "Composer": "Brian Holland/Eddie Holland/Lamont Dozier", - "Name": "You've Been A Long Time Coming" - }, - "1777": { - "Composer": "Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson", - "Name": "When I Had Your Love" - }, - "1778": { - "Composer": "Allen Story/George Gordy/Robert Gordy", - "Name": "You're What's Happening (In The World Today)" - }, - "1779": { - "Composer": "Ivy Hunter/Stevie Wonder", - "Name": "Loving You Is Sweeter Than Ever" - }, - "1780": { - "Composer": "Smokey Robinson/Warren \"Pete\" Moore", - "Name": "It's A Bitter Pill To Swallow" - }, - "1781": { - "Composer": "Ivy Hunter/William \"Mickey\" Stevenson", - "Name": "Seek And You Shall Find" - }, - "1782": { - "Composer": "Barrett Strong/Norman Whitfield", - "Name": "Gonna Keep On Tryin' Till I Win Your Love" - }, - "1783": { - "Composer": "Barrett Strong/Norman Whitfield", - "Name": "Gonna Give Her All The Love I've Got" - }, - "1784": { - "Composer": "Barrett Strong/Norman Whitfield/Roger Penzabene", - "Name": "I Wish It Would Rain" - }, - "1785": { - "Composer": "Dick Holler", - "Name": "Abraham, Martin And John" - }, - "1786": { - "Composer": "Al Cleveland/Marvin Gaye/Renaldo Benson", - "Name": "Save The Children" - }, - "1787": { - "Composer": "Marvin Gaye", - "Name": "You Sure Love To Ball" - }, - "1788": { - "Composer": "Marvin Gaye", - "Name": "Ego Tripping Out" - }, - "1789": { - "Composer": "Marvin Gaye", - "Name": "Praise" - }, - "1790": { - "Composer": "Marvin Gaye", - "Name": "Heavy Love Affair" - } - }, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)", - "artist": { - "ArtistId": 104, - "albums": { - "146": { - "tracks": { - "1773": { - "Name": "Wherever I Lay My Hat" - }, - "1774": { - "Name": "Get My Hands On Some Lovin'" - }, - "1775": { - "Name": "No Good Without You" - }, - "1776": { - "Name": "You've Been A Long Time Coming" - }, - "1777": { - "Name": "When I Had Your Love" - }, - "1778": { - "Name": "You're What's Happening (In The World Today)" - }, - "1779": { - "Name": "Loving You Is Sweeter Than Ever" - }, - "1780": { - "Name": "It's A Bitter Pill To Swallow" - }, - "1781": { - "Name": "Seek And You Shall Find" - }, - "1782": { - "Name": "Gonna Keep On Tryin' Till I Win Your Love" - }, - "1783": { - "Name": "Gonna Give Her All The Love I've Got" - }, - "1784": { - "Name": "I Wish It Would Rain" - }, - "1785": { - "Name": "Abraham, Martin And John" - }, - "1786": { - "Name": "Save The Children" - }, - "1787": { - "Name": "You Sure Love To Ball" - }, - "1788": { - "Name": "Ego Tripping Out" - }, - "1789": { - "Name": "Praise" - }, - "1790": { - "Name": "Heavy Love Affair" - } - }, - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - } - }, - "Name": "Marvin Gaye" - } - }, - "147": { - "tracks": { - "1791": { - "Composer": null, - "Name": "Down Under" - }, - "1792": { - "Composer": null, - "Name": "Overkill" - }, - "1793": { - "Composer": null, - "Name": "Be Good Johnny" - }, - "1794": { - "Composer": null, - "Name": "Everything I Need" - }, - "1795": { - "Composer": null, - "Name": "Down by the Sea" - }, - "1796": { - "Composer": null, - "Name": "Who Can It Be Now?" - }, - "1797": { - "Composer": null, - "Name": "It's a Mistake" - }, - "1798": { - "Composer": null, - "Name": "Dr. Heckyll & Mr. Jive" - }, - "1799": { - "Composer": null, - "Name": "Shakes and Ladders" - }, - "1800": { - "Composer": null, - "Name": "No Sign of Yesterday" - } - }, - "Title": "The Best Of Men At Work", - "artist": { - "ArtistId": 105, - "albums": { - "147": { - "tracks": { - "1791": { - "Name": "Down Under" - }, - "1792": { - "Name": "Overkill" - }, - "1793": { - "Name": "Be Good Johnny" - }, - "1794": { - "Name": "Everything I Need" - }, - "1795": { - "Name": "Down by the Sea" - }, - "1796": { - "Name": "Who Can It Be Now?" - }, - "1797": { - "Name": "It's a Mistake" - }, - "1798": { - "Name": "Dr. Heckyll & Mr. Jive" - }, - "1799": { - "Name": "Shakes and Ladders" - }, - "1800": { - "Name": "No Sign of Yesterday" - } - }, - "Title": "The Best Of Men At Work" - } - }, - "Name": "Men At Work" - } - }, - "148": { - "tracks": { - "1801": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Enter Sandman" - }, - "1802": { - "Composer": "Ulrich", - "Name": "Sad But True" - }, - "1803": { - "Composer": "Ulrich", - "Name": "Holier Than Thou" - }, - "1804": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "The Unforgiven" - }, - "1805": { - "Composer": "Ulrich", - "Name": "Wherever I May Roam" - }, - "1806": { - "Composer": "Ulrich", - "Name": "Don't Tread On Me" - }, - "1807": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Through The Never" - }, - "1808": { - "Composer": "Ulrich", - "Name": "Nothing Else Matters" - }, - "1809": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Of Wolf And Man" - }, - "1810": { - "Composer": "Ulrich", - "Name": "The God That Failed" - }, - "1811": { - "Composer": "James Hetfield, Lars Ulrich and Jason Newsted", - "Name": "My Friend Of Misery" - }, - "1812": { - "Composer": "Ulrich", - "Name": "The Struggle Within" - } - }, - "Title": "Black Album", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "149": { - "tracks": { - "1813": { - "Composer": "Harris/Tatler", - "Name": "Helpless" - }, - "1814": { - "Composer": "Holocaust", - "Name": "The Small Hours" - }, - "1815": { - "Composer": "Killing Joke", - "Name": "The Wait" - }, - "1816": { - "Composer": "Bourge/Phillips/Shelley", - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Composer": "Danzig", - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Composer": "Harris/Tatler", - "Name": "Am I Evil?" - }, - "1819": { - "Composer": "Jones/Sirotto/Smith", - "Name": "Blitzkrieg" - }, - "1820": { - "Composer": "Bourge/Phillips/Shelley", - "Name": "Breadfan" - }, - "1821": { - "Composer": "Harris/Tatler", - "Name": "The Prince" - }, - "1822": { - "Composer": "Deacon/May/Mercury/Taylor", - "Name": "Stone Cold Crazy" - }, - "1823": { - "Composer": "Culmer/Exalt", - "Name": "So What" - }, - "1824": { - "Composer": "Sweet Savage", - "Name": "Killing Time" - }, - "1825": { - "Composer": "Clarke/Kilmister/Tayler", - "Name": "Overkill" - }, - "1826": { - "Composer": "Clarke/Farren/Kilmister/Tayler", - "Name": "Damage Case" - }, - "1827": { - "Composer": "Clarke/Kilmister/Tayler", - "Name": "Stone Dead Forever" - }, - "1828": { - "Composer": "Clarke/Kilmister/Tayler", - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "150": { - "tracks": { - "1829": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Hit The Lights" - }, - "1830": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "The Four Horsemen" - }, - "1831": { - "Composer": "James Hetfield", - "Name": "Motorbreath" - }, - "1832": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "Jump In The Fire" - }, - "1833": { - "Composer": "Cliff Burton", - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Whiplash" - }, - "1835": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "Phantom Lord" - }, - "1836": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "No Remorse" - }, - "1837": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Seek & Destroy" - }, - "1838": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "151": { - "tracks": { - "1839": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Ain't My Bitch" - }, - "1840": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "2 X 4" - }, - "1841": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "The House Jack Built" - }, - "1842": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Until It Sleeps" - }, - "1843": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "King Nothing" - }, - "1844": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Hero Of The Day" - }, - "1845": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Bleeding Me" - }, - "1846": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Cure" - }, - "1847": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Poor Twisted Me" - }, - "1848": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Wasted My Hate" - }, - "1849": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Mama Said" - }, - "1850": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "Name": "Thorn Within" - }, - "1851": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "Ronnie" - }, - "1852": { - "Composer": "James Hetfield, Lars Ulrich", - "Name": "The Outlaw Torn" - } - }, - "Title": "Load", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "152": { - "tracks": { - "1853": { - "Composer": "J.Hetfield/L.Ulrich", - "Name": "Battery" - }, - "1854": { - "Composer": "K.Hammett", - "Name": "Master Of Puppets" - }, - "1855": { - "Composer": "K.Hammett", - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Composer": "K.Hammett", - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Composer": "J.Hetfield/L.Ulrich", - "Name": "Disposable Heroes" - }, - "1858": { - "Composer": "C.Burton", - "Name": "Leper Messiah" - }, - "1859": { - "Composer": "K.Hammett", - "Name": "Orion" - }, - "1860": { - "Composer": "K.Hammett", - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "153": { - "tracks": { - "1861": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Fuel" - }, - "1862": { - "Composer": "Hetfield, Ulrich", - "Name": "The Memory Remains" - }, - "1863": { - "Composer": "Hetfield, Ulrich", - "Name": "Devil's Dance" - }, - "1864": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "The Unforgiven II" - }, - "1865": { - "Composer": "Hetfield, Ulrich", - "Name": "Better Than You" - }, - "1866": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Slither" - }, - "1867": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Carpe Diem Baby" - }, - "1868": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Bad Seed" - }, - "1869": { - "Composer": "Hetfield, Ulrich, Newsted", - "Name": "Where The Wild Things Are" - }, - "1870": { - "Composer": "Hetfield, Ulrich", - "Name": "Prince Charming" - }, - "1871": { - "Composer": "Hetfield, Ulrich", - "Name": "Low Man's Lyric" - }, - "1872": { - "Composer": "Hetfield, Ulrich", - "Name": "Attitude" - }, - "1873": { - "Composer": "Hetfield, Ulrich, Hammett", - "Name": "Fixxxer" - } - }, - "Title": "ReLoad", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "154": { - "tracks": { - "1874": { - "Composer": "Metallica", - "Name": "Fight Fire With Fire" - }, - "1875": { - "Composer": "Metallica", - "Name": "Ride The Lightning" - }, - "1876": { - "Composer": "Metallica", - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Composer": "Metallica", - "Name": "Fade To Black" - }, - "1878": { - "Composer": "Metallica", - "Name": "Trapped Under Ice" - }, - "1879": { - "Composer": "Metallica", - "Name": "Escape" - }, - "1880": { - "Composer": "Metallica", - "Name": "Creeping Death" - }, - "1881": { - "Composer": "Metallica", - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "155": { - "tracks": { - "1882": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Frantic" - }, - "1883": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "St. Anger" - }, - "1884": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Some Kind Of Monster" - }, - "1885": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Dirty Window" - }, - "1886": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Invisible Kid" - }, - "1887": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "My World" - }, - "1888": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Shoot Me Again" - }, - "1889": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Sweet Amber" - }, - "1890": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "The Unnamed Feeling" - }, - "1891": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "Purify" - }, - "1892": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "156": { - "tracks": { - "1893": { - "Composer": "James Hetfield, Lars Ulrich & Jason Newsted", - "Name": "Blackened" - }, - "1894": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "Name": "...And Justice For All" - }, - "1895": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "Name": "Eye Of The Beholder" - }, - "1896": { - "Composer": "James Hetfield & Lars Ulrich", - "Name": "One" - }, - "1897": { - "Composer": "James Hetfield and Lars Ulrich", - "Name": "The Shortest Straw" - }, - "1898": { - "Composer": "James Hetfield and Lars Ulrich", - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Composer": "James Hetfield, Lars Ulrich and Cliff Burton", - "Name": "To Live Is To Die" - }, - "1901": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All", - "artist": { - "ArtistId": 50, - "albums": { - "35": { - "tracks": { - "408": { - "Name": "Free Speech For The Dumb" - }, - "409": { - "Name": "It's Electric" - }, - "410": { - "Name": "Sabbra Cadabra" - }, - "411": { - "Name": "Turn The Page" - }, - "412": { - "Name": "Die Die My Darling" - }, - "413": { - "Name": "Loverman" - }, - "414": { - "Name": "Mercyful Fate" - }, - "415": { - "Name": "Astronomy" - }, - "416": { - "Name": "Whiskey In The Jar" - }, - "417": { - "Name": "Tuesday's Gone" - }, - "418": { - "Name": "The More I See" - } - }, - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "tracks": { - "1801": { - "Name": "Enter Sandman" - }, - "1802": { - "Name": "Sad But True" - }, - "1803": { - "Name": "Holier Than Thou" - }, - "1804": { - "Name": "The Unforgiven" - }, - "1805": { - "Name": "Wherever I May Roam" - }, - "1806": { - "Name": "Don't Tread On Me" - }, - "1807": { - "Name": "Through The Never" - }, - "1808": { - "Name": "Nothing Else Matters" - }, - "1809": { - "Name": "Of Wolf And Man" - }, - "1810": { - "Name": "The God That Failed" - }, - "1811": { - "Name": "My Friend Of Misery" - }, - "1812": { - "Name": "The Struggle Within" - } - }, - "Title": "Black Album" - }, - "149": { - "tracks": { - "1813": { - "Name": "Helpless" - }, - "1814": { - "Name": "The Small Hours" - }, - "1815": { - "Name": "The Wait" - }, - "1816": { - "Name": "Crash Course In Brain Surgery" - }, - "1817": { - "Name": "Last Caress/Green Hell" - }, - "1818": { - "Name": "Am I Evil?" - }, - "1819": { - "Name": "Blitzkrieg" - }, - "1820": { - "Name": "Breadfan" - }, - "1821": { - "Name": "The Prince" - }, - "1822": { - "Name": "Stone Cold Crazy" - }, - "1823": { - "Name": "So What" - }, - "1824": { - "Name": "Killing Time" - }, - "1825": { - "Name": "Overkill" - }, - "1826": { - "Name": "Damage Case" - }, - "1827": { - "Name": "Stone Dead Forever" - }, - "1828": { - "Name": "Too Late Too Late" - } - }, - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "tracks": { - "1829": { - "Name": "Hit The Lights" - }, - "1830": { - "Name": "The Four Horsemen" - }, - "1831": { - "Name": "Motorbreath" - }, - "1832": { - "Name": "Jump In The Fire" - }, - "1833": { - "Name": "(Anesthesia) Pulling Teeth" - }, - "1834": { - "Name": "Whiplash" - }, - "1835": { - "Name": "Phantom Lord" - }, - "1836": { - "Name": "No Remorse" - }, - "1837": { - "Name": "Seek & Destroy" - }, - "1838": { - "Name": "Metal Militia" - } - }, - "Title": "Kill 'Em All" - }, - "151": { - "tracks": { - "1839": { - "Name": "Ain't My Bitch" - }, - "1840": { - "Name": "2 X 4" - }, - "1841": { - "Name": "The House Jack Built" - }, - "1842": { - "Name": "Until It Sleeps" - }, - "1843": { - "Name": "King Nothing" - }, - "1844": { - "Name": "Hero Of The Day" - }, - "1845": { - "Name": "Bleeding Me" - }, - "1846": { - "Name": "Cure" - }, - "1847": { - "Name": "Poor Twisted Me" - }, - "1848": { - "Name": "Wasted My Hate" - }, - "1849": { - "Name": "Mama Said" - }, - "1850": { - "Name": "Thorn Within" - }, - "1851": { - "Name": "Ronnie" - }, - "1852": { - "Name": "The Outlaw Torn" - } - }, - "Title": "Load" - }, - "152": { - "tracks": { - "1853": { - "Name": "Battery" - }, - "1854": { - "Name": "Master Of Puppets" - }, - "1855": { - "Name": "The Thing That Should Not Be" - }, - "1856": { - "Name": "Welcome Home (Sanitarium)" - }, - "1857": { - "Name": "Disposable Heroes" - }, - "1858": { - "Name": "Leper Messiah" - }, - "1859": { - "Name": "Orion" - }, - "1860": { - "Name": "Damage Inc." - } - }, - "Title": "Master Of Puppets" - }, - "153": { - "tracks": { - "1861": { - "Name": "Fuel" - }, - "1862": { - "Name": "The Memory Remains" - }, - "1863": { - "Name": "Devil's Dance" - }, - "1864": { - "Name": "The Unforgiven II" - }, - "1865": { - "Name": "Better Than You" - }, - "1866": { - "Name": "Slither" - }, - "1867": { - "Name": "Carpe Diem Baby" - }, - "1868": { - "Name": "Bad Seed" - }, - "1869": { - "Name": "Where The Wild Things Are" - }, - "1870": { - "Name": "Prince Charming" - }, - "1871": { - "Name": "Low Man's Lyric" - }, - "1872": { - "Name": "Attitude" - }, - "1873": { - "Name": "Fixxxer" - } - }, - "Title": "ReLoad" - }, - "154": { - "tracks": { - "1874": { - "Name": "Fight Fire With Fire" - }, - "1875": { - "Name": "Ride The Lightning" - }, - "1876": { - "Name": "For Whom The Bell Tolls" - }, - "1877": { - "Name": "Fade To Black" - }, - "1878": { - "Name": "Trapped Under Ice" - }, - "1879": { - "Name": "Escape" - }, - "1880": { - "Name": "Creeping Death" - }, - "1881": { - "Name": "The Call Of Ktulu" - } - }, - "Title": "Ride The Lightning" - }, - "155": { - "tracks": { - "1882": { - "Name": "Frantic" - }, - "1883": { - "Name": "St. Anger" - }, - "1884": { - "Name": "Some Kind Of Monster" - }, - "1885": { - "Name": "Dirty Window" - }, - "1886": { - "Name": "Invisible Kid" - }, - "1887": { - "Name": "My World" - }, - "1888": { - "Name": "Shoot Me Again" - }, - "1889": { - "Name": "Sweet Amber" - }, - "1890": { - "Name": "The Unnamed Feeling" - }, - "1891": { - "Name": "Purify" - }, - "1892": { - "Name": "All Within My Hands" - } - }, - "Title": "St. Anger" - }, - "156": { - "tracks": { - "1893": { - "Name": "Blackened" - }, - "1894": { - "Name": "...And Justice For All" - }, - "1895": { - "Name": "Eye Of The Beholder" - }, - "1896": { - "Name": "One" - }, - "1897": { - "Name": "The Shortest Straw" - }, - "1898": { - "Name": "Harvester Of Sorrow" - }, - "1899": { - "Name": "The Frayed Ends Of Sanity" - }, - "1900": { - "Name": "To Live Is To Die" - }, - "1901": { - "Name": "Dyers Eve" - } - }, - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - } - }, - "157": { - "tracks": { - "1902": { - "Composer": "J. Carisi", - "Name": "Springsville" - }, - "1903": { - "Composer": "L. Delibes", - "Name": "The Maids Of Cadiz" - }, - "1904": { - "Composer": "Dave Brubeck", - "Name": "The Duke" - }, - "1905": { - "Composer": "Ira Gershwin, Kurt Weill", - "Name": "My Ship" - }, - "1906": { - "Composer": "Miles Davis, Gil Evans", - "Name": "Miles Ahead" - }, - "1907": { - "Composer": "Gil Evans", - "Name": "Blues For Pablo" - }, - "1908": { - "Composer": "A. Jamal", - "Name": "New Rhumba" - }, - "1909": { - "Composer": "R. Troup, L. Worth", - "Name": "The Meaning Of The Blues" - }, - "1910": { - "Composer": "J.J. Johnson", - "Name": "Lament" - }, - "1911": { - "Composer": "H. Spina, J. Elliott", - "Name": "I Don't Wanna Be Kissed (By Anyone But You)" - }, - "1912": { - "Composer": "J. Carisi", - "Name": "Springsville (Alternate Take)" - }, - "1913": { - "Composer": "Gil Evans", - "Name": "Blues For Pablo (Alternate Take)" - }, - "1914": { - "Composer": "J.J. Johnson/R. Troup, L. Worth", - "Name": "The Meaning Of The Blues/Lament (Alternate Take)" - }, - "1915": { - "Composer": "H. Spina, J. Elliott", - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)" - } - }, - "Title": "Miles Ahead", - "artist": { - "ArtistId": 68, - "albums": { - "48": { - "tracks": { - "597": { - "Name": "Now's The Time" - }, - "598": { - "Name": "Jeru" - }, - "599": { - "Name": "Compulsion" - }, - "600": { - "Name": "Tempus Fugit" - }, - "601": { - "Name": "Walkin'" - }, - "602": { - "Name": "'Round Midnight" - }, - "603": { - "Name": "Bye Bye Blackbird" - }, - "604": { - "Name": "New Rhumba" - }, - "605": { - "Name": "Generique" - }, - "606": { - "Name": "Summertime" - }, - "607": { - "Name": "So What" - }, - "608": { - "Name": "The Pan Piper" - }, - "609": { - "Name": "Someday My Prince Will Come" - } - }, - "Title": "The Essential Miles Davis [Disc 1]" - }, - "49": { - "tracks": { - "610": { - "Name": "My Funny Valentine (Live)" - }, - "611": { - "Name": "E.S.P." - }, - "612": { - "Name": "Nefertiti" - }, - "613": { - "Name": "Petits Machins (Little Stuff)" - }, - "614": { - "Name": "Miles Runs The Voodoo Down" - }, - "615": { - "Name": "Little Church (Live)" - }, - "616": { - "Name": "Black Satin" - }, - "617": { - "Name": "Jean Pierre (Live)" - }, - "618": { - "Name": "Time After Time" - }, - "619": { - "Name": "Portia" - } - }, - "Title": "The Essential Miles Davis [Disc 2]" - }, - "157": { - "tracks": { - "1902": { - "Name": "Springsville" - }, - "1903": { - "Name": "The Maids Of Cadiz" - }, - "1904": { - "Name": "The Duke" - }, - "1905": { - "Name": "My Ship" - }, - "1906": { - "Name": "Miles Ahead" - }, - "1907": { - "Name": "Blues For Pablo" - }, - "1908": { - "Name": "New Rhumba" - }, - "1909": { - "Name": "The Meaning Of The Blues" - }, - "1910": { - "Name": "Lament" - }, - "1911": { - "Name": "I Don't Wanna Be Kissed (By Anyone But You)" - }, - "1912": { - "Name": "Springsville (Alternate Take)" - }, - "1913": { - "Name": "Blues For Pablo (Alternate Take)" - }, - "1914": { - "Name": "The Meaning Of The Blues/Lament (Alternate Take)" - }, - "1915": { - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)" - } - }, - "Title": "Miles Ahead" - } - }, - "Name": "Miles Davis" - } - }, - "158": { - "tracks": { - "1917": { - "Composer": "Dolores Duran", - "Name": "A Noite Do Meu Bem" - }, - "1919": { - "Composer": "Folclore", - "Name": "Cuitelinho" - }, - "1921": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Nos Bailes Da Vida" - }, - "1922": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Menestrel Das Alagoas" - }, - "1923": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Brasil" - }, - "1925": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Name": "Um Gosto De Sol" - }, - "1926": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Solar" - }, - "1928": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Maria, Maria" - } - }, - "Title": "Milton Nascimento Ao Vivo", - "artist": { - "ArtistId": 42, - "albums": { - "158": { - "tracks": { - "1917": { - "Name": "A Noite Do Meu Bem" - }, - "1919": { - "Name": "Cuitelinho" - }, - "1921": { - "Name": "Nos Bailes Da Vida" - }, - "1922": { - "Name": "Menestrel Das Alagoas" - }, - "1923": { - "Name": "Brasil" - }, - "1925": { - "Name": "Um Gosto De Sol" - }, - "1926": { - "Name": "Solar" - }, - "1928": { - "Name": "Maria, Maria" - } - }, - "Title": "Milton Nascimento Ao Vivo" - }, - "159": { - "tracks": { - "1929": { - "Name": "Minas" - }, - "1931": { - "Name": "Beijo Partido" - }, - "1934": { - "Name": "Ponta de Areia" - }, - "1935": { - "Name": "Trastevere" - }, - "1936": { - "Name": "Idolatrada" - }, - "1937": { - "Name": "Leila (Venha Ser Feliz)" - }, - "1938": { - "Name": "Paula E Bebeto" - }, - "1939": { - "Name": "Simples" - }, - "1940": { - "Name": "Norwegian Wood" - } - }, - "Title": "Minas" - } - }, - "Name": "Milton Nascimento" - } - }, - "159": { - "tracks": { - "1929": { - "Composer": "Milton Nascimento, Caetano Veloso", - "Name": "Minas" - }, - "1931": { - "Composer": "Toninho Horta", - "Name": "Beijo Partido" - }, - "1934": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Ponta de Areia" - }, - "1935": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "Name": "Trastevere" - }, - "1936": { - "Composer": "Milton Nascimento, Fernando Brant", - "Name": "Idolatrada" - }, - "1937": { - "Composer": "Milton Nascimento", - "Name": "Leila (Venha Ser Feliz)" - }, - "1938": { - "Composer": "Milton Nascimento, Caetano Veloso", - "Name": "Paula E Bebeto" - }, - "1939": { - "Composer": "Nelson Angelo", - "Name": "Simples" - }, - "1940": { - "Composer": "John Lennon, Paul McCartney", - "Name": "Norwegian Wood" - } - }, - "Title": "Minas", - "artist": { - "ArtistId": 42, - "albums": { - "158": { - "tracks": { - "1917": { - "Name": "A Noite Do Meu Bem" - }, - "1919": { - "Name": "Cuitelinho" - }, - "1921": { - "Name": "Nos Bailes Da Vida" - }, - "1922": { - "Name": "Menestrel Das Alagoas" - }, - "1923": { - "Name": "Brasil" - }, - "1925": { - "Name": "Um Gosto De Sol" - }, - "1926": { - "Name": "Solar" - }, - "1928": { - "Name": "Maria, Maria" - } - }, - "Title": "Milton Nascimento Ao Vivo" - }, - "159": { - "tracks": { - "1929": { - "Name": "Minas" - }, - "1931": { - "Name": "Beijo Partido" - }, - "1934": { - "Name": "Ponta de Areia" - }, - "1935": { - "Name": "Trastevere" - }, - "1936": { - "Name": "Idolatrada" - }, - "1937": { - "Name": "Leila (Venha Ser Feliz)" - }, - "1938": { - "Name": "Paula E Bebeto" - }, - "1939": { - "Name": "Simples" - }, - "1940": { - "Name": "Norwegian Wood" - } - }, - "Title": "Minas" - } - }, - "Name": "Milton Nascimento" - } - }, - "163": { - "tracks": { - "1986": { - "Composer": "Kurt Cobain", - "Name": "Intro" - }, - "1987": { - "Composer": "Kurt Cobain", - "Name": "School" - }, - "1988": { - "Composer": "Kurt Cobain", - "Name": "Drain You" - }, - "1989": { - "Composer": "Nirvana", - "Name": "Aneurysm" - }, - "1990": { - "Composer": "Nirvana", - "Name": "Smells Like Teen Spirit" - }, - "1991": { - "Composer": "Kurt Cobain", - "Name": "Been A Son" - }, - "1992": { - "Composer": "Kurt Cobain", - "Name": "Lithium" - }, - "1993": { - "Composer": "Kurt Cobain", - "Name": "Sliver" - }, - "1994": { - "Composer": "Kurt Cobain", - "Name": "Spank Thru" - }, - "1995": { - "Composer": "Nirvana", - "Name": "Scentless Apprentice" - }, - "1996": { - "Composer": "Kurt Cobain", - "Name": "Heart-Shaped Box" - }, - "1997": { - "Composer": "Kurt Cobain", - "Name": "Milk It" - }, - "1998": { - "Composer": "Kurt Cobain", - "Name": "Negative Creep" - }, - "1999": { - "Composer": "Kurt Cobain", - "Name": "Polly" - }, - "2000": { - "Composer": "Kurt Cobain", - "Name": "Breed" - }, - "2001": { - "Composer": "Kurt Cobain", - "Name": "Tourette's" - }, - "2002": { - "Composer": "Kurt Cobain", - "Name": "Blew" - } - }, - "Title": "From The Muddy Banks Of The Wishkah [Live]", - "artist": { - "ArtistId": 110, - "albums": { - "163": { - "tracks": { - "1986": { - "Name": "Intro" - }, - "1987": { - "Name": "School" - }, - "1988": { - "Name": "Drain You" - }, - "1989": { - "Name": "Aneurysm" - }, - "1990": { - "Name": "Smells Like Teen Spirit" - }, - "1991": { - "Name": "Been A Son" - }, - "1992": { - "Name": "Lithium" - }, - "1993": { - "Name": "Sliver" - }, - "1994": { - "Name": "Spank Thru" - }, - "1995": { - "Name": "Scentless Apprentice" - }, - "1996": { - "Name": "Heart-Shaped Box" - }, - "1997": { - "Name": "Milk It" - }, - "1998": { - "Name": "Negative Creep" - }, - "1999": { - "Name": "Polly" - }, - "2000": { - "Name": "Breed" - }, - "2001": { - "Name": "Tourette's" - }, - "2002": { - "Name": "Blew" - } - }, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "164": { - "tracks": { - "2003": { - "Name": "Smells Like Teen Spirit" - }, - "2004": { - "Name": "In Bloom" - }, - "2005": { - "Name": "Come As You Are" - }, - "2006": { - "Name": "Breed" - }, - "2007": { - "Name": "Lithium" - }, - "2008": { - "Name": "Polly" - }, - "2009": { - "Name": "Territorial Pissings" - }, - "2010": { - "Name": "Drain You" - }, - "2011": { - "Name": "Lounge Act" - }, - "2012": { - "Name": "Stay Away" - }, - "2013": { - "Name": "On A Plain" - }, - "2014": { - "Name": "Something In The Way" - } - }, - "Title": "Nevermind" - } - }, - "Name": "Nirvana" - } - }, - "164": { - "tracks": { - "2003": { - "Composer": "Kurt Cobain", - "Name": "Smells Like Teen Spirit" - }, - "2004": { - "Composer": "Kurt Cobain", - "Name": "In Bloom" - }, - "2005": { - "Composer": "Kurt Cobain", - "Name": "Come As You Are" - }, - "2006": { - "Composer": "Kurt Cobain", - "Name": "Breed" - }, - "2007": { - "Composer": "Kurt Cobain", - "Name": "Lithium" - }, - "2008": { - "Composer": "Kurt Cobain", - "Name": "Polly" - }, - "2009": { - "Composer": "Kurt Cobain", - "Name": "Territorial Pissings" - }, - "2010": { - "Composer": "Kurt Cobain", - "Name": "Drain You" - }, - "2011": { - "Composer": "Kurt Cobain", - "Name": "Lounge Act" - }, - "2012": { - "Composer": "Kurt Cobain", - "Name": "Stay Away" - }, - "2013": { - "Composer": "Kurt Cobain", - "Name": "On A Plain" - }, - "2014": { - "Composer": "Kurt Cobain", - "Name": "Something In The Way" - } - }, - "Title": "Nevermind", - "artist": { - "ArtistId": 110, - "albums": { - "163": { - "tracks": { - "1986": { - "Name": "Intro" - }, - "1987": { - "Name": "School" - }, - "1988": { - "Name": "Drain You" - }, - "1989": { - "Name": "Aneurysm" - }, - "1990": { - "Name": "Smells Like Teen Spirit" - }, - "1991": { - "Name": "Been A Son" - }, - "1992": { - "Name": "Lithium" - }, - "1993": { - "Name": "Sliver" - }, - "1994": { - "Name": "Spank Thru" - }, - "1995": { - "Name": "Scentless Apprentice" - }, - "1996": { - "Name": "Heart-Shaped Box" - }, - "1997": { - "Name": "Milk It" - }, - "1998": { - "Name": "Negative Creep" - }, - "1999": { - "Name": "Polly" - }, - "2000": { - "Name": "Breed" - }, - "2001": { - "Name": "Tourette's" - }, - "2002": { - "Name": "Blew" - } - }, - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "164": { - "tracks": { - "2003": { - "Name": "Smells Like Teen Spirit" - }, - "2004": { - "Name": "In Bloom" - }, - "2005": { - "Name": "Come As You Are" - }, - "2006": { - "Name": "Breed" - }, - "2007": { - "Name": "Lithium" - }, - "2008": { - "Name": "Polly" - }, - "2009": { - "Name": "Territorial Pissings" - }, - "2010": { - "Name": "Drain You" - }, - "2011": { - "Name": "Lounge Act" - }, - "2012": { - "Name": "Stay Away" - }, - "2013": { - "Name": "On A Plain" - }, - "2014": { - "Name": "Something In The Way" - } - }, - "Title": "Nevermind" - } - }, - "Name": "Nirvana" - } - }, - "166": { - "tracks": { - "2030": { - "Composer": null, - "Name": "Requebra" - }, - "2032": { - "Composer": null, - "Name": "Olodum - Alegria Geral" - }, - "2035": { - "Composer": null, - "Name": "Todo Amor (Asas Da Liberdade)" - }, - "2038": { - "Composer": null, - "Name": "Cartao Postal" - }, - "2039": { - "Composer": null, - "Name": "Jeito Faceiro" - }, - "2040": { - "Composer": null, - "Name": "Revolta Olodum" - }, - "2042": { - "Composer": null, - "Name": "Protesto Do Olodum (Ao Vivo)" - }, - "2043": { - "Composer": null, - "Name": "Olodum - Smile (Instrumental)" - } - }, - "Title": "Olodum", - "artist": { - "ArtistId": 112, - "albums": { - "166": { - "tracks": { - "2030": { - "Name": "Requebra" - }, - "2032": { - "Name": "Olodum - Alegria Geral" - }, - "2035": { - "Name": "Todo Amor (Asas Da Liberdade)" - }, - "2038": { - "Name": "Cartao Postal" - }, - "2039": { - "Name": "Jeito Faceiro" - }, - "2040": { - "Name": "Revolta Olodum" - }, - "2042": { - "Name": "Protesto Do Olodum (Ao Vivo)" - }, - "2043": { - "Name": "Olodum - Smile (Instrumental)" - } - }, - "Title": "Olodum" - } - }, - "Name": "Olodum" - } - }, - "168": { - "tracks": { - "2065": { - "Composer": "Fito Paez/Herbert Vianna", - "Name": "Trac Trac" - }, - "2067": { - "Composer": "Herbert Vianna", - "Name": "Mensagen De Amor (2000)" - }, - "2068": { - "Composer": "Bahiano/Diego Blanco/Herbert Vianna", - "Name": "Lourinha Bombril" - }, - "2069": { - "Composer": "Herbert Vianna", - "Name": "La Bella Luna" - }, - "2070": { - "Composer": "Herbert Vianna", - "Name": "Busca Vida" - }, - "2071": { - "Composer": "Carlinhos Brown/Herbert Vianna", - "Name": "Uma Brasileira" - }, - "2072": { - "Composer": "Herbert Vianna", - "Name": "Luis Inacio (300 Picaretas)" - }, - "2073": { - "Composer": "Herbert Vianna", - "Name": "Saber Amar" - }, - "2074": { - "Composer": "Herbert Vianna", - "Name": "Ela Disse Adeus" - }, - "2075": { - "Composer": "Herbert Vianna", - "Name": "O Amor Nao Sabe Esperar" - } - }, - "Title": "Arquivo II", - "artist": { - "ArtistId": 113, - "albums": { - "168": { - "tracks": { - "2065": { - "Name": "Trac Trac" - }, - "2067": { - "Name": "Mensagen De Amor (2000)" - }, - "2068": { - "Name": "Lourinha Bombril" - }, - "2069": { - "Name": "La Bella Luna" - }, - "2070": { - "Name": "Busca Vida" - }, - "2071": { - "Name": "Uma Brasileira" - }, - "2072": { - "Name": "Luis Inacio (300 Picaretas)" - }, - "2073": { - "Name": "Saber Amar" - }, - "2074": { - "Name": "Ela Disse Adeus" - }, - "2075": { - "Name": "O Amor Nao Sabe Esperar" - } - }, - "Title": "Arquivo II" - }, - "169": { - "tracks": { - "2079": { - "Name": "Cinema Mudo" - }, - "2080": { - "Name": "Alagados" - }, - "2081": { - "Name": "Lanterna Dos Afogados" - }, - "2083": { - "Name": "Vital E Sua Moto" - }, - "2084": { - "Name": "O Beco" - }, - "2085": { - "Name": "Meu Erro" - }, - "2086": { - "Name": "Perplexo" - }, - "2087": { - "Name": "Me Liga" - }, - "2088": { - "Name": "Quase Um Segundo" - }, - "2089": { - "Name": "Selvagem" - }, - "2090": { - "Name": "Romance Ideal" - }, - "2092": { - "Name": "SKA" - } - }, - "Title": "Arquivo Os Paralamas Do Sucesso" - } - }, - "Name": "Os Paralamas Do Sucesso" - } - }, - "169": { - "tracks": { - "2079": { - "Composer": null, - "Name": "Cinema Mudo" - }, - "2080": { - "Composer": null, - "Name": "Alagados" - }, - "2081": { - "Composer": null, - "Name": "Lanterna Dos Afogados" - }, - "2083": { - "Composer": null, - "Name": "Vital E Sua Moto" - }, - "2084": { - "Composer": null, - "Name": "O Beco" - }, - "2085": { - "Composer": null, - "Name": "Meu Erro" - }, - "2086": { - "Composer": null, - "Name": "Perplexo" - }, - "2087": { - "Composer": null, - "Name": "Me Liga" - }, - "2088": { - "Composer": null, - "Name": "Quase Um Segundo" - }, - "2089": { - "Composer": null, - "Name": "Selvagem" - }, - "2090": { - "Composer": null, - "Name": "Romance Ideal" - }, - "2092": { - "Composer": null, - "Name": "SKA" - } - }, - "Title": "Arquivo Os Paralamas Do Sucesso", - "artist": { - "ArtistId": 113, - "albums": { - "168": { - "tracks": { - "2065": { - "Name": "Trac Trac" - }, - "2067": { - "Name": "Mensagen De Amor (2000)" - }, - "2068": { - "Name": "Lourinha Bombril" - }, - "2069": { - "Name": "La Bella Luna" - }, - "2070": { - "Name": "Busca Vida" - }, - "2071": { - "Name": "Uma Brasileira" - }, - "2072": { - "Name": "Luis Inacio (300 Picaretas)" - }, - "2073": { - "Name": "Saber Amar" - }, - "2074": { - "Name": "Ela Disse Adeus" - }, - "2075": { - "Name": "O Amor Nao Sabe Esperar" - } - }, - "Title": "Arquivo II" - }, - "169": { - "tracks": { - "2079": { - "Name": "Cinema Mudo" - }, - "2080": { - "Name": "Alagados" - }, - "2081": { - "Name": "Lanterna Dos Afogados" - }, - "2083": { - "Name": "Vital E Sua Moto" - }, - "2084": { - "Name": "O Beco" - }, - "2085": { - "Name": "Meu Erro" - }, - "2086": { - "Name": "Perplexo" - }, - "2087": { - "Name": "Me Liga" - }, - "2088": { - "Name": "Quase Um Segundo" - }, - "2089": { - "Name": "Selvagem" - }, - "2090": { - "Name": "Romance Ideal" - }, - "2092": { - "Name": "SKA" - } - }, - "Title": "Arquivo Os Paralamas Do Sucesso" - } - }, - "Name": "Os Paralamas Do Sucesso" - } - }, - "170": { - "tracks": { - "2093": { - "Composer": "O. Osbourne", - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)", - "artist": { - "ArtistId": 114, - "albums": { - "170": { - "tracks": { - "2093": { - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "tracks": { - "2094": { - "Name": "I Don't Know" - }, - "2095": { - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz" - }, - "172": { - "tracks": { - "2096": { - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "tracks": { - "2097": { - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)" - }, - "174": { - "tracks": { - "2099": { - "Name": "I Don't Know" - }, - "2100": { - "Name": "Crazy Train" - }, - "2101": { - "Name": "Believer" - }, - "2102": { - "Name": "Mr. Crowley" - }, - "2103": { - "Name": "Flying High Again" - }, - "2104": { - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Name": "Steal Away (The Night)" - }, - "2106": { - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Name": "Iron Man" - }, - "2108": { - "Name": "Children Of The Grave" - }, - "2109": { - "Name": "Paranoid" - }, - "2110": { - "Name": "Goodbye To Romance" - }, - "2111": { - "Name": "No Bone Movies" - }, - "2112": { - "Name": "Dee" - } - }, - "Title": "Tribute" - }, - "256": { - "tracks": { - "3276": { - "Name": "Sympton of the Universe" - }, - "3277": { - "Name": "Snowblind" - }, - "3278": { - "Name": "Black Sabbath" - }, - "3279": { - "Name": "Fairies Wear Boots" - }, - "3280": { - "Name": "War Pigs" - }, - "3281": { - "Name": "The Wizard" - }, - "3282": { - "Name": "N.I.B." - }, - "3283": { - "Name": "Sweet Leaf" - }, - "3284": { - "Name": "Never Say Die" - }, - "3285": { - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - } - }, - "171": { - "tracks": { - "2094": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "Name": "I Don't Know" - }, - "2095": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz", - "artist": { - "ArtistId": 114, - "albums": { - "170": { - "tracks": { - "2093": { - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "tracks": { - "2094": { - "Name": "I Don't Know" - }, - "2095": { - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz" - }, - "172": { - "tracks": { - "2096": { - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "tracks": { - "2097": { - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)" - }, - "174": { - "tracks": { - "2099": { - "Name": "I Don't Know" - }, - "2100": { - "Name": "Crazy Train" - }, - "2101": { - "Name": "Believer" - }, - "2102": { - "Name": "Mr. Crowley" - }, - "2103": { - "Name": "Flying High Again" - }, - "2104": { - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Name": "Steal Away (The Night)" - }, - "2106": { - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Name": "Iron Man" - }, - "2108": { - "Name": "Children Of The Grave" - }, - "2109": { - "Name": "Paranoid" - }, - "2110": { - "Name": "Goodbye To Romance" - }, - "2111": { - "Name": "No Bone Movies" - }, - "2112": { - "Name": "Dee" - } - }, - "Title": "Tribute" - }, - "256": { - "tracks": { - "3276": { - "Name": "Sympton of the Universe" - }, - "3277": { - "Name": "Snowblind" - }, - "3278": { - "Name": "Black Sabbath" - }, - "3279": { - "Name": "Fairies Wear Boots" - }, - "3280": { - "Name": "War Pigs" - }, - "3281": { - "Name": "The Wizard" - }, - "3282": { - "Name": "N.I.B." - }, - "3283": { - "Name": "Sweet Leaf" - }, - "3284": { - "Name": "Never Say Die" - }, - "3285": { - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - } - }, - "172": { - "tracks": { - "2096": { - "Composer": "L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads", - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)", - "artist": { - "ArtistId": 114, - "albums": { - "170": { - "tracks": { - "2093": { - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "tracks": { - "2094": { - "Name": "I Don't Know" - }, - "2095": { - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz" - }, - "172": { - "tracks": { - "2096": { - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "tracks": { - "2097": { - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)" - }, - "174": { - "tracks": { - "2099": { - "Name": "I Don't Know" - }, - "2100": { - "Name": "Crazy Train" - }, - "2101": { - "Name": "Believer" - }, - "2102": { - "Name": "Mr. Crowley" - }, - "2103": { - "Name": "Flying High Again" - }, - "2104": { - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Name": "Steal Away (The Night)" - }, - "2106": { - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Name": "Iron Man" - }, - "2108": { - "Name": "Children Of The Grave" - }, - "2109": { - "Name": "Paranoid" - }, - "2110": { - "Name": "Goodbye To Romance" - }, - "2111": { - "Name": "No Bone Movies" - }, - "2112": { - "Name": "Dee" - } - }, - "Title": "Tribute" - }, - "256": { - "tracks": { - "3276": { - "Name": "Sympton of the Universe" - }, - "3277": { - "Name": "Snowblind" - }, - "3278": { - "Name": "Black Sabbath" - }, - "3279": { - "Name": "Fairies Wear Boots" - }, - "3280": { - "Name": "War Pigs" - }, - "3281": { - "Name": "The Wizard" - }, - "3282": { - "Name": "N.I.B." - }, - "3283": { - "Name": "Sweet Leaf" - }, - "3284": { - "Name": "Never Say Die" - }, - "3285": { - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - } - }, - "173": { - "tracks": { - "2097": { - "Composer": "L. Kilmister, O. Osbourne & Z. Wylde", - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Composer": "J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde", - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)", - "artist": { - "ArtistId": 114, - "albums": { - "170": { - "tracks": { - "2093": { - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "tracks": { - "2094": { - "Name": "I Don't Know" - }, - "2095": { - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz" - }, - "172": { - "tracks": { - "2096": { - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "tracks": { - "2097": { - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)" - }, - "174": { - "tracks": { - "2099": { - "Name": "I Don't Know" - }, - "2100": { - "Name": "Crazy Train" - }, - "2101": { - "Name": "Believer" - }, - "2102": { - "Name": "Mr. Crowley" - }, - "2103": { - "Name": "Flying High Again" - }, - "2104": { - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Name": "Steal Away (The Night)" - }, - "2106": { - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Name": "Iron Man" - }, - "2108": { - "Name": "Children Of The Grave" - }, - "2109": { - "Name": "Paranoid" - }, - "2110": { - "Name": "Goodbye To Romance" - }, - "2111": { - "Name": "No Bone Movies" - }, - "2112": { - "Name": "Dee" - } - }, - "Title": "Tribute" - }, - "256": { - "tracks": { - "3276": { - "Name": "Sympton of the Universe" - }, - "3277": { - "Name": "Snowblind" - }, - "3278": { - "Name": "Black Sabbath" - }, - "3279": { - "Name": "Fairies Wear Boots" - }, - "3280": { - "Name": "War Pigs" - }, - "3281": { - "Name": "The Wizard" - }, - "3282": { - "Name": "N.I.B." - }, - "3283": { - "Name": "Sweet Leaf" - }, - "3284": { - "Name": "Never Say Die" - }, - "3285": { - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - } - }, - "174": { - "tracks": { - "2099": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "I Don't Know" - }, - "2100": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Crazy Train" - }, - "2101": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Believer" - }, - "2102": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Mr. Crowley" - }, - "2103": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake", - "Name": "Flying High Again" - }, - "2104": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Steal Away (The Night)" - }, - "2106": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Name": "Iron Man" - }, - "2108": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Name": "Children Of The Grave" - }, - "2109": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "Name": "Paranoid" - }, - "2110": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "Goodbye To Romance" - }, - "2111": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "Name": "No Bone Movies" - }, - "2112": { - "Composer": "R. Rhoads", - "Name": "Dee" - } - }, - "Title": "Tribute", - "artist": { - "ArtistId": 114, - "albums": { - "170": { - "tracks": { - "2093": { - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "tracks": { - "2094": { - "Name": "I Don't Know" - }, - "2095": { - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz" - }, - "172": { - "tracks": { - "2096": { - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "tracks": { - "2097": { - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)" - }, - "174": { - "tracks": { - "2099": { - "Name": "I Don't Know" - }, - "2100": { - "Name": "Crazy Train" - }, - "2101": { - "Name": "Believer" - }, - "2102": { - "Name": "Mr. Crowley" - }, - "2103": { - "Name": "Flying High Again" - }, - "2104": { - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Name": "Steal Away (The Night)" - }, - "2106": { - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Name": "Iron Man" - }, - "2108": { - "Name": "Children Of The Grave" - }, - "2109": { - "Name": "Paranoid" - }, - "2110": { - "Name": "Goodbye To Romance" - }, - "2111": { - "Name": "No Bone Movies" - }, - "2112": { - "Name": "Dee" - } - }, - "Title": "Tribute" - }, - "256": { - "tracks": { - "3276": { - "Name": "Sympton of the Universe" - }, - "3277": { - "Name": "Snowblind" - }, - "3278": { - "Name": "Black Sabbath" - }, - "3279": { - "Name": "Fairies Wear Boots" - }, - "3280": { - "Name": "War Pigs" - }, - "3281": { - "Name": "The Wizard" - }, - "3282": { - "Name": "N.I.B." - }, - "3283": { - "Name": "Sweet Leaf" - }, - "3284": { - "Name": "Never Say Die" - }, - "3285": { - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - } - }, - "175": { - "tracks": { - "2113": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Shining In The Light" - }, - "2114": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "When The World Was Young" - }, - "2115": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Upon A Golden Horse" - }, - "2116": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Blue Train" - }, - "2117": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Please Read The Letter" - }, - "2118": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Most High" - }, - "2119": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Heart In Your Hand" - }, - "2120": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Walking Into Clarksdale" - }, - "2121": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Burning Up" - }, - "2122": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "When I Was A Child" - }, - "2123": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "House Of Love" - }, - "2124": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "Name": "Sons Of Freedom" - } - }, - "Title": "Walking Into Clarksdale", - "artist": { - "ArtistId": 115, - "albums": { - "175": { - "tracks": { - "2113": { - "Name": "Shining In The Light" - }, - "2114": { - "Name": "When The World Was Young" - }, - "2115": { - "Name": "Upon A Golden Horse" - }, - "2116": { - "Name": "Blue Train" - }, - "2117": { - "Name": "Please Read The Letter" - }, - "2118": { - "Name": "Most High" - }, - "2119": { - "Name": "Heart In Your Hand" - }, - "2120": { - "Name": "Walking Into Clarksdale" - }, - "2121": { - "Name": "Burning Up" - }, - "2122": { - "Name": "When I Was A Child" - }, - "2123": { - "Name": "House Of Love" - }, - "2124": { - "Name": "Sons Of Freedom" - } - }, - "Title": "Walking Into Clarksdale" - } - }, - "Name": "Page & Plant" - } - }, - "176": { - "tracks": { - "2125": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "United Colours" - }, - "2126": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Slug" - }, - "2127": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Your Blue Room" - }, - "2128": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Always Forever Now" - }, - "2129": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "A Different Kind Of Blue" - }, - "2130": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Beach Sequence" - }, - "2131": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Miss Sarajevo" - }, - "2132": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Ito Okashi" - }, - "2133": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "One Minute Warning" - }, - "2134": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Corpse (These Chains Are Way Too Long)" - }, - "2135": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Elvis Ate America" - }, - "2136": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Plot 180" - }, - "2137": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Theme From The Swan" - }, - "2138": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "Name": "Theme From Let's Go Native" - } - }, - "Title": "Original Soundtracks 1", - "artist": { - "ArtistId": 116, - "albums": { - "176": { - "tracks": { - "2125": { - "Name": "United Colours" - }, - "2126": { - "Name": "Slug" - }, - "2127": { - "Name": "Your Blue Room" - }, - "2128": { - "Name": "Always Forever Now" - }, - "2129": { - "Name": "A Different Kind Of Blue" - }, - "2130": { - "Name": "Beach Sequence" - }, - "2131": { - "Name": "Miss Sarajevo" - }, - "2132": { - "Name": "Ito Okashi" - }, - "2133": { - "Name": "One Minute Warning" - }, - "2134": { - "Name": "Corpse (These Chains Are Way Too Long)" - }, - "2135": { - "Name": "Elvis Ate America" - }, - "2136": { - "Name": "Plot 180" - }, - "2137": { - "Name": "Theme From The Swan" - }, - "2138": { - "Name": "Theme From Let's Go Native" - } - }, - "Title": "Original Soundtracks 1" - } - }, - "Name": "Passengers" - } - }, - "177": { - "tracks": { - "2139": { - "Composer": "Steve Harris", - "Name": "Wrathchild" - }, - "2140": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Killers" - }, - "2141": { - "Composer": "Steve Harris", - "Name": "Prowler" - }, - "2142": { - "Composer": "Steve Harris", - "Name": "Murders In The Rue Morgue" - }, - "2143": { - "Composer": "Greg Macainsh", - "Name": "Women In Uniform" - }, - "2144": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Remember Tomorrow" - }, - "2145": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "Name": "Sanctuary" - }, - "2146": { - "Composer": "Paul Di'Anno/Steve Harris", - "Name": "Running Free" - }, - "2147": { - "Composer": "Steve Harris", - "Name": "Phantom Of The Opera" - }, - "2148": { - "Composer": "Steve Harris", - "Name": "Iron Maiden" - } - }, - "Title": "The Beast Live", - "artist": { - "ArtistId": 117, - "albums": { - "177": { - "tracks": { - "2139": { - "Name": "Wrathchild" - }, - "2140": { - "Name": "Killers" - }, - "2141": { - "Name": "Prowler" - }, - "2142": { - "Name": "Murders In The Rue Morgue" - }, - "2143": { - "Name": "Women In Uniform" - }, - "2144": { - "Name": "Remember Tomorrow" - }, - "2145": { - "Name": "Sanctuary" - }, - "2146": { - "Name": "Running Free" - }, - "2147": { - "Name": "Phantom Of The Opera" - }, - "2148": { - "Name": "Iron Maiden" - } - }, - "Title": "The Beast Live" - } - }, - "Name": "Paul D'Ianno" - } - }, - "178": { - "tracks": { - "2149": { - "Composer": "Pearl Jam & Eddie Vedder", - "Name": "Corduroy" - }, - "2150": { - "Composer": "Eddie Vedder & Mike McCready", - "Name": "Given To Fly" - }, - "2151": { - "Composer": "Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready", - "Name": "Hail, Hail" - }, - "2152": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "Name": "Daughter" - }, - "2153": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Composer": "Pearl Jam", - "Name": "Untitled" - }, - "2155": { - "Composer": "Eddie Vedder", - "Name": "MFC" - }, - "2156": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "Name": "Go" - }, - "2157": { - "Composer": "Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder", - "Name": "Red Mosquito" - }, - "2158": { - "Composer": "Stone Gossard & Eddie Vedder", - "Name": "Even Flow" - }, - "2159": { - "Composer": "Eddie Vedder", - "Name": "Off He Goes" - }, - "2160": { - "Composer": "Jeff Ament & Eddie Vedder", - "Name": "Nothingman" - }, - "2161": { - "Composer": "Eddie Vedder & Stone Gossard", - "Name": "Do The Evolution" - }, - "2162": { - "Composer": "Eddie Vedder", - "Name": "Better Man" - }, - "2163": { - "Composer": "Stone Gossard & Eddie Vedder", - "Name": "Black" - }, - "2164": { - "Composer": "Neil Young", - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]", - "artist": { - "ArtistId": 118, - "albums": { - "178": { - "tracks": { - "2149": { - "Name": "Corduroy" - }, - "2150": { - "Name": "Given To Fly" - }, - "2151": { - "Name": "Hail, Hail" - }, - "2152": { - "Name": "Daughter" - }, - "2153": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Name": "Untitled" - }, - "2155": { - "Name": "MFC" - }, - "2156": { - "Name": "Go" - }, - "2157": { - "Name": "Red Mosquito" - }, - "2158": { - "Name": "Even Flow" - }, - "2159": { - "Name": "Off He Goes" - }, - "2160": { - "Name": "Nothingman" - }, - "2161": { - "Name": "Do The Evolution" - }, - "2162": { - "Name": "Better Man" - }, - "2163": { - "Name": "Black" - }, - "2164": { - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]" - }, - "179": { - "tracks": { - "2165": { - "Name": "Life Wasted" - }, - "2166": { - "Name": "World Wide Suicide" - }, - "2167": { - "Name": "Comatose" - }, - "2168": { - "Name": "Severed Hand" - }, - "2169": { - "Name": "Marker In The Sand" - }, - "2170": { - "Name": "Parachutes" - }, - "2171": { - "Name": "Unemployable" - }, - "2172": { - "Name": "Big Wave" - }, - "2173": { - "Name": "Gone" - }, - "2174": { - "Name": "Wasted Reprise" - }, - "2175": { - "Name": "Army Reserve" - }, - "2176": { - "Name": "Come Back" - }, - "2177": { - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam" - }, - "180": { - "tracks": { - "2178": { - "Name": "Can't Keep" - }, - "2179": { - "Name": "Save You" - }, - "2180": { - "Name": "Love Boat Captain" - }, - "2181": { - "Name": "Cropduster" - }, - "2182": { - "Name": "Ghost" - }, - "2183": { - "Name": "I Am Mine" - }, - "2184": { - "Name": "Thumbing My Way" - }, - "2185": { - "Name": "You Are" - }, - "2186": { - "Name": "Get Right" - }, - "2187": { - "Name": "Green Disease" - }, - "2188": { - "Name": "Help Help" - }, - "2189": { - "Name": "Bushleager" - }, - "2190": { - "Name": "1/2 Full" - }, - "2191": { - "Name": "Arc" - }, - "2192": { - "Name": "All or None" - } - }, - "Title": "Riot Act" - }, - "181": { - "tracks": { - "2193": { - "Name": "Once" - }, - "2194": { - "Name": "Evenflow" - }, - "2195": { - "Name": "Alive" - }, - "2196": { - "Name": "Why Go" - }, - "2197": { - "Name": "Black" - }, - "2198": { - "Name": "Jeremy" - }, - "2199": { - "Name": "Oceans" - }, - "2200": { - "Name": "Porch" - }, - "2201": { - "Name": "Garden" - }, - "2202": { - "Name": "Deep" - }, - "2203": { - "Name": "Release" - } - }, - "Title": "Ten" - }, - "182": { - "tracks": { - "2204": { - "Name": "Go" - }, - "2205": { - "Name": "Animal" - }, - "2206": { - "Name": "Daughter" - }, - "2207": { - "Name": "Glorified G" - }, - "2208": { - "Name": "Dissident" - }, - "2209": { - "Name": "W.M.A." - }, - "2210": { - "Name": "Blood" - }, - "2211": { - "Name": "Rearviewmirror" - }, - "2212": { - "Name": "Rats" - }, - "2213": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Name": "Leash" - }, - "2215": { - "Name": "Indifference" - } - }, - "Title": "Vs." - } - }, - "Name": "Pearl Jam" - } - }, - "179": { - "tracks": { - "2165": { - "Composer": "Stone Gossard", - "Name": "Life Wasted" - }, - "2166": { - "Composer": "Eddie Vedder", - "Name": "World Wide Suicide" - }, - "2167": { - "Composer": "Mike McCready & Stone Gossard", - "Name": "Comatose" - }, - "2168": { - "Composer": "Eddie Vedder", - "Name": "Severed Hand" - }, - "2169": { - "Composer": "Mike McCready", - "Name": "Marker In The Sand" - }, - "2170": { - "Composer": "Stone Gossard", - "Name": "Parachutes" - }, - "2171": { - "Composer": "Matt Cameron & Mike McCready", - "Name": "Unemployable" - }, - "2172": { - "Composer": "Jeff Ament", - "Name": "Big Wave" - }, - "2173": { - "Composer": "Eddie Vedder", - "Name": "Gone" - }, - "2174": { - "Composer": "Stone Gossard", - "Name": "Wasted Reprise" - }, - "2175": { - "Composer": "Jeff Ament", - "Name": "Army Reserve" - }, - "2176": { - "Composer": "Eddie Vedder & Mike McCready", - "Name": "Come Back" - }, - "2177": { - "Composer": "Eddie Vedder & Mike McCready", - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam", - "artist": { - "ArtistId": 118, - "albums": { - "178": { - "tracks": { - "2149": { - "Name": "Corduroy" - }, - "2150": { - "Name": "Given To Fly" - }, - "2151": { - "Name": "Hail, Hail" - }, - "2152": { - "Name": "Daughter" - }, - "2153": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Name": "Untitled" - }, - "2155": { - "Name": "MFC" - }, - "2156": { - "Name": "Go" - }, - "2157": { - "Name": "Red Mosquito" - }, - "2158": { - "Name": "Even Flow" - }, - "2159": { - "Name": "Off He Goes" - }, - "2160": { - "Name": "Nothingman" - }, - "2161": { - "Name": "Do The Evolution" - }, - "2162": { - "Name": "Better Man" - }, - "2163": { - "Name": "Black" - }, - "2164": { - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]" - }, - "179": { - "tracks": { - "2165": { - "Name": "Life Wasted" - }, - "2166": { - "Name": "World Wide Suicide" - }, - "2167": { - "Name": "Comatose" - }, - "2168": { - "Name": "Severed Hand" - }, - "2169": { - "Name": "Marker In The Sand" - }, - "2170": { - "Name": "Parachutes" - }, - "2171": { - "Name": "Unemployable" - }, - "2172": { - "Name": "Big Wave" - }, - "2173": { - "Name": "Gone" - }, - "2174": { - "Name": "Wasted Reprise" - }, - "2175": { - "Name": "Army Reserve" - }, - "2176": { - "Name": "Come Back" - }, - "2177": { - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam" - }, - "180": { - "tracks": { - "2178": { - "Name": "Can't Keep" - }, - "2179": { - "Name": "Save You" - }, - "2180": { - "Name": "Love Boat Captain" - }, - "2181": { - "Name": "Cropduster" - }, - "2182": { - "Name": "Ghost" - }, - "2183": { - "Name": "I Am Mine" - }, - "2184": { - "Name": "Thumbing My Way" - }, - "2185": { - "Name": "You Are" - }, - "2186": { - "Name": "Get Right" - }, - "2187": { - "Name": "Green Disease" - }, - "2188": { - "Name": "Help Help" - }, - "2189": { - "Name": "Bushleager" - }, - "2190": { - "Name": "1/2 Full" - }, - "2191": { - "Name": "Arc" - }, - "2192": { - "Name": "All or None" - } - }, - "Title": "Riot Act" - }, - "181": { - "tracks": { - "2193": { - "Name": "Once" - }, - "2194": { - "Name": "Evenflow" - }, - "2195": { - "Name": "Alive" - }, - "2196": { - "Name": "Why Go" - }, - "2197": { - "Name": "Black" - }, - "2198": { - "Name": "Jeremy" - }, - "2199": { - "Name": "Oceans" - }, - "2200": { - "Name": "Porch" - }, - "2201": { - "Name": "Garden" - }, - "2202": { - "Name": "Deep" - }, - "2203": { - "Name": "Release" - } - }, - "Title": "Ten" - }, - "182": { - "tracks": { - "2204": { - "Name": "Go" - }, - "2205": { - "Name": "Animal" - }, - "2206": { - "Name": "Daughter" - }, - "2207": { - "Name": "Glorified G" - }, - "2208": { - "Name": "Dissident" - }, - "2209": { - "Name": "W.M.A." - }, - "2210": { - "Name": "Blood" - }, - "2211": { - "Name": "Rearviewmirror" - }, - "2212": { - "Name": "Rats" - }, - "2213": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Name": "Leash" - }, - "2215": { - "Name": "Indifference" - } - }, - "Title": "Vs." - } - }, - "Name": "Pearl Jam" - } - }, - "180": { - "tracks": { - "2178": { - "Composer": "Eddie Vedder", - "Name": "Can't Keep" - }, - "2179": { - "Composer": "Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard", - "Name": "Save You" - }, - "2180": { - "Composer": "Eddie Vedder", - "Name": "Love Boat Captain" - }, - "2181": { - "Composer": "Matt Cameron", - "Name": "Cropduster" - }, - "2182": { - "Composer": "Jeff Ament", - "Name": "Ghost" - }, - "2183": { - "Composer": "Eddie Vedder", - "Name": "I Am Mine" - }, - "2184": { - "Composer": "Eddie Vedder", - "Name": "Thumbing My Way" - }, - "2185": { - "Composer": "Matt Cameron", - "Name": "You Are" - }, - "2186": { - "Composer": "Matt Cameron", - "Name": "Get Right" - }, - "2187": { - "Composer": "Eddie Vedder", - "Name": "Green Disease" - }, - "2188": { - "Composer": "Jeff Ament", - "Name": "Help Help" - }, - "2189": { - "Composer": "Stone Gossard", - "Name": "Bushleager" - }, - "2190": { - "Composer": "Jeff Ament", - "Name": "1/2 Full" - }, - "2191": { - "Composer": "Pearl Jam", - "Name": "Arc" - }, - "2192": { - "Composer": "Stone Gossard", - "Name": "All or None" - } - }, - "Title": "Riot Act", - "artist": { - "ArtistId": 118, - "albums": { - "178": { - "tracks": { - "2149": { - "Name": "Corduroy" - }, - "2150": { - "Name": "Given To Fly" - }, - "2151": { - "Name": "Hail, Hail" - }, - "2152": { - "Name": "Daughter" - }, - "2153": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Name": "Untitled" - }, - "2155": { - "Name": "MFC" - }, - "2156": { - "Name": "Go" - }, - "2157": { - "Name": "Red Mosquito" - }, - "2158": { - "Name": "Even Flow" - }, - "2159": { - "Name": "Off He Goes" - }, - "2160": { - "Name": "Nothingman" - }, - "2161": { - "Name": "Do The Evolution" - }, - "2162": { - "Name": "Better Man" - }, - "2163": { - "Name": "Black" - }, - "2164": { - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]" - }, - "179": { - "tracks": { - "2165": { - "Name": "Life Wasted" - }, - "2166": { - "Name": "World Wide Suicide" - }, - "2167": { - "Name": "Comatose" - }, - "2168": { - "Name": "Severed Hand" - }, - "2169": { - "Name": "Marker In The Sand" - }, - "2170": { - "Name": "Parachutes" - }, - "2171": { - "Name": "Unemployable" - }, - "2172": { - "Name": "Big Wave" - }, - "2173": { - "Name": "Gone" - }, - "2174": { - "Name": "Wasted Reprise" - }, - "2175": { - "Name": "Army Reserve" - }, - "2176": { - "Name": "Come Back" - }, - "2177": { - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam" - }, - "180": { - "tracks": { - "2178": { - "Name": "Can't Keep" - }, - "2179": { - "Name": "Save You" - }, - "2180": { - "Name": "Love Boat Captain" - }, - "2181": { - "Name": "Cropduster" - }, - "2182": { - "Name": "Ghost" - }, - "2183": { - "Name": "I Am Mine" - }, - "2184": { - "Name": "Thumbing My Way" - }, - "2185": { - "Name": "You Are" - }, - "2186": { - "Name": "Get Right" - }, - "2187": { - "Name": "Green Disease" - }, - "2188": { - "Name": "Help Help" - }, - "2189": { - "Name": "Bushleager" - }, - "2190": { - "Name": "1/2 Full" - }, - "2191": { - "Name": "Arc" - }, - "2192": { - "Name": "All or None" - } - }, - "Title": "Riot Act" - }, - "181": { - "tracks": { - "2193": { - "Name": "Once" - }, - "2194": { - "Name": "Evenflow" - }, - "2195": { - "Name": "Alive" - }, - "2196": { - "Name": "Why Go" - }, - "2197": { - "Name": "Black" - }, - "2198": { - "Name": "Jeremy" - }, - "2199": { - "Name": "Oceans" - }, - "2200": { - "Name": "Porch" - }, - "2201": { - "Name": "Garden" - }, - "2202": { - "Name": "Deep" - }, - "2203": { - "Name": "Release" - } - }, - "Title": "Ten" - }, - "182": { - "tracks": { - "2204": { - "Name": "Go" - }, - "2205": { - "Name": "Animal" - }, - "2206": { - "Name": "Daughter" - }, - "2207": { - "Name": "Glorified G" - }, - "2208": { - "Name": "Dissident" - }, - "2209": { - "Name": "W.M.A." - }, - "2210": { - "Name": "Blood" - }, - "2211": { - "Name": "Rearviewmirror" - }, - "2212": { - "Name": "Rats" - }, - "2213": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Name": "Leash" - }, - "2215": { - "Name": "Indifference" - } - }, - "Title": "Vs." - } - }, - "Name": "Pearl Jam" - } - }, - "181": { - "tracks": { - "2193": { - "Composer": "Stone Gossard", - "Name": "Once" - }, - "2194": { - "Composer": "Stone Gossard", - "Name": "Evenflow" - }, - "2195": { - "Composer": "Stone Gossard", - "Name": "Alive" - }, - "2196": { - "Composer": "Jeff Ament", - "Name": "Why Go" - }, - "2197": { - "Composer": "Dave Krusen/Stone Gossard", - "Name": "Black" - }, - "2198": { - "Composer": "Jeff Ament", - "Name": "Jeremy" - }, - "2199": { - "Composer": "Jeff Ament/Stone Gossard", - "Name": "Oceans" - }, - "2200": { - "Composer": "Eddie Vedder", - "Name": "Porch" - }, - "2201": { - "Composer": "Jeff Ament/Stone Gossard", - "Name": "Garden" - }, - "2202": { - "Composer": "Jeff Ament/Stone Gossard", - "Name": "Deep" - }, - "2203": { - "Composer": "Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Release" - } - }, - "Title": "Ten", - "artist": { - "ArtistId": 118, - "albums": { - "178": { - "tracks": { - "2149": { - "Name": "Corduroy" - }, - "2150": { - "Name": "Given To Fly" - }, - "2151": { - "Name": "Hail, Hail" - }, - "2152": { - "Name": "Daughter" - }, - "2153": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Name": "Untitled" - }, - "2155": { - "Name": "MFC" - }, - "2156": { - "Name": "Go" - }, - "2157": { - "Name": "Red Mosquito" - }, - "2158": { - "Name": "Even Flow" - }, - "2159": { - "Name": "Off He Goes" - }, - "2160": { - "Name": "Nothingman" - }, - "2161": { - "Name": "Do The Evolution" - }, - "2162": { - "Name": "Better Man" - }, - "2163": { - "Name": "Black" - }, - "2164": { - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]" - }, - "179": { - "tracks": { - "2165": { - "Name": "Life Wasted" - }, - "2166": { - "Name": "World Wide Suicide" - }, - "2167": { - "Name": "Comatose" - }, - "2168": { - "Name": "Severed Hand" - }, - "2169": { - "Name": "Marker In The Sand" - }, - "2170": { - "Name": "Parachutes" - }, - "2171": { - "Name": "Unemployable" - }, - "2172": { - "Name": "Big Wave" - }, - "2173": { - "Name": "Gone" - }, - "2174": { - "Name": "Wasted Reprise" - }, - "2175": { - "Name": "Army Reserve" - }, - "2176": { - "Name": "Come Back" - }, - "2177": { - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam" - }, - "180": { - "tracks": { - "2178": { - "Name": "Can't Keep" - }, - "2179": { - "Name": "Save You" - }, - "2180": { - "Name": "Love Boat Captain" - }, - "2181": { - "Name": "Cropduster" - }, - "2182": { - "Name": "Ghost" - }, - "2183": { - "Name": "I Am Mine" - }, - "2184": { - "Name": "Thumbing My Way" - }, - "2185": { - "Name": "You Are" - }, - "2186": { - "Name": "Get Right" - }, - "2187": { - "Name": "Green Disease" - }, - "2188": { - "Name": "Help Help" - }, - "2189": { - "Name": "Bushleager" - }, - "2190": { - "Name": "1/2 Full" - }, - "2191": { - "Name": "Arc" - }, - "2192": { - "Name": "All or None" - } - }, - "Title": "Riot Act" - }, - "181": { - "tracks": { - "2193": { - "Name": "Once" - }, - "2194": { - "Name": "Evenflow" - }, - "2195": { - "Name": "Alive" - }, - "2196": { - "Name": "Why Go" - }, - "2197": { - "Name": "Black" - }, - "2198": { - "Name": "Jeremy" - }, - "2199": { - "Name": "Oceans" - }, - "2200": { - "Name": "Porch" - }, - "2201": { - "Name": "Garden" - }, - "2202": { - "Name": "Deep" - }, - "2203": { - "Name": "Release" - } - }, - "Title": "Ten" - }, - "182": { - "tracks": { - "2204": { - "Name": "Go" - }, - "2205": { - "Name": "Animal" - }, - "2206": { - "Name": "Daughter" - }, - "2207": { - "Name": "Glorified G" - }, - "2208": { - "Name": "Dissident" - }, - "2209": { - "Name": "W.M.A." - }, - "2210": { - "Name": "Blood" - }, - "2211": { - "Name": "Rearviewmirror" - }, - "2212": { - "Name": "Rats" - }, - "2213": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Name": "Leash" - }, - "2215": { - "Name": "Indifference" - } - }, - "Title": "Vs." - } - }, - "Name": "Pearl Jam" - } - }, - "182": { - "tracks": { - "2204": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Go" - }, - "2205": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Animal" - }, - "2206": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Daughter" - }, - "2207": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Glorified G" - }, - "2208": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Dissident" - }, - "2209": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "W.M.A." - }, - "2210": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Blood" - }, - "2211": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Rearviewmirror" - }, - "2212": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Rats" - }, - "2213": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Leash" - }, - "2215": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "Name": "Indifference" - } - }, - "Title": "Vs.", - "artist": { - "ArtistId": 118, - "albums": { - "178": { - "tracks": { - "2149": { - "Name": "Corduroy" - }, - "2150": { - "Name": "Given To Fly" - }, - "2151": { - "Name": "Hail, Hail" - }, - "2152": { - "Name": "Daughter" - }, - "2153": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2154": { - "Name": "Untitled" - }, - "2155": { - "Name": "MFC" - }, - "2156": { - "Name": "Go" - }, - "2157": { - "Name": "Red Mosquito" - }, - "2158": { - "Name": "Even Flow" - }, - "2159": { - "Name": "Off He Goes" - }, - "2160": { - "Name": "Nothingman" - }, - "2161": { - "Name": "Do The Evolution" - }, - "2162": { - "Name": "Better Man" - }, - "2163": { - "Name": "Black" - }, - "2164": { - "Name": "F*Ckin' Up" - } - }, - "Title": "Live On Two Legs [Live]" - }, - "179": { - "tracks": { - "2165": { - "Name": "Life Wasted" - }, - "2166": { - "Name": "World Wide Suicide" - }, - "2167": { - "Name": "Comatose" - }, - "2168": { - "Name": "Severed Hand" - }, - "2169": { - "Name": "Marker In The Sand" - }, - "2170": { - "Name": "Parachutes" - }, - "2171": { - "Name": "Unemployable" - }, - "2172": { - "Name": "Big Wave" - }, - "2173": { - "Name": "Gone" - }, - "2174": { - "Name": "Wasted Reprise" - }, - "2175": { - "Name": "Army Reserve" - }, - "2176": { - "Name": "Come Back" - }, - "2177": { - "Name": "Inside Job" - } - }, - "Title": "Pearl Jam" - }, - "180": { - "tracks": { - "2178": { - "Name": "Can't Keep" - }, - "2179": { - "Name": "Save You" - }, - "2180": { - "Name": "Love Boat Captain" - }, - "2181": { - "Name": "Cropduster" - }, - "2182": { - "Name": "Ghost" - }, - "2183": { - "Name": "I Am Mine" - }, - "2184": { - "Name": "Thumbing My Way" - }, - "2185": { - "Name": "You Are" - }, - "2186": { - "Name": "Get Right" - }, - "2187": { - "Name": "Green Disease" - }, - "2188": { - "Name": "Help Help" - }, - "2189": { - "Name": "Bushleager" - }, - "2190": { - "Name": "1/2 Full" - }, - "2191": { - "Name": "Arc" - }, - "2192": { - "Name": "All or None" - } - }, - "Title": "Riot Act" - }, - "181": { - "tracks": { - "2193": { - "Name": "Once" - }, - "2194": { - "Name": "Evenflow" - }, - "2195": { - "Name": "Alive" - }, - "2196": { - "Name": "Why Go" - }, - "2197": { - "Name": "Black" - }, - "2198": { - "Name": "Jeremy" - }, - "2199": { - "Name": "Oceans" - }, - "2200": { - "Name": "Porch" - }, - "2201": { - "Name": "Garden" - }, - "2202": { - "Name": "Deep" - }, - "2203": { - "Name": "Release" - } - }, - "Title": "Ten" - }, - "182": { - "tracks": { - "2204": { - "Name": "Go" - }, - "2205": { - "Name": "Animal" - }, - "2206": { - "Name": "Daughter" - }, - "2207": { - "Name": "Glorified G" - }, - "2208": { - "Name": "Dissident" - }, - "2209": { - "Name": "W.M.A." - }, - "2210": { - "Name": "Blood" - }, - "2211": { - "Name": "Rearviewmirror" - }, - "2212": { - "Name": "Rats" - }, - "2213": { - "Name": "Elderly Woman Behind The Counter In A Small Town" - }, - "2214": { - "Name": "Leash" - }, - "2215": { - "Name": "Indifference" - } - }, - "Title": "Vs." - } - }, - "Name": "Pearl Jam" - } - }, - "183": { - "tracks": { - "2229": { - "Composer": "Mason/Waters, Gilmour, Wright", - "Name": "Speak To Me/Breathe" - }, - "2230": { - "Composer": "Gilmour, Waters", - "Name": "On The Run" - }, - "2231": { - "Composer": "Mason, Waters, Wright, Gilmour", - "Name": "Time" - }, - "2232": { - "Composer": "Wright, Waters", - "Name": "The Great Gig In The Sky" - }, - "2233": { - "Composer": "Waters", - "Name": "Money" - }, - "2234": { - "Composer": "Waters, Wright", - "Name": "Us And Them" - }, - "2235": { - "Composer": "Gilmour, Mason, Wright, Waters", - "Name": "Any Colour You Like" - }, - "2236": { - "Composer": "Waters", - "Name": "Brain Damage" - }, - "2237": { - "Composer": "Waters", - "Name": "Eclipse" - } - }, - "Title": "Dark Side Of The Moon", - "artist": { - "ArtistId": 120, - "albums": { - "183": { - "tracks": { - "2229": { - "Name": "Speak To Me/Breathe" - }, - "2230": { - "Name": "On The Run" - }, - "2231": { - "Name": "Time" - }, - "2232": { - "Name": "The Great Gig In The Sky" - }, - "2233": { - "Name": "Money" - }, - "2234": { - "Name": "Us And Them" - }, - "2235": { - "Name": "Any Colour You Like" - }, - "2236": { - "Name": "Brain Damage" - }, - "2237": { - "Name": "Eclipse" - } - }, - "Title": "Dark Side Of The Moon" - } - }, - "Name": "Pink Floyd" - } - }, - "185": { - "tracks": { - "2254": { - "Composer": "Mercury, Freddie", - "Name": "Bohemian Rhapsody" - }, - "2255": { - "Composer": "Deacon, John", - "Name": "Another One Bites The Dust" - }, - "2256": { - "Composer": "Mercury, Freddie", - "Name": "Killer Queen" - }, - "2257": { - "Composer": "May, Brian", - "Name": "Fat Bottomed Girls" - }, - "2258": { - "Composer": "Mercury, Freddie", - "Name": "Bicycle Race" - }, - "2259": { - "Composer": "Deacon, John", - "Name": "You're My Best Friend" - }, - "2260": { - "Composer": "Mercury, Freddie", - "Name": "Don't Stop Me Now" - }, - "2261": { - "Composer": "May, Brian", - "Name": "Save Me" - }, - "2262": { - "Composer": "Mercury, Freddie", - "Name": "Crazy Little Thing Called Love" - }, - "2263": { - "Composer": "Mercury, Freddie", - "Name": "Somebody To Love" - }, - "2264": { - "Composer": "May, Brian", - "Name": "Now I'm Here" - }, - "2265": { - "Composer": "Mercury, Freddie", - "Name": "Good Old-Fashioned Lover Boy" - }, - "2266": { - "Composer": "Mercury, Freddie", - "Name": "Play The Game" - }, - "2267": { - "Composer": "May, Brian", - "Name": "Flash" - }, - "2268": { - "Composer": "Mercury, Freddie", - "Name": "Seven Seas Of Rhye" - }, - "2269": { - "Composer": "Deacon, John/May, Brian", - "Name": "We Will Rock You" - }, - "2270": { - "Composer": "Mercury, Freddie", - "Name": "We Are The Champions" - } - }, - "Title": "Greatest Hits I", - "artist": { - "ArtistId": 51, - "albums": { - "36": { - "tracks": { - "419": { - "Name": "A Kind Of Magic" - }, - "420": { - "Name": "Under Pressure" - }, - "421": { - "Name": "Radio GA GA" - }, - "422": { - "Name": "I Want It All" - }, - "423": { - "Name": "I Want To Break Free" - }, - "424": { - "Name": "Innuendo" - }, - "425": { - "Name": "It's A Hard Life" - }, - "426": { - "Name": "Breakthru" - }, - "427": { - "Name": "Who Wants To Live Forever" - }, - "428": { - "Name": "Headlong" - }, - "429": { - "Name": "The Miracle" - }, - "430": { - "Name": "I'm Going Slightly Mad" - }, - "431": { - "Name": "The Invisible Man" - }, - "432": { - "Name": "Hammer To Fall" - }, - "433": { - "Name": "Friends Will Be Friends" - }, - "434": { - "Name": "The Show Must Go On" - }, - "435": { - "Name": "One Vision" - } - }, - "Title": "Greatest Hits II" - }, - "185": { - "tracks": { - "2254": { - "Name": "Bohemian Rhapsody" - }, - "2255": { - "Name": "Another One Bites The Dust" - }, - "2256": { - "Name": "Killer Queen" - }, - "2257": { - "Name": "Fat Bottomed Girls" - }, - "2258": { - "Name": "Bicycle Race" - }, - "2259": { - "Name": "You're My Best Friend" - }, - "2260": { - "Name": "Don't Stop Me Now" - }, - "2261": { - "Name": "Save Me" - }, - "2262": { - "Name": "Crazy Little Thing Called Love" - }, - "2263": { - "Name": "Somebody To Love" - }, - "2264": { - "Name": "Now I'm Here" - }, - "2265": { - "Name": "Good Old-Fashioned Lover Boy" - }, - "2266": { - "Name": "Play The Game" - }, - "2267": { - "Name": "Flash" - }, - "2268": { - "Name": "Seven Seas Of Rhye" - }, - "2269": { - "Name": "We Will Rock You" - }, - "2270": { - "Name": "We Are The Champions" - } - }, - "Title": "Greatest Hits I" - }, - "186": { - "tracks": { - "2271": { - "Name": "We Will Rock You" - }, - "2272": { - "Name": "We Are The Champions" - }, - "2273": { - "Name": "Sheer Heart Attack" - }, - "2274": { - "Name": "All Dead, All Dead" - }, - "2275": { - "Name": "Spread Your Wings" - }, - "2276": { - "Name": "Fight From The Inside" - }, - "2277": { - "Name": "Get Down, Make Love" - }, - "2278": { - "Name": "Sleep On The Sidewalk" - }, - "2279": { - "Name": "Who Needs You" - }, - "2280": { - "Name": "It's Late" - }, - "2281": { - "Name": "My Melancholy Blues" - } - }, - "Title": "News Of The World" - } - }, - "Name": "Queen" - } - }, - "186": { - "tracks": { - "2271": { - "Composer": "May", - "Name": "We Will Rock You" - }, - "2272": { - "Composer": "Mercury", - "Name": "We Are The Champions" - }, - "2273": { - "Composer": "Taylor", - "Name": "Sheer Heart Attack" - }, - "2274": { - "Composer": "May", - "Name": "All Dead, All Dead" - }, - "2275": { - "Composer": "Deacon", - "Name": "Spread Your Wings" - }, - "2276": { - "Composer": "Taylor", - "Name": "Fight From The Inside" - }, - "2277": { - "Composer": "Mercury", - "Name": "Get Down, Make Love" - }, - "2278": { - "Composer": "May", - "Name": "Sleep On The Sidewalk" - }, - "2279": { - "Composer": "Deacon", - "Name": "Who Needs You" - }, - "2280": { - "Composer": "May", - "Name": "It's Late" - }, - "2281": { - "Composer": "Mercury", - "Name": "My Melancholy Blues" - } - }, - "Title": "News Of The World", - "artist": { - "ArtistId": 51, - "albums": { - "36": { - "tracks": { - "419": { - "Name": "A Kind Of Magic" - }, - "420": { - "Name": "Under Pressure" - }, - "421": { - "Name": "Radio GA GA" - }, - "422": { - "Name": "I Want It All" - }, - "423": { - "Name": "I Want To Break Free" - }, - "424": { - "Name": "Innuendo" - }, - "425": { - "Name": "It's A Hard Life" - }, - "426": { - "Name": "Breakthru" - }, - "427": { - "Name": "Who Wants To Live Forever" - }, - "428": { - "Name": "Headlong" - }, - "429": { - "Name": "The Miracle" - }, - "430": { - "Name": "I'm Going Slightly Mad" - }, - "431": { - "Name": "The Invisible Man" - }, - "432": { - "Name": "Hammer To Fall" - }, - "433": { - "Name": "Friends Will Be Friends" - }, - "434": { - "Name": "The Show Must Go On" - }, - "435": { - "Name": "One Vision" - } - }, - "Title": "Greatest Hits II" - }, - "185": { - "tracks": { - "2254": { - "Name": "Bohemian Rhapsody" - }, - "2255": { - "Name": "Another One Bites The Dust" - }, - "2256": { - "Name": "Killer Queen" - }, - "2257": { - "Name": "Fat Bottomed Girls" - }, - "2258": { - "Name": "Bicycle Race" - }, - "2259": { - "Name": "You're My Best Friend" - }, - "2260": { - "Name": "Don't Stop Me Now" - }, - "2261": { - "Name": "Save Me" - }, - "2262": { - "Name": "Crazy Little Thing Called Love" - }, - "2263": { - "Name": "Somebody To Love" - }, - "2264": { - "Name": "Now I'm Here" - }, - "2265": { - "Name": "Good Old-Fashioned Lover Boy" - }, - "2266": { - "Name": "Play The Game" - }, - "2267": { - "Name": "Flash" - }, - "2268": { - "Name": "Seven Seas Of Rhye" - }, - "2269": { - "Name": "We Will Rock You" - }, - "2270": { - "Name": "We Are The Champions" - } - }, - "Title": "Greatest Hits I" - }, - "186": { - "tracks": { - "2271": { - "Name": "We Will Rock You" - }, - "2272": { - "Name": "We Are The Champions" - }, - "2273": { - "Name": "Sheer Heart Attack" - }, - "2274": { - "Name": "All Dead, All Dead" - }, - "2275": { - "Name": "Spread Your Wings" - }, - "2276": { - "Name": "Fight From The Inside" - }, - "2277": { - "Name": "Get Down, Make Love" - }, - "2278": { - "Name": "Sleep On The Sidewalk" - }, - "2279": { - "Name": "Who Needs You" - }, - "2280": { - "Name": "It's Late" - }, - "2281": { - "Name": "My Melancholy Blues" - } - }, - "Title": "News Of The World" - } - }, - "Name": "Queen" - } - }, - "187": { - "tracks": { - "2282": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Shiny Happy People" - }, - "2283": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Me In Honey" - }, - "2284": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Radio Song" - }, - "2310": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Losing My Religion" - }, - "2311": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Low" - }, - "2312": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Near Wild Heaven" - }, - "2313": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Endgame" - }, - "2314": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Belong" - }, - "2315": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Half A World Away" - }, - "2316": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Texarkana" - }, - "2317": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "Name": "Country Feedback" - } - }, - "Title": "Out Of Time", - "artist": { - "ArtistId": 122, - "albums": { - "187": { - "tracks": { - "2282": { - "Name": "Shiny Happy People" - }, - "2283": { - "Name": "Me In Honey" - }, - "2284": { - "Name": "Radio Song" - }, - "2310": { - "Name": "Losing My Religion" - }, - "2311": { - "Name": "Low" - }, - "2312": { - "Name": "Near Wild Heaven" - }, - "2313": { - "Name": "Endgame" - }, - "2314": { - "Name": "Belong" - }, - "2315": { - "Name": "Half A World Away" - }, - "2316": { - "Name": "Texarkana" - }, - "2317": { - "Name": "Country Feedback" - } - }, - "Title": "Out Of Time" - } - }, - "Name": "R.E.M. Feat. Kate Pearson" - } - }, - "188": { - "tracks": { - "2285": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Pop Song 89" - }, - "2286": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Get Up" - }, - "2287": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "You Are The Everything" - }, - "2288": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Stand" - }, - "2289": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "World Leader Pretend" - }, - "2290": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "The Wrong Child" - }, - "2291": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Orange Crush" - }, - "2292": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Turn You Inside-Out" - }, - "2293": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Hairshirt" - }, - "2294": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "I Remember California" - }, - "2295": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Untitled" - } - }, - "Title": "Green", - "artist": { - "ArtistId": 124, - "albums": { - "188": { - "tracks": { - "2285": { - "Name": "Pop Song 89" - }, - "2286": { - "Name": "Get Up" - }, - "2287": { - "Name": "You Are The Everything" - }, - "2288": { - "Name": "Stand" - }, - "2289": { - "Name": "World Leader Pretend" - }, - "2290": { - "Name": "The Wrong Child" - }, - "2291": { - "Name": "Orange Crush" - }, - "2292": { - "Name": "Turn You Inside-Out" - }, - "2293": { - "Name": "Hairshirt" - }, - "2294": { - "Name": "I Remember California" - }, - "2295": { - "Name": "Untitled" - } - }, - "Title": "Green" - }, - "189": { - "tracks": { - "2296": { - "Name": "How The West Was Won And Where It Got Us" - }, - "2297": { - "Name": "The Wake-Up Bomb" - }, - "2298": { - "Name": "New Test Leper" - }, - "2299": { - "Name": "Undertow" - }, - "2300": { - "Name": "E-Bow The Letter" - }, - "2301": { - "Name": "Leave" - }, - "2302": { - "Name": "Departure" - }, - "2303": { - "Name": "Bittersweet Me" - }, - "2304": { - "Name": "Be Mine" - }, - "2305": { - "Name": "Binky The Doormat" - }, - "2306": { - "Name": "Zither" - }, - "2307": { - "Name": "So Fast, So Numb" - }, - "2308": { - "Name": "Low Desert" - }, - "2309": { - "Name": "Electrolite" - } - }, - "Title": "New Adventures In Hi-Fi" - }, - "190": { - "tracks": { - "2318": { - "Name": "Carnival Of Sorts" - }, - "2319": { - "Name": "Radio Free Aurope" - }, - "2320": { - "Name": "Perfect Circle" - }, - "2321": { - "Name": "Talk About The Passion" - }, - "2322": { - "Name": "So Central Rain" - }, - "2323": { - "Name": "Don't Go Back To Rockville" - }, - "2324": { - "Name": "Pretty Persuasion" - }, - "2325": { - "Name": "Green Grow The Rushes" - }, - "2326": { - "Name": "Can't Get There From Here" - }, - "2327": { - "Name": "Driver 8" - }, - "2328": { - "Name": "Fall On Me" - }, - "2329": { - "Name": "I Believe" - }, - "2330": { - "Name": "Cuyahoga" - }, - "2331": { - "Name": "The One I Love" - }, - "2332": { - "Name": "The Finest Worksong" - }, - "2333": { - "Name": "It's The End Of The World As We Know It (And I Feel Fine)" - } - }, - "Title": "The Best Of R.E.M.: The IRS Years" - } - }, - "Name": "R.E.M." - } - }, - "189": { - "tracks": { - "2296": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "How The West Was Won And Where It Got Us" - }, - "2297": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "The Wake-Up Bomb" - }, - "2298": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "New Test Leper" - }, - "2299": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Undertow" - }, - "2300": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "E-Bow The Letter" - }, - "2301": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Leave" - }, - "2302": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Departure" - }, - "2303": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Bittersweet Me" - }, - "2304": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Be Mine" - }, - "2305": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Binky The Doormat" - }, - "2306": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Zither" - }, - "2307": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "So Fast, So Numb" - }, - "2308": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Low Desert" - }, - "2309": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "Name": "Electrolite" - } - }, - "Title": "New Adventures In Hi-Fi", - "artist": { - "ArtistId": 124, - "albums": { - "188": { - "tracks": { - "2285": { - "Name": "Pop Song 89" - }, - "2286": { - "Name": "Get Up" - }, - "2287": { - "Name": "You Are The Everything" - }, - "2288": { - "Name": "Stand" - }, - "2289": { - "Name": "World Leader Pretend" - }, - "2290": { - "Name": "The Wrong Child" - }, - "2291": { - "Name": "Orange Crush" - }, - "2292": { - "Name": "Turn You Inside-Out" - }, - "2293": { - "Name": "Hairshirt" - }, - "2294": { - "Name": "I Remember California" - }, - "2295": { - "Name": "Untitled" - } - }, - "Title": "Green" - }, - "189": { - "tracks": { - "2296": { - "Name": "How The West Was Won And Where It Got Us" - }, - "2297": { - "Name": "The Wake-Up Bomb" - }, - "2298": { - "Name": "New Test Leper" - }, - "2299": { - "Name": "Undertow" - }, - "2300": { - "Name": "E-Bow The Letter" - }, - "2301": { - "Name": "Leave" - }, - "2302": { - "Name": "Departure" - }, - "2303": { - "Name": "Bittersweet Me" - }, - "2304": { - "Name": "Be Mine" - }, - "2305": { - "Name": "Binky The Doormat" - }, - "2306": { - "Name": "Zither" - }, - "2307": { - "Name": "So Fast, So Numb" - }, - "2308": { - "Name": "Low Desert" - }, - "2309": { - "Name": "Electrolite" - } - }, - "Title": "New Adventures In Hi-Fi" - }, - "190": { - "tracks": { - "2318": { - "Name": "Carnival Of Sorts" - }, - "2319": { - "Name": "Radio Free Aurope" - }, - "2320": { - "Name": "Perfect Circle" - }, - "2321": { - "Name": "Talk About The Passion" - }, - "2322": { - "Name": "So Central Rain" - }, - "2323": { - "Name": "Don't Go Back To Rockville" - }, - "2324": { - "Name": "Pretty Persuasion" - }, - "2325": { - "Name": "Green Grow The Rushes" - }, - "2326": { - "Name": "Can't Get There From Here" - }, - "2327": { - "Name": "Driver 8" - }, - "2328": { - "Name": "Fall On Me" - }, - "2329": { - "Name": "I Believe" - }, - "2330": { - "Name": "Cuyahoga" - }, - "2331": { - "Name": "The One I Love" - }, - "2332": { - "Name": "The Finest Worksong" - }, - "2333": { - "Name": "It's The End Of The World As We Know It (And I Feel Fine)" - } - }, - "Title": "The Best Of R.E.M.: The IRS Years" - } - }, - "Name": "R.E.M." - } - }, - "190": { - "tracks": { - "2318": { - "Composer": "R.E.M.", - "Name": "Carnival Of Sorts" - }, - "2319": { - "Composer": "R.E.M.", - "Name": "Radio Free Aurope" - }, - "2320": { - "Composer": "R.E.M.", - "Name": "Perfect Circle" - }, - "2321": { - "Composer": "R.E.M.", - "Name": "Talk About The Passion" - }, - "2322": { - "Composer": "R.E.M.", - "Name": "So Central Rain" - }, - "2323": { - "Composer": "R.E.M.", - "Name": "Don't Go Back To Rockville" - }, - "2324": { - "Composer": "R.E.M.", - "Name": "Pretty Persuasion" - }, - "2325": { - "Composer": "R.E.M.", - "Name": "Green Grow The Rushes" - }, - "2326": { - "Composer": "R.E.M.", - "Name": "Can't Get There From Here" - }, - "2327": { - "Composer": "R.E.M.", - "Name": "Driver 8" - }, - "2328": { - "Composer": "R.E.M.", - "Name": "Fall On Me" - }, - "2329": { - "Composer": "R.E.M.", - "Name": "I Believe" - }, - "2330": { - "Composer": "R.E.M.", - "Name": "Cuyahoga" - }, - "2331": { - "Composer": "R.E.M.", - "Name": "The One I Love" - }, - "2332": { - "Composer": "R.E.M.", - "Name": "The Finest Worksong" - }, - "2333": { - "Composer": "R.E.M.", - "Name": "It's The End Of The World As We Know It (And I Feel Fine)" - } - }, - "Title": "The Best Of R.E.M.: The IRS Years", - "artist": { - "ArtistId": 124, - "albums": { - "188": { - "tracks": { - "2285": { - "Name": "Pop Song 89" - }, - "2286": { - "Name": "Get Up" - }, - "2287": { - "Name": "You Are The Everything" - }, - "2288": { - "Name": "Stand" - }, - "2289": { - "Name": "World Leader Pretend" - }, - "2290": { - "Name": "The Wrong Child" - }, - "2291": { - "Name": "Orange Crush" - }, - "2292": { - "Name": "Turn You Inside-Out" - }, - "2293": { - "Name": "Hairshirt" - }, - "2294": { - "Name": "I Remember California" - }, - "2295": { - "Name": "Untitled" - } - }, - "Title": "Green" - }, - "189": { - "tracks": { - "2296": { - "Name": "How The West Was Won And Where It Got Us" - }, - "2297": { - "Name": "The Wake-Up Bomb" - }, - "2298": { - "Name": "New Test Leper" - }, - "2299": { - "Name": "Undertow" - }, - "2300": { - "Name": "E-Bow The Letter" - }, - "2301": { - "Name": "Leave" - }, - "2302": { - "Name": "Departure" - }, - "2303": { - "Name": "Bittersweet Me" - }, - "2304": { - "Name": "Be Mine" - }, - "2305": { - "Name": "Binky The Doormat" - }, - "2306": { - "Name": "Zither" - }, - "2307": { - "Name": "So Fast, So Numb" - }, - "2308": { - "Name": "Low Desert" - }, - "2309": { - "Name": "Electrolite" - } - }, - "Title": "New Adventures In Hi-Fi" - }, - "190": { - "tracks": { - "2318": { - "Name": "Carnival Of Sorts" - }, - "2319": { - "Name": "Radio Free Aurope" - }, - "2320": { - "Name": "Perfect Circle" - }, - "2321": { - "Name": "Talk About The Passion" - }, - "2322": { - "Name": "So Central Rain" - }, - "2323": { - "Name": "Don't Go Back To Rockville" - }, - "2324": { - "Name": "Pretty Persuasion" - }, - "2325": { - "Name": "Green Grow The Rushes" - }, - "2326": { - "Name": "Can't Get There From Here" - }, - "2327": { - "Name": "Driver 8" - }, - "2328": { - "Name": "Fall On Me" - }, - "2329": { - "Name": "I Believe" - }, - "2330": { - "Name": "Cuyahoga" - }, - "2331": { - "Name": "The One I Love" - }, - "2332": { - "Name": "The Finest Worksong" - }, - "2333": { - "Name": "It's The End Of The World As We Know It (And I Feel Fine)" - } - }, - "Title": "The Best Of R.E.M.: The IRS Years" - } - }, - "Name": "R.E.M." - } - }, - "192": { - "tracks": { - "2344": { - "Composer": null, - "Name": "Maluco Beleza" - }, - "2345": { - "Composer": null, - "Name": "O Dia Em Que A Terra Parou" - }, - "2346": { - "Composer": null, - "Name": "No Fundo Do Quintal Da Escola" - }, - "2347": { - "Composer": null, - "Name": "O Segredo Do Universo" - }, - "2348": { - "Composer": null, - "Name": "As Profecias" - }, - "2349": { - "Composer": null, - "Name": "Mata Virgem" - }, - "2350": { - "Composer": null, - "Name": "Sapato 36" - }, - "2351": { - "Composer": null, - "Name": "Todo Mundo Explica" - }, - "2353": { - "Composer": null, - "Name": "Diamante De Mendigo" - }, - "2357": { - "Composer": null, - "Name": "Rock Das Aranhas (Ao Vivo) (Live)" - } - }, - "Title": "Raul Seixas", - "artist": { - "ArtistId": 126, - "albums": { - "192": { - "tracks": { - "2344": { - "Name": "Maluco Beleza" - }, - "2345": { - "Name": "O Dia Em Que A Terra Parou" - }, - "2346": { - "Name": "No Fundo Do Quintal Da Escola" - }, - "2347": { - "Name": "O Segredo Do Universo" - }, - "2348": { - "Name": "As Profecias" - }, - "2349": { - "Name": "Mata Virgem" - }, - "2350": { - "Name": "Sapato 36" - }, - "2351": { - "Name": "Todo Mundo Explica" - }, - "2353": { - "Name": "Diamante De Mendigo" - }, - "2357": { - "Name": "Rock Das Aranhas (Ao Vivo) (Live)" - } - }, - "Title": "Raul Seixas" - } - }, - "Name": "Raul Seixas" - } - }, - "193": { - "tracks": { - "2358": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "The Power Of Equality" - }, - "2359": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "If You Have To Ask" - }, - "2360": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Breaking The Girl" - }, - "2361": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Funky Monks" - }, - "2362": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Suck My Kiss" - }, - "2363": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "I Could Have Lied" - }, - "2364": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Mellowship Slinky In B Major" - }, - "2365": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "The Righteous & The Wicked" - }, - "2366": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Give It Away" - }, - "2367": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Blood Sugar Sex Magik" - }, - "2368": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Under The Bridge" - }, - "2369": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Naked In The Rain" - }, - "2370": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Apache Rose Peacock" - }, - "2371": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "The Greeting Song" - }, - "2372": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "My Lovely Man" - }, - "2373": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Sir Psycho Sexy" - }, - "2374": { - "Composer": "Robert Johnson", - "Name": "They're Red Hot" - } - }, - "Title": "Blood Sugar Sex Magik", - "artist": { - "ArtistId": 127, - "albums": { - "193": { - "tracks": { - "2358": { - "Name": "The Power Of Equality" - }, - "2359": { - "Name": "If You Have To Ask" - }, - "2360": { - "Name": "Breaking The Girl" - }, - "2361": { - "Name": "Funky Monks" - }, - "2362": { - "Name": "Suck My Kiss" - }, - "2363": { - "Name": "I Could Have Lied" - }, - "2364": { - "Name": "Mellowship Slinky In B Major" - }, - "2365": { - "Name": "The Righteous & The Wicked" - }, - "2366": { - "Name": "Give It Away" - }, - "2367": { - "Name": "Blood Sugar Sex Magik" - }, - "2368": { - "Name": "Under The Bridge" - }, - "2369": { - "Name": "Naked In The Rain" - }, - "2370": { - "Name": "Apache Rose Peacock" - }, - "2371": { - "Name": "The Greeting Song" - }, - "2372": { - "Name": "My Lovely Man" - }, - "2373": { - "Name": "Sir Psycho Sexy" - }, - "2374": { - "Name": "They're Red Hot" - } - }, - "Title": "Blood Sugar Sex Magik" - }, - "194": { - "tracks": { - "2375": { - "Name": "By The Way" - }, - "2376": { - "Name": "Universally Speaking" - }, - "2377": { - "Name": "This Is The Place" - }, - "2378": { - "Name": "Dosed" - }, - "2379": { - "Name": "Don't Forget Me" - }, - "2380": { - "Name": "The Zephyr Song" - }, - "2381": { - "Name": "Can't Stop" - }, - "2382": { - "Name": "I Could Die For You" - }, - "2383": { - "Name": "Midnight" - }, - "2384": { - "Name": "Throw Away Your Television" - }, - "2385": { - "Name": "Cabron" - }, - "2386": { - "Name": "Tear" - }, - "2387": { - "Name": "On Mercury" - }, - "2388": { - "Name": "Minor Thing" - }, - "2389": { - "Name": "Warm Tape" - }, - "2390": { - "Name": "Venice Queen" - } - }, - "Title": "By The Way" - }, - "195": { - "tracks": { - "2391": { - "Name": "Around The World" - }, - "2392": { - "Name": "Parallel Universe" - }, - "2393": { - "Name": "Scar Tissue" - }, - "2394": { - "Name": "Otherside" - }, - "2395": { - "Name": "Get On Top" - }, - "2396": { - "Name": "Californication" - }, - "2397": { - "Name": "Easily" - }, - "2398": { - "Name": "Porcelain" - }, - "2399": { - "Name": "Emit Remmus" - }, - "2400": { - "Name": "I Like Dirt" - }, - "2401": { - "Name": "This Velvet Glove" - }, - "2402": { - "Name": "Savior" - }, - "2403": { - "Name": "Purple Stain" - }, - "2404": { - "Name": "Right On Time" - }, - "2405": { - "Name": "Road Trippin'" - } - }, - "Title": "Californication" - } - }, - "Name": "Red Hot Chili Peppers" - } - }, - "194": { - "tracks": { - "2375": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "By The Way" - }, - "2376": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Universally Speaking" - }, - "2377": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "This Is The Place" - }, - "2378": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Dosed" - }, - "2379": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Don't Forget Me" - }, - "2380": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "The Zephyr Song" - }, - "2381": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Can't Stop" - }, - "2382": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "I Could Die For You" - }, - "2383": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Midnight" - }, - "2384": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Throw Away Your Television" - }, - "2385": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Cabron" - }, - "2386": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Tear" - }, - "2387": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "On Mercury" - }, - "2388": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Minor Thing" - }, - "2389": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Warm Tape" - }, - "2390": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "Name": "Venice Queen" - } - }, - "Title": "By The Way", - "artist": { - "ArtistId": 127, - "albums": { - "193": { - "tracks": { - "2358": { - "Name": "The Power Of Equality" - }, - "2359": { - "Name": "If You Have To Ask" - }, - "2360": { - "Name": "Breaking The Girl" - }, - "2361": { - "Name": "Funky Monks" - }, - "2362": { - "Name": "Suck My Kiss" - }, - "2363": { - "Name": "I Could Have Lied" - }, - "2364": { - "Name": "Mellowship Slinky In B Major" - }, - "2365": { - "Name": "The Righteous & The Wicked" - }, - "2366": { - "Name": "Give It Away" - }, - "2367": { - "Name": "Blood Sugar Sex Magik" - }, - "2368": { - "Name": "Under The Bridge" - }, - "2369": { - "Name": "Naked In The Rain" - }, - "2370": { - "Name": "Apache Rose Peacock" - }, - "2371": { - "Name": "The Greeting Song" - }, - "2372": { - "Name": "My Lovely Man" - }, - "2373": { - "Name": "Sir Psycho Sexy" - }, - "2374": { - "Name": "They're Red Hot" - } - }, - "Title": "Blood Sugar Sex Magik" - }, - "194": { - "tracks": { - "2375": { - "Name": "By The Way" - }, - "2376": { - "Name": "Universally Speaking" - }, - "2377": { - "Name": "This Is The Place" - }, - "2378": { - "Name": "Dosed" - }, - "2379": { - "Name": "Don't Forget Me" - }, - "2380": { - "Name": "The Zephyr Song" - }, - "2381": { - "Name": "Can't Stop" - }, - "2382": { - "Name": "I Could Die For You" - }, - "2383": { - "Name": "Midnight" - }, - "2384": { - "Name": "Throw Away Your Television" - }, - "2385": { - "Name": "Cabron" - }, - "2386": { - "Name": "Tear" - }, - "2387": { - "Name": "On Mercury" - }, - "2388": { - "Name": "Minor Thing" - }, - "2389": { - "Name": "Warm Tape" - }, - "2390": { - "Name": "Venice Queen" - } - }, - "Title": "By The Way" - }, - "195": { - "tracks": { - "2391": { - "Name": "Around The World" - }, - "2392": { - "Name": "Parallel Universe" - }, - "2393": { - "Name": "Scar Tissue" - }, - "2394": { - "Name": "Otherside" - }, - "2395": { - "Name": "Get On Top" - }, - "2396": { - "Name": "Californication" - }, - "2397": { - "Name": "Easily" - }, - "2398": { - "Name": "Porcelain" - }, - "2399": { - "Name": "Emit Remmus" - }, - "2400": { - "Name": "I Like Dirt" - }, - "2401": { - "Name": "This Velvet Glove" - }, - "2402": { - "Name": "Savior" - }, - "2403": { - "Name": "Purple Stain" - }, - "2404": { - "Name": "Right On Time" - }, - "2405": { - "Name": "Road Trippin'" - } - }, - "Title": "Californication" - } - }, - "Name": "Red Hot Chili Peppers" - } - }, - "195": { - "tracks": { - "2391": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Around The World" - }, - "2392": { - "Composer": "Red Hot Chili Peppers", - "Name": "Parallel Universe" - }, - "2393": { - "Composer": "Red Hot Chili Peppers", - "Name": "Scar Tissue" - }, - "2394": { - "Composer": "Red Hot Chili Peppers", - "Name": "Otherside" - }, - "2395": { - "Composer": "Red Hot Chili Peppers", - "Name": "Get On Top" - }, - "2396": { - "Composer": "Red Hot Chili Peppers", - "Name": "Californication" - }, - "2397": { - "Composer": "Red Hot Chili Peppers", - "Name": "Easily" - }, - "2398": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Porcelain" - }, - "2399": { - "Composer": "Red Hot Chili Peppers", - "Name": "Emit Remmus" - }, - "2400": { - "Composer": "Red Hot Chili Peppers", - "Name": "I Like Dirt" - }, - "2401": { - "Composer": "Red Hot Chili Peppers", - "Name": "This Velvet Glove" - }, - "2402": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "Name": "Savior" - }, - "2403": { - "Composer": "Red Hot Chili Peppers", - "Name": "Purple Stain" - }, - "2404": { - "Composer": "Red Hot Chili Peppers", - "Name": "Right On Time" - }, - "2405": { - "Composer": "Red Hot Chili Peppers", - "Name": "Road Trippin'" - } - }, - "Title": "Californication", - "artist": { - "ArtistId": 127, - "albums": { - "193": { - "tracks": { - "2358": { - "Name": "The Power Of Equality" - }, - "2359": { - "Name": "If You Have To Ask" - }, - "2360": { - "Name": "Breaking The Girl" - }, - "2361": { - "Name": "Funky Monks" - }, - "2362": { - "Name": "Suck My Kiss" - }, - "2363": { - "Name": "I Could Have Lied" - }, - "2364": { - "Name": "Mellowship Slinky In B Major" - }, - "2365": { - "Name": "The Righteous & The Wicked" - }, - "2366": { - "Name": "Give It Away" - }, - "2367": { - "Name": "Blood Sugar Sex Magik" - }, - "2368": { - "Name": "Under The Bridge" - }, - "2369": { - "Name": "Naked In The Rain" - }, - "2370": { - "Name": "Apache Rose Peacock" - }, - "2371": { - "Name": "The Greeting Song" - }, - "2372": { - "Name": "My Lovely Man" - }, - "2373": { - "Name": "Sir Psycho Sexy" - }, - "2374": { - "Name": "They're Red Hot" - } - }, - "Title": "Blood Sugar Sex Magik" - }, - "194": { - "tracks": { - "2375": { - "Name": "By The Way" - }, - "2376": { - "Name": "Universally Speaking" - }, - "2377": { - "Name": "This Is The Place" - }, - "2378": { - "Name": "Dosed" - }, - "2379": { - "Name": "Don't Forget Me" - }, - "2380": { - "Name": "The Zephyr Song" - }, - "2381": { - "Name": "Can't Stop" - }, - "2382": { - "Name": "I Could Die For You" - }, - "2383": { - "Name": "Midnight" - }, - "2384": { - "Name": "Throw Away Your Television" - }, - "2385": { - "Name": "Cabron" - }, - "2386": { - "Name": "Tear" - }, - "2387": { - "Name": "On Mercury" - }, - "2388": { - "Name": "Minor Thing" - }, - "2389": { - "Name": "Warm Tape" - }, - "2390": { - "Name": "Venice Queen" - } - }, - "Title": "By The Way" - }, - "195": { - "tracks": { - "2391": { - "Name": "Around The World" - }, - "2392": { - "Name": "Parallel Universe" - }, - "2393": { - "Name": "Scar Tissue" - }, - "2394": { - "Name": "Otherside" - }, - "2395": { - "Name": "Get On Top" - }, - "2396": { - "Name": "Californication" - }, - "2397": { - "Name": "Easily" - }, - "2398": { - "Name": "Porcelain" - }, - "2399": { - "Name": "Emit Remmus" - }, - "2400": { - "Name": "I Like Dirt" - }, - "2401": { - "Name": "This Velvet Glove" - }, - "2402": { - "Name": "Savior" - }, - "2403": { - "Name": "Purple Stain" - }, - "2404": { - "Name": "Right On Time" - }, - "2405": { - "Name": "Road Trippin'" - } - }, - "Title": "Californication" - } - }, - "Name": "Red Hot Chili Peppers" - } - }, - "196": { - "tracks": { - "2406": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "The Spirit Of Radio" - }, - "2407": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "The Trees" - }, - "2408": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Something For Nothing" - }, - "2409": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Freewill" - }, - "2410": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Xanadu" - }, - "2411": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Bastille Day" - }, - "2412": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "By-Tor And The Snow Dog" - }, - "2413": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Anthem" - }, - "2414": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Closer To The Heart" - }, - "2415": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "2112 Overture" - }, - "2416": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "The Temples Of Syrinx" - }, - "2417": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "La Villa Strangiato" - }, - "2418": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Fly By Night" - }, - "2419": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "Name": "Finding My Way" - } - }, - "Title": "Retrospective I (1974-1980)", - "artist": { - "ArtistId": 128, - "albums": { - "196": { - "tracks": { - "2406": { - "Name": "The Spirit Of Radio" - }, - "2407": { - "Name": "The Trees" - }, - "2408": { - "Name": "Something For Nothing" - }, - "2409": { - "Name": "Freewill" - }, - "2410": { - "Name": "Xanadu" - }, - "2411": { - "Name": "Bastille Day" - }, - "2412": { - "Name": "By-Tor And The Snow Dog" - }, - "2413": { - "Name": "Anthem" - }, - "2414": { - "Name": "Closer To The Heart" - }, - "2415": { - "Name": "2112 Overture" - }, - "2416": { - "Name": "The Temples Of Syrinx" - }, - "2417": { - "Name": "La Villa Strangiato" - }, - "2418": { - "Name": "Fly By Night" - }, - "2419": { - "Name": "Finding My Way" - } - }, - "Title": "Retrospective I (1974-1980)" - } - }, - "Name": "Rush" - } - }, - "197": { - "tracks": { - "2420": { - "Composer": "M.Babatunde Olantunji", - "Name": "Jingo" - }, - "2421": { - "Composer": "E.Weiss", - "Name": "El Corazon Manda" - }, - "2422": { - "Composer": "E.Weiss", - "Name": "La Puesta Del Sol" - }, - "2423": { - "Composer": "Carlos Santana", - "Name": "Persuasion" - }, - "2424": { - "Composer": "Albert King", - "Name": "As The Years Go by" - }, - "2425": { - "Composer": "Carlos Santana", - "Name": "Soul Sacrifice" - }, - "2426": { - "Composer": "W.Correa", - "Name": "Fried Neckbones And Home Fries" - }, - "2427": { - "Composer": "Carlos Santana", - "Name": "Santana Jam" - } - }, - "Title": "Santana - As Years Go By", - "artist": { - "ArtistId": 59, - "albums": { - "46": { - "tracks": { - "570": { - "Name": "(Da Le) Yaleo" - }, - "571": { - "Name": "Love Of My Life" - }, - "572": { - "Name": "Put Your Lights On" - }, - "573": { - "Name": "Africa Bamba" - }, - "574": { - "Name": "Smooth" - }, - "575": { - "Name": "Do You Like The Way" - }, - "576": { - "Name": "Maria Maria" - }, - "577": { - "Name": "Migra" - }, - "578": { - "Name": "Corazon Espinado" - }, - "579": { - "Name": "Wishing It Was" - }, - "580": { - "Name": "El Farol" - }, - "581": { - "Name": "Primavera" - }, - "582": { - "Name": "The Calling" - } - }, - "Title": "Supernatural" - }, - "197": { - "tracks": { - "2420": { - "Name": "Jingo" - }, - "2421": { - "Name": "El Corazon Manda" - }, - "2422": { - "Name": "La Puesta Del Sol" - }, - "2423": { - "Name": "Persuasion" - }, - "2424": { - "Name": "As The Years Go by" - }, - "2425": { - "Name": "Soul Sacrifice" - }, - "2426": { - "Name": "Fried Neckbones And Home Fries" - }, - "2427": { - "Name": "Santana Jam" - } - }, - "Title": "Santana - As Years Go By" - }, - "198": { - "tracks": { - "2428": { - "Name": "Evil Ways" - }, - "2429": { - "Name": "We've Got To Get Together/Jingo" - }, - "2430": { - "Name": "Rock Me" - }, - "2431": { - "Name": "Just Ain't Good Enough" - }, - "2432": { - "Name": "Funky Piano" - }, - "2433": { - "Name": "The Way You Do To Mer" - } - }, - "Title": "Santana Live" - } - }, - "Name": "Santana" - } - }, - "198": { - "tracks": { - "2428": { - "Composer": null, - "Name": "Evil Ways" - }, - "2429": { - "Composer": null, - "Name": "We've Got To Get Together/Jingo" - }, - "2430": { - "Composer": null, - "Name": "Rock Me" - }, - "2431": { - "Composer": null, - "Name": "Just Ain't Good Enough" - }, - "2432": { - "Composer": null, - "Name": "Funky Piano" - }, - "2433": { - "Composer": null, - "Name": "The Way You Do To Mer" - } - }, - "Title": "Santana Live", - "artist": { - "ArtistId": 59, - "albums": { - "46": { - "tracks": { - "570": { - "Name": "(Da Le) Yaleo" - }, - "571": { - "Name": "Love Of My Life" - }, - "572": { - "Name": "Put Your Lights On" - }, - "573": { - "Name": "Africa Bamba" - }, - "574": { - "Name": "Smooth" - }, - "575": { - "Name": "Do You Like The Way" - }, - "576": { - "Name": "Maria Maria" - }, - "577": { - "Name": "Migra" - }, - "578": { - "Name": "Corazon Espinado" - }, - "579": { - "Name": "Wishing It Was" - }, - "580": { - "Name": "El Farol" - }, - "581": { - "Name": "Primavera" - }, - "582": { - "Name": "The Calling" - } - }, - "Title": "Supernatural" - }, - "197": { - "tracks": { - "2420": { - "Name": "Jingo" - }, - "2421": { - "Name": "El Corazon Manda" - }, - "2422": { - "Name": "La Puesta Del Sol" - }, - "2423": { - "Name": "Persuasion" - }, - "2424": { - "Name": "As The Years Go by" - }, - "2425": { - "Name": "Soul Sacrifice" - }, - "2426": { - "Name": "Fried Neckbones And Home Fries" - }, - "2427": { - "Name": "Santana Jam" - } - }, - "Title": "Santana - As Years Go By" - }, - "198": { - "tracks": { - "2428": { - "Name": "Evil Ways" - }, - "2429": { - "Name": "We've Got To Get Together/Jingo" - }, - "2430": { - "Name": "Rock Me" - }, - "2431": { - "Name": "Just Ain't Good Enough" - }, - "2432": { - "Name": "Funky Piano" - }, - "2433": { - "Name": "The Way You Do To Mer" - } - }, - "Title": "Santana Live" - } - }, - "Name": "Santana" - } - }, - "199": { - "tracks": { - "2451": { - "Composer": "Chico Amaral/Samuel Rosa", - "Name": "Ela Desapareceu" - }, - "2455": { - "Composer": "Chico Amaral/Samuel Rosa", - "Name": "Maquinarama" - }, - "2458": { - "Composer": "Chico Amaral/Samuel Rosa", - "Name": "Fica" - }, - "2459": { - "Composer": "Nando Reis/Samuel Rosa", - "Name": "Ali" - } - }, - "Title": "Maquinarama", - "artist": { - "ArtistId": 130, - "albums": { - "199": { - "tracks": { - "2451": { - "Name": "Ela Desapareceu" - }, - "2455": { - "Name": "Maquinarama" - }, - "2458": { - "Name": "Fica" - }, - "2459": { - "Name": "Ali" - } - }, - "Title": "Maquinarama" - } - }, - "Name": "Skank" - } - }, - "201": { - "tracks": { - "2472": { - "Composer": "Billy Corgan", - "Name": "Lucky 13" - }, - "2473": { - "Composer": "Billy Corgan", - "Name": "Aeroplane Flies High" - }, - "2474": { - "Composer": "Billy Corgan", - "Name": "Because You Are" - }, - "2475": { - "Composer": "Billy Corgan", - "Name": "Slow Dawn" - }, - "2476": { - "Composer": "James Iha", - "Name": "Believe" - }, - "2477": { - "Composer": "Billy Corgan", - "Name": "My Mistake" - }, - "2478": { - "Composer": "Billy Corgan", - "Name": "Marquis In Spades" - }, - "2479": { - "Composer": "Billy Corgan", - "Name": "Here's To The Atom Bomb" - }, - "2480": { - "Composer": "Billy Corgan", - "Name": "Sparrow" - }, - "2481": { - "Composer": "Billy Corgan", - "Name": "Waiting" - }, - "2482": { - "Composer": "Billy Corgan", - "Name": "Saturnine" - }, - "2483": { - "Composer": "David Cook", - "Name": "Rock On" - }, - "2484": { - "Composer": "Billy Corgan", - "Name": "Set The Ray To Jerry" - }, - "2485": { - "Composer": "Billy Corgan", - "Name": "Winterlong" - }, - "2486": { - "Composer": "Billy Corgan", - "Name": "Soot & Stars" - }, - "2487": { - "Composer": "Billy Corgan", - "Name": "Blissed & Gone" - } - }, - "Title": "Judas 0: B-Sides and Rarities", - "artist": { - "ArtistId": 131, - "albums": { - "201": { - "tracks": { - "2472": { - "Name": "Lucky 13" - }, - "2473": { - "Name": "Aeroplane Flies High" - }, - "2474": { - "Name": "Because You Are" - }, - "2475": { - "Name": "Slow Dawn" - }, - "2476": { - "Name": "Believe" - }, - "2477": { - "Name": "My Mistake" - }, - "2478": { - "Name": "Marquis In Spades" - }, - "2479": { - "Name": "Here's To The Atom Bomb" - }, - "2480": { - "Name": "Sparrow" - }, - "2481": { - "Name": "Waiting" - }, - "2482": { - "Name": "Saturnine" - }, - "2483": { - "Name": "Rock On" - }, - "2484": { - "Name": "Set The Ray To Jerry" - }, - "2485": { - "Name": "Winterlong" - }, - "2486": { - "Name": "Soot & Stars" - }, - "2487": { - "Name": "Blissed & Gone" - } - }, - "Title": "Judas 0: B-Sides and Rarities" - }, - "202": { - "tracks": { - "2488": { - "Name": "Siva" - }, - "2489": { - "Name": "Rhinocerous" - }, - "2490": { - "Name": "Drown" - }, - "2491": { - "Name": "Cherub Rock" - }, - "2492": { - "Name": "Today" - }, - "2493": { - "Name": "Disarm" - }, - "2494": { - "Name": "Landslide" - }, - "2495": { - "Name": "Bullet With Butterfly Wings" - }, - "2496": { - "Name": "1979" - }, - "2497": { - "Name": "Zero" - }, - "2498": { - "Name": "Tonight, Tonight" - }, - "2499": { - "Name": "Eye" - }, - "2500": { - "Name": "Ava Adore" - }, - "2501": { - "Name": "Perfect" - }, - "2502": { - "Name": "The Everlasting Gaze" - }, - "2503": { - "Name": "Stand Inside Your Love" - }, - "2504": { - "Name": "Real Love" - }, - "2505": { - "Name": "[Untitled]" - } - }, - "Title": "Rotten Apples: Greatest Hits" - } - }, - "Name": "Smashing Pumpkins" - } - }, - "202": { - "tracks": { - "2488": { - "Composer": "Billy Corgan", - "Name": "Siva" - }, - "2489": { - "Composer": "Billy Corgan", - "Name": "Rhinocerous" - }, - "2490": { - "Composer": "Billy Corgan", - "Name": "Drown" - }, - "2491": { - "Composer": "Billy Corgan", - "Name": "Cherub Rock" - }, - "2492": { - "Composer": "Billy Corgan", - "Name": "Today" - }, - "2493": { - "Composer": "Billy Corgan", - "Name": "Disarm" - }, - "2494": { - "Composer": "Stevie Nicks", - "Name": "Landslide" - }, - "2495": { - "Composer": "Billy Corgan", - "Name": "Bullet With Butterfly Wings" - }, - "2496": { - "Composer": "Billy Corgan", - "Name": "1979" - }, - "2497": { - "Composer": "Billy Corgan", - "Name": "Zero" - }, - "2498": { - "Composer": "Billy Corgan", - "Name": "Tonight, Tonight" - }, - "2499": { - "Composer": "Billy Corgan", - "Name": "Eye" - }, - "2500": { - "Composer": "Billy Corgan", - "Name": "Ava Adore" - }, - "2501": { - "Composer": "Billy Corgan", - "Name": "Perfect" - }, - "2502": { - "Composer": "Billy Corgan", - "Name": "The Everlasting Gaze" - }, - "2503": { - "Composer": "Billy Corgan", - "Name": "Stand Inside Your Love" - }, - "2504": { - "Composer": "Billy Corgan", - "Name": "Real Love" - }, - "2505": { - "Composer": "Billy Corgan", - "Name": "[Untitled]" - } - }, - "Title": "Rotten Apples: Greatest Hits", - "artist": { - "ArtistId": 131, - "albums": { - "201": { - "tracks": { - "2472": { - "Name": "Lucky 13" - }, - "2473": { - "Name": "Aeroplane Flies High" - }, - "2474": { - "Name": "Because You Are" - }, - "2475": { - "Name": "Slow Dawn" - }, - "2476": { - "Name": "Believe" - }, - "2477": { - "Name": "My Mistake" - }, - "2478": { - "Name": "Marquis In Spades" - }, - "2479": { - "Name": "Here's To The Atom Bomb" - }, - "2480": { - "Name": "Sparrow" - }, - "2481": { - "Name": "Waiting" - }, - "2482": { - "Name": "Saturnine" - }, - "2483": { - "Name": "Rock On" - }, - "2484": { - "Name": "Set The Ray To Jerry" - }, - "2485": { - "Name": "Winterlong" - }, - "2486": { - "Name": "Soot & Stars" - }, - "2487": { - "Name": "Blissed & Gone" - } - }, - "Title": "Judas 0: B-Sides and Rarities" - }, - "202": { - "tracks": { - "2488": { - "Name": "Siva" - }, - "2489": { - "Name": "Rhinocerous" - }, - "2490": { - "Name": "Drown" - }, - "2491": { - "Name": "Cherub Rock" - }, - "2492": { - "Name": "Today" - }, - "2493": { - "Name": "Disarm" - }, - "2494": { - "Name": "Landslide" - }, - "2495": { - "Name": "Bullet With Butterfly Wings" - }, - "2496": { - "Name": "1979" - }, - "2497": { - "Name": "Zero" - }, - "2498": { - "Name": "Tonight, Tonight" - }, - "2499": { - "Name": "Eye" - }, - "2500": { - "Name": "Ava Adore" - }, - "2501": { - "Name": "Perfect" - }, - "2502": { - "Name": "The Everlasting Gaze" - }, - "2503": { - "Name": "Stand Inside Your Love" - }, - "2504": { - "Name": "Real Love" - }, - "2505": { - "Name": "[Untitled]" - } - }, - "Title": "Rotten Apples: Greatest Hits" - } - }, - "Name": "Smashing Pumpkins" - } - }, - "203": { - "tracks": { - "2506": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Nothing To Say" - }, - "2507": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Flower" - }, - "2508": { - "Composer": "Chris Cornell", - "Name": "Loud Love" - }, - "2509": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Hands All Over" - }, - "2510": { - "Composer": "Chris Cornell/Kim Thayil", - "Name": "Get On The Snake" - }, - "2511": { - "Composer": "Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron", - "Name": "Jesus Christ Pose" - }, - "2512": { - "Composer": "Chris Cornell", - "Name": "Outshined" - }, - "2513": { - "Composer": "Chris Cornell", - "Name": "Rusty Cage" - }, - "2514": { - "Composer": "Chris Cornell", - "Name": "Spoonman" - }, - "2515": { - "Composer": "Chris Cornell", - "Name": "The Day I Tried To Live" - }, - "2516": { - "Composer": "Soundgarden", - "Name": "Black Hole Sun" - }, - "2517": { - "Composer": "Chris Cornell", - "Name": "Fell On Black Days" - }, - "2518": { - "Composer": "Chris Cornell", - "Name": "Pretty Noose" - }, - "2519": { - "Composer": "Chris Cornell", - "Name": "Burden In My Hand" - }, - "2520": { - "Composer": "Chris Cornell", - "Name": "Blow Up The Outside World" - }, - "2521": { - "Composer": "Ben Shepherd/Chris Cornell", - "Name": "Ty Cobb" - }, - "2522": { - "Composer": "Chris Cornell", - "Name": "Bleed Together" - } - }, - "Title": "A-Sides", - "artist": { - "ArtistId": 132, - "albums": { - "203": { - "tracks": { - "2506": { - "Name": "Nothing To Say" - }, - "2507": { - "Name": "Flower" - }, - "2508": { - "Name": "Loud Love" - }, - "2509": { - "Name": "Hands All Over" - }, - "2510": { - "Name": "Get On The Snake" - }, - "2511": { - "Name": "Jesus Christ Pose" - }, - "2512": { - "Name": "Outshined" - }, - "2513": { - "Name": "Rusty Cage" - }, - "2514": { - "Name": "Spoonman" - }, - "2515": { - "Name": "The Day I Tried To Live" - }, - "2516": { - "Name": "Black Hole Sun" - }, - "2517": { - "Name": "Fell On Black Days" - }, - "2518": { - "Name": "Pretty Noose" - }, - "2519": { - "Name": "Burden In My Hand" - }, - "2520": { - "Name": "Blow Up The Outside World" - }, - "2521": { - "Name": "Ty Cobb" - }, - "2522": { - "Name": "Bleed Together" - } - }, - "Title": "A-Sides" - } - }, - "Name": "Soundgarden" - } - }, - "204": { - "tracks": { - "2523": { - "Composer": "Jay Beckenstein", - "Name": "Morning Dance" - }, - "2524": { - "Composer": "Jeremy Wall", - "Name": "Jubilee" - }, - "2525": { - "Composer": "Jeremy Wall", - "Name": "Rasul" - }, - "2526": { - "Composer": "Jay Beckenstein", - "Name": "Song For Lorraine" - }, - "2527": { - "Composer": "Jeremy Wall", - "Name": "Starburst" - }, - "2528": { - "Composer": "Jay Beckenstein", - "Name": "Heliopolis" - }, - "2529": { - "Composer": "Chet Catallo", - "Name": "It Doesn't Matter" - }, - "2530": { - "Composer": "Jeremy Wall", - "Name": "Little Linda" - }, - "2531": { - "Composer": "Rick Strauss", - "Name": "End Of Romanticism" - } - }, - "Title": "Morning Dance", - "artist": { - "ArtistId": 53, - "albums": { - "38": { - "tracks": { - "456": { - "Name": "Heart of the Night" - }, - "457": { - "Name": "De La Luz" - }, - "458": { - "Name": "Westwood Moon" - }, - "459": { - "Name": "Midnight" - }, - "460": { - "Name": "Playtime" - }, - "461": { - "Name": "Surrender" - }, - "462": { - "Name": "Valentino's" - }, - "463": { - "Name": "Believe" - }, - "464": { - "Name": "As We Sleep" - }, - "465": { - "Name": "When Evening Falls" - }, - "466": { - "Name": "J Squared" - }, - "467": { - "Name": "Best Thing" - } - }, - "Title": "Heart of the Night" - }, - "204": { - "tracks": { - "2523": { - "Name": "Morning Dance" - }, - "2524": { - "Name": "Jubilee" - }, - "2525": { - "Name": "Rasul" - }, - "2526": { - "Name": "Song For Lorraine" - }, - "2527": { - "Name": "Starburst" - }, - "2528": { - "Name": "Heliopolis" - }, - "2529": { - "Name": "It Doesn't Matter" - }, - "2530": { - "Name": "Little Linda" - }, - "2531": { - "Name": "End Of Romanticism" - } - }, - "Title": "Morning Dance" - } - }, - "Name": "Spyro Gyra" - } - }, - "205": { - "tracks": { - "2532": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "The House Is Rockin'" - }, - "2533": { - "Composer": "B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon", - "Name": "Crossfire" - }, - "2534": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "Tightrope" - }, - "2535": { - "Composer": "Willie Dixon", - "Name": "Let Me Love You Baby" - }, - "2536": { - "Composer": "B. Guy", - "Name": "Leave My Girl Alone" - }, - "2537": { - "Composer": "Stevie Ray Vaughan", - "Name": "Travis Walk" - }, - "2538": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "Wall Of Denial" - }, - "2539": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "Name": "Scratch-N-Sniff" - }, - "2540": { - "Composer": "C. Burnett", - "Name": "Love Me Darlin'" - }, - "2541": { - "Composer": "Stevie Ray Vaughan", - "Name": "Riviera Paradise" - } - }, - "Title": "In Step", - "artist": { - "ArtistId": 133, - "albums": { - "205": { - "tracks": { - "2532": { - "Name": "The House Is Rockin'" - }, - "2533": { - "Name": "Crossfire" - }, - "2534": { - "Name": "Tightrope" - }, - "2535": { - "Name": "Let Me Love You Baby" - }, - "2536": { - "Name": "Leave My Girl Alone" - }, - "2537": { - "Name": "Travis Walk" - }, - "2538": { - "Name": "Wall Of Denial" - }, - "2539": { - "Name": "Scratch-N-Sniff" - }, - "2540": { - "Name": "Love Me Darlin'" - }, - "2541": { - "Name": "Riviera Paradise" - } - }, - "Title": "In Step" - } - }, - "Name": "Stevie Ray Vaughan & Double Trouble" - } - }, - "206": { - "tracks": { - "2542": { - "Composer": "R. DeLeo/Weiland", - "Name": "Dead And Bloated" - }, - "2543": { - "Composer": "D. DeLeo/Kretz/Weiland", - "Name": "Sex Type Thing" - }, - "2544": { - "Composer": "D. DeLeo/R. DeLeo/Weiland", - "Name": "Wicked Garden" - }, - "2545": { - "Composer": "Dean Deleo", - "Name": "No Memory" - }, - "2546": { - "Composer": "R. DeLeo/Weiland", - "Name": "Sin" - }, - "2547": { - "Composer": "D. DeLeo/Kretz/R. DeLeo/Weiland", - "Name": "Naked Sunday" - }, - "2548": { - "Composer": "R. DeLeo/Weiland", - "Name": "Creep" - }, - "2549": { - "Composer": "R. DeLeo/Weiland", - "Name": "Piece Of Pie" - }, - "2550": { - "Composer": "R. DeLeo/Weiland", - "Name": "Plush" - }, - "2551": { - "Composer": "R. DeLeo/Weiland", - "Name": "Wet My Bed" - }, - "2552": { - "Composer": "Kretz/R. DeLeo/Weiland", - "Name": "Crackerman" - }, - "2553": { - "Composer": "D. DeLeo/Kretz/Weiland", - "Name": "Where The River Goes" - } - }, - "Title": "Core", - "artist": { - "ArtistId": 134, - "albums": { - "206": { - "tracks": { - "2542": { - "Name": "Dead And Bloated" - }, - "2543": { - "Name": "Sex Type Thing" - }, - "2544": { - "Name": "Wicked Garden" - }, - "2545": { - "Name": "No Memory" - }, - "2546": { - "Name": "Sin" - }, - "2547": { - "Name": "Naked Sunday" - }, - "2548": { - "Name": "Creep" - }, - "2549": { - "Name": "Piece Of Pie" - }, - "2550": { - "Name": "Plush" - }, - "2551": { - "Name": "Wet My Bed" - }, - "2552": { - "Name": "Crackerman" - }, - "2553": { - "Name": "Where The River Goes" - } - }, - "Title": "Core" - } - }, - "Name": "Stone Temple Pilots" - } - }, - "207": { - "tracks": { - "2554": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Soldier Side - Intro" - }, - "2555": { - "Composer": "Tankian, Serj", - "Name": "B.Y.O.B." - }, - "2556": { - "Composer": "Tankian, Serj", - "Name": "Revenga" - }, - "2557": { - "Composer": "Tankian, Serj", - "Name": "Cigaro" - }, - "2558": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Radio/Video" - }, - "2559": { - "Composer": "Tankian, Serj", - "Name": "This Cocaine Makes Me Feel Like I'm On This Song" - }, - "2560": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Violent Pornography" - }, - "2561": { - "Composer": "Tankian, Serj", - "Name": "Question!" - }, - "2562": { - "Composer": "Tankian, Serj", - "Name": "Sad Statue" - }, - "2563": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "Name": "Old School Hollywood" - }, - "2564": { - "Composer": "Tankian, Serj", - "Name": "Lost in Hollywood" - } - }, - "Title": "Mezmerize", - "artist": { - "ArtistId": 135, - "albums": { - "207": { - "tracks": { - "2554": { - "Name": "Soldier Side - Intro" - }, - "2555": { - "Name": "B.Y.O.B." - }, - "2556": { - "Name": "Revenga" - }, - "2557": { - "Name": "Cigaro" - }, - "2558": { - "Name": "Radio/Video" - }, - "2559": { - "Name": "This Cocaine Makes Me Feel Like I'm On This Song" - }, - "2560": { - "Name": "Violent Pornography" - }, - "2561": { - "Name": "Question!" - }, - "2562": { - "Name": "Sad Statue" - }, - "2563": { - "Name": "Old School Hollywood" - }, - "2564": { - "Name": "Lost in Hollywood" - } - }, - "Title": "Mezmerize" - } - }, - "Name": "System Of A Down" - } - }, - "208": { - "tracks": { - "2565": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "The Sun Road" - }, - "2566": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Dark Corners" - }, - "2567": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Duende" - }, - "2568": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Black Light Syndrome" - }, - "2569": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Falling in Circles" - }, - "2570": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Book of Hours" - }, - "2571": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "Name": "Chaos-Control" - } - }, - "Title": "[1997] Black Light Syndrome", - "artist": { - "ArtistId": 136, - "albums": { - "208": { - "tracks": { - "2565": { - "Name": "The Sun Road" - }, - "2566": { - "Name": "Dark Corners" - }, - "2567": { - "Name": "Duende" - }, - "2568": { - "Name": "Black Light Syndrome" - }, - "2569": { - "Name": "Falling in Circles" - }, - "2570": { - "Name": "Book of Hours" - }, - "2571": { - "Name": "Chaos-Control" - } - }, - "Title": "[1997] Black Light Syndrome" - } - }, - "Name": "Terry Bozzio, Tony Levin & Steve Stevens" - } - }, - "209": { - "tracks": { - "2572": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Midnight From The Inside Out" - }, - "2573": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Sting Me" - }, - "2574": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Thick & Thin" - }, - "2575": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Greasy Grass River" - }, - "2576": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Sometimes Salvation" - }, - "2577": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Cursed Diamonds" - }, - "2578": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Miracle To Me" - }, - "2579": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Wiser Time" - }, - "2580": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Girl From A Pawnshop" - }, - "2581": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Cosmic Fiend" - } - }, - "Title": "Live [Disc 1]", - "artist": { - "ArtistId": 137, - "albums": { - "209": { - "tracks": { - "2572": { - "Name": "Midnight From The Inside Out" - }, - "2573": { - "Name": "Sting Me" - }, - "2574": { - "Name": "Thick & Thin" - }, - "2575": { - "Name": "Greasy Grass River" - }, - "2576": { - "Name": "Sometimes Salvation" - }, - "2577": { - "Name": "Cursed Diamonds" - }, - "2578": { - "Name": "Miracle To Me" - }, - "2579": { - "Name": "Wiser Time" - }, - "2580": { - "Name": "Girl From A Pawnshop" - }, - "2581": { - "Name": "Cosmic Fiend" - } - }, - "Title": "Live [Disc 1]" - }, - "210": { - "tracks": { - "2582": { - "Name": "Black Moon Creeping" - }, - "2583": { - "Name": "High Head Blues" - }, - "2584": { - "Name": "Title Song" - }, - "2585": { - "Name": "She Talks To Angels" - }, - "2586": { - "Name": "Twice As Hard" - }, - "2587": { - "Name": "Lickin'" - }, - "2588": { - "Name": "Soul Singing" - }, - "2589": { - "Name": "Hard To Handle" - }, - "2590": { - "Name": "Remedy" - } - }, - "Title": "Live [Disc 2]" - } - }, - "Name": "The Black Crowes" - } - }, - "210": { - "tracks": { - "2582": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Black Moon Creeping" - }, - "2583": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "High Head Blues" - }, - "2584": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Title Song" - }, - "2585": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "She Talks To Angels" - }, - "2586": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Twice As Hard" - }, - "2587": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Lickin'" - }, - "2588": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Soul Singing" - }, - "2589": { - "Composer": "A.Isbell/A.Jones/O.Redding", - "Name": "Hard To Handle" - }, - "2590": { - "Composer": "Chris Robinson/Rich Robinson", - "Name": "Remedy" - } - }, - "Title": "Live [Disc 2]", - "artist": { - "ArtistId": 137, - "albums": { - "209": { - "tracks": { - "2572": { - "Name": "Midnight From The Inside Out" - }, - "2573": { - "Name": "Sting Me" - }, - "2574": { - "Name": "Thick & Thin" - }, - "2575": { - "Name": "Greasy Grass River" - }, - "2576": { - "Name": "Sometimes Salvation" - }, - "2577": { - "Name": "Cursed Diamonds" - }, - "2578": { - "Name": "Miracle To Me" - }, - "2579": { - "Name": "Wiser Time" - }, - "2580": { - "Name": "Girl From A Pawnshop" - }, - "2581": { - "Name": "Cosmic Fiend" - } - }, - "Title": "Live [Disc 1]" - }, - "210": { - "tracks": { - "2582": { - "Name": "Black Moon Creeping" - }, - "2583": { - "Name": "High Head Blues" - }, - "2584": { - "Name": "Title Song" - }, - "2585": { - "Name": "She Talks To Angels" - }, - "2586": { - "Name": "Twice As Hard" - }, - "2587": { - "Name": "Lickin'" - }, - "2588": { - "Name": "Soul Singing" - }, - "2589": { - "Name": "Hard To Handle" - }, - "2590": { - "Name": "Remedy" - } - }, - "Title": "Live [Disc 2]" - } - }, - "Name": "The Black Crowes" - } - }, - "211": { - "tracks": { - "2591": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "White Riot" - }, - "2592": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Remote Control" - }, - "2593": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Complete Control" - }, - "2594": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Clash City Rockers" - }, - "2595": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "(White Man) In Hammersmith Palais" - }, - "2596": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Tommy Gun" - }, - "2597": { - "Composer": "Mick Jones/Traditional arr. Joe Strummer", - "Name": "English Civil War" - }, - "2598": { - "Composer": "Sonny Curtis", - "Name": "I Fought The Law" - }, - "2599": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "London Calling" - }, - "2600": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Train In Vain" - }, - "2601": { - "Composer": "Joe Strummer/Mick Jones", - "Name": "Bankrobber" - }, - "2602": { - "Composer": "The Clash", - "Name": "The Call Up" - }, - "2603": { - "Composer": "The Clash", - "Name": "Hitsville UK" - }, - "2604": { - "Composer": "The Clash", - "Name": "The Magnificent Seven" - }, - "2605": { - "Composer": "The Clash", - "Name": "This Is Radio Clash" - }, - "2606": { - "Composer": "The Clash", - "Name": "Know Your Rights" - }, - "2607": { - "Composer": "The Clash", - "Name": "Rock The Casbah" - }, - "2608": { - "Composer": "The Clash", - "Name": "Should I Stay Or Should I Go" - } - }, - "Title": "The Singles", - "artist": { - "ArtistId": 138, - "albums": { - "211": { - "tracks": { - "2591": { - "Name": "White Riot" - }, - "2592": { - "Name": "Remote Control" - }, - "2593": { - "Name": "Complete Control" - }, - "2594": { - "Name": "Clash City Rockers" - }, - "2595": { - "Name": "(White Man) In Hammersmith Palais" - }, - "2596": { - "Name": "Tommy Gun" - }, - "2597": { - "Name": "English Civil War" - }, - "2598": { - "Name": "I Fought The Law" - }, - "2599": { - "Name": "London Calling" - }, - "2600": { - "Name": "Train In Vain" - }, - "2601": { - "Name": "Bankrobber" - }, - "2602": { - "Name": "The Call Up" - }, - "2603": { - "Name": "Hitsville UK" - }, - "2604": { - "Name": "The Magnificent Seven" - }, - "2605": { - "Name": "This Is Radio Clash" - }, - "2606": { - "Name": "Know Your Rights" - }, - "2607": { - "Name": "Rock The Casbah" - }, - "2608": { - "Name": "Should I Stay Or Should I Go" - } - }, - "Title": "The Singles" - } - }, - "Name": "The Clash" - } - }, - "212": { - "tracks": { - "2609": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "War (The Process)" - }, - "2610": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "The Saint" - }, - "2611": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Rise" - }, - "2612": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Take The Power" - }, - "2613": { - "Composer": "Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones", - "Name": "Breathe" - }, - "2614": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Nico" - }, - "2615": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "American Gothic" - }, - "2616": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Name": "Ashes And Ghosts" - }, - "2617": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "Shape The Sky" - }, - "2618": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "Name": "Speed Of Light" - }, - "2619": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "True Believers" - }, - "2620": { - "Composer": "Billy Duffy/Ian Astbury", - "Name": "My Bridges Burn" - } - }, - "Title": "Beyond Good And Evil", - "artist": { - "ArtistId": 139, - "albums": { - "212": { - "tracks": { - "2609": { - "Name": "War (The Process)" - }, - "2610": { - "Name": "The Saint" - }, - "2611": { - "Name": "Rise" - }, - "2612": { - "Name": "Take The Power" - }, - "2613": { - "Name": "Breathe" - }, - "2614": { - "Name": "Nico" - }, - "2615": { - "Name": "American Gothic" - }, - "2616": { - "Name": "Ashes And Ghosts" - }, - "2617": { - "Name": "Shape The Sky" - }, - "2618": { - "Name": "Speed Of Light" - }, - "2619": { - "Name": "True Believers" - }, - "2620": { - "Name": "My Bridges Burn" - } - }, - "Title": "Beyond Good And Evil" - }, - "213": { - "tracks": { - "2621": { - "Name": "She Sells Sanctuary" - }, - "2622": { - "Name": "Fire Woman" - }, - "2623": { - "Name": "Lil' Evil" - }, - "2624": { - "Name": "Spirit Walker" - }, - "2625": { - "Name": "The Witch" - }, - "2626": { - "Name": "Revolution" - }, - "2627": { - "Name": "Wild Hearted Son" - }, - "2628": { - "Name": "Love Removal Machine" - }, - "2629": { - "Name": "Rain" - }, - "2630": { - "Name": "Edie (Ciao Baby)" - }, - "2631": { - "Name": "Heart Of Soul" - }, - "2632": { - "Name": "Love" - }, - "2633": { - "Name": "Wild Flower" - }, - "2634": { - "Name": "Go West" - }, - "2635": { - "Name": "Resurrection Joe" - }, - "2636": { - "Name": "Sun King" - }, - "2637": { - "Name": "Sweet Soul Sister" - }, - "2638": { - "Name": "Earth Mofo" - } - }, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - } - }, - "Name": "The Cult" - } - }, - "213": { - "tracks": { - "2621": { - "Composer": null, - "Name": "She Sells Sanctuary" - }, - "2622": { - "Composer": null, - "Name": "Fire Woman" - }, - "2623": { - "Composer": null, - "Name": "Lil' Evil" - }, - "2624": { - "Composer": null, - "Name": "Spirit Walker" - }, - "2625": { - "Composer": null, - "Name": "The Witch" - }, - "2626": { - "Composer": null, - "Name": "Revolution" - }, - "2627": { - "Composer": null, - "Name": "Wild Hearted Son" - }, - "2628": { - "Composer": null, - "Name": "Love Removal Machine" - }, - "2629": { - "Composer": null, - "Name": "Rain" - }, - "2630": { - "Composer": null, - "Name": "Edie (Ciao Baby)" - }, - "2631": { - "Composer": null, - "Name": "Heart Of Soul" - }, - "2632": { - "Composer": null, - "Name": "Love" - }, - "2633": { - "Composer": null, - "Name": "Wild Flower" - }, - "2634": { - "Composer": null, - "Name": "Go West" - }, - "2635": { - "Composer": null, - "Name": "Resurrection Joe" - }, - "2636": { - "Composer": null, - "Name": "Sun King" - }, - "2637": { - "Composer": null, - "Name": "Sweet Soul Sister" - }, - "2638": { - "Composer": null, - "Name": "Earth Mofo" - } - }, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]", - "artist": { - "ArtistId": 139, - "albums": { - "212": { - "tracks": { - "2609": { - "Name": "War (The Process)" - }, - "2610": { - "Name": "The Saint" - }, - "2611": { - "Name": "Rise" - }, - "2612": { - "Name": "Take The Power" - }, - "2613": { - "Name": "Breathe" - }, - "2614": { - "Name": "Nico" - }, - "2615": { - "Name": "American Gothic" - }, - "2616": { - "Name": "Ashes And Ghosts" - }, - "2617": { - "Name": "Shape The Sky" - }, - "2618": { - "Name": "Speed Of Light" - }, - "2619": { - "Name": "True Believers" - }, - "2620": { - "Name": "My Bridges Burn" - } - }, - "Title": "Beyond Good And Evil" - }, - "213": { - "tracks": { - "2621": { - "Name": "She Sells Sanctuary" - }, - "2622": { - "Name": "Fire Woman" - }, - "2623": { - "Name": "Lil' Evil" - }, - "2624": { - "Name": "Spirit Walker" - }, - "2625": { - "Name": "The Witch" - }, - "2626": { - "Name": "Revolution" - }, - "2627": { - "Name": "Wild Hearted Son" - }, - "2628": { - "Name": "Love Removal Machine" - }, - "2629": { - "Name": "Rain" - }, - "2630": { - "Name": "Edie (Ciao Baby)" - }, - "2631": { - "Name": "Heart Of Soul" - }, - "2632": { - "Name": "Love" - }, - "2633": { - "Name": "Wild Flower" - }, - "2634": { - "Name": "Go West" - }, - "2635": { - "Name": "Resurrection Joe" - }, - "2636": { - "Name": "Sun King" - }, - "2637": { - "Name": "Sweet Soul Sister" - }, - "2638": { - "Name": "Earth Mofo" - } - }, - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - } - }, - "Name": "The Cult" - } - }, - "214": { - "tracks": { - "2639": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Break on Through" - }, - "2640": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Soul Kitchen" - }, - "2641": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "The Crystal Ship" - }, - "2642": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Twentienth Century Fox" - }, - "2643": { - "Composer": "Weill-Brecht", - "Name": "Alabama Song" - }, - "2644": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Light My Fire" - }, - "2645": { - "Composer": "Willie Dixon, C. Burnett", - "Name": "Back Door Man" - }, - "2646": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "I Looked At You" - }, - "2647": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "End Of The Night" - }, - "2648": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "Take It As It Comes" - }, - "2649": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "Name": "The End" - } - }, - "Title": "The Doors", - "artist": { - "ArtistId": 140, - "albums": { - "214": { - "tracks": { - "2639": { - "Name": "Break on Through" - }, - "2640": { - "Name": "Soul Kitchen" - }, - "2641": { - "Name": "The Crystal Ship" - }, - "2642": { - "Name": "Twentienth Century Fox" - }, - "2643": { - "Name": "Alabama Song" - }, - "2644": { - "Name": "Light My Fire" - }, - "2645": { - "Name": "Back Door Man" - }, - "2646": { - "Name": "I Looked At You" - }, - "2647": { - "Name": "End Of The Night" - }, - "2648": { - "Name": "Take It As It Comes" - }, - "2649": { - "Name": "The End" - } - }, - "Title": "The Doors" - } - }, - "Name": "The Doors" - } - }, - "215": { - "tracks": { - "2650": { - "Composer": "G M Sumner", - "Name": "Roxanne" - }, - "2651": { - "Composer": "G M Sumner", - "Name": "Can't Stand Losing You" - }, - "2652": { - "Composer": "G M Sumner", - "Name": "Message in a Bottle" - }, - "2653": { - "Composer": "G M Sumner", - "Name": "Walking on the Moon" - }, - "2654": { - "Composer": "G M Sumner", - "Name": "Don't Stand so Close to Me" - }, - "2655": { - "Composer": "G M Sumner", - "Name": "De Do Do Do, De Da Da Da" - }, - "2656": { - "Composer": "G M Sumner", - "Name": "Every Little Thing She Does is Magic" - }, - "2657": { - "Composer": "G M Sumner", - "Name": "Invisible Sun" - }, - "2658": { - "Composer": "G M Sumner", - "Name": "Spirit's in the Material World" - }, - "2659": { - "Composer": "G M Sumner", - "Name": "Every Breath You Take" - }, - "2660": { - "Composer": "G M Sumner", - "Name": "King Of Pain" - }, - "2661": { - "Composer": "G M Sumner", - "Name": "Wrapped Around Your Finger" - }, - "2662": { - "Composer": "G M Sumner", - "Name": "Don't Stand So Close to Me '86" - }, - "2663": { - "Composer": "G M Sumner", - "Name": "Message in a Bottle (new classic rock mix)" - } - }, - "Title": "The Police Greatest Hits", - "artist": { - "ArtistId": 141, - "albums": { - "215": { - "tracks": { - "2650": { - "Name": "Roxanne" - }, - "2651": { - "Name": "Can't Stand Losing You" - }, - "2652": { - "Name": "Message in a Bottle" - }, - "2653": { - "Name": "Walking on the Moon" - }, - "2654": { - "Name": "Don't Stand so Close to Me" - }, - "2655": { - "Name": "De Do Do Do, De Da Da Da" - }, - "2656": { - "Name": "Every Little Thing She Does is Magic" - }, - "2657": { - "Name": "Invisible Sun" - }, - "2658": { - "Name": "Spirit's in the Material World" - }, - "2659": { - "Name": "Every Breath You Take" - }, - "2660": { - "Name": "King Of Pain" - }, - "2661": { - "Name": "Wrapped Around Your Finger" - }, - "2662": { - "Name": "Don't Stand So Close to Me '86" - }, - "2663": { - "Name": "Message in a Bottle (new classic rock mix)" - } - }, - "Title": "The Police Greatest Hits" - } - }, - "Name": "The Police" - } - }, - "216": { - "tracks": { - "2664": { - "Composer": "Jerry Ragavoy", - "Name": "Time Is On My Side" - }, - "2665": { - "Composer": "Jagger/Richards", - "Name": "Heart Of Stone" - }, - "2666": { - "Composer": "Nanker Phelge", - "Name": "Play With Fire" - }, - "2667": { - "Composer": "Jagger/Richards", - "Name": "Satisfaction" - }, - "2668": { - "Composer": "Jagger/Richards/Oldham", - "Name": "As Tears Go By" - }, - "2669": { - "Composer": "Jagger/Richards", - "Name": "Get Off Of My Cloud" - }, - "2670": { - "Composer": "Jagger/Richards", - "Name": "Mother's Little Helper" - }, - "2671": { - "Composer": "Jagger/Richards", - "Name": "19th Nervous Breakdown" - }, - "2672": { - "Composer": "Jagger/Richards", - "Name": "Paint It Black" - }, - "2673": { - "Composer": "Jagger/Richards", - "Name": "Under My Thumb" - }, - "2674": { - "Composer": "Jagger/Richards", - "Name": "Ruby Tuesday" - }, - "2675": { - "Composer": "Jagger/Richards", - "Name": "Let's Spend The Night Together" - } - }, - "Title": "Hot Rocks, 1964-1971 (Disc 1)", - "artist": { - "ArtistId": 142, - "albums": { - "216": { - "tracks": { - "2664": { - "Name": "Time Is On My Side" - }, - "2665": { - "Name": "Heart Of Stone" - }, - "2666": { - "Name": "Play With Fire" - }, - "2667": { - "Name": "Satisfaction" - }, - "2668": { - "Name": "As Tears Go By" - }, - "2669": { - "Name": "Get Off Of My Cloud" - }, - "2670": { - "Name": "Mother's Little Helper" - }, - "2671": { - "Name": "19th Nervous Breakdown" - }, - "2672": { - "Name": "Paint It Black" - }, - "2673": { - "Name": "Under My Thumb" - }, - "2674": { - "Name": "Ruby Tuesday" - }, - "2675": { - "Name": "Let's Spend The Night Together" - } - }, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "217": { - "tracks": { - "2676": { - "Name": "Intro" - }, - "2677": { - "Name": "You Got Me Rocking" - }, - "2678": { - "Name": "Gimmie Shelters" - }, - "2679": { - "Name": "Flip The Switch" - }, - "2680": { - "Name": "Memory Motel" - }, - "2681": { - "Name": "Corinna" - }, - "2682": { - "Name": "Saint Of Me" - }, - "2683": { - "Name": "Wainting On A Friend" - }, - "2684": { - "Name": "Sister Morphine" - }, - "2685": { - "Name": "Live With Me" - }, - "2686": { - "Name": "Respectable" - }, - "2687": { - "Name": "Thief In The Night" - }, - "2688": { - "Name": "The Last Time" - }, - "2689": { - "Name": "Out Of Control" - } - }, - "Title": "No Security" - }, - "218": { - "tracks": { - "2690": { - "Name": "Love Is Strong" - }, - "2691": { - "Name": "You Got Me Rocking" - }, - "2692": { - "Name": "Sparks Will Fly" - }, - "2693": { - "Name": "The Worst" - }, - "2694": { - "Name": "New Faces" - }, - "2695": { - "Name": "Moon Is Up" - }, - "2696": { - "Name": "Out Of Tears" - }, - "2697": { - "Name": "I Go Wild" - }, - "2698": { - "Name": "Brand New Car" - }, - "2699": { - "Name": "Sweethearts Together" - }, - "2700": { - "Name": "Suck On The Jugular" - }, - "2701": { - "Name": "Blinded By Rainbows" - }, - "2702": { - "Name": "Baby Break It Down" - }, - "2703": { - "Name": "Thru And Thru" - }, - "2704": { - "Name": "Mean Disposition" - } - }, - "Title": "Voodoo Lounge" - } - }, - "Name": "The Rolling Stones" - } - }, - "217": { - "tracks": { - "2676": { - "Composer": "Jagger/Richards", - "Name": "Intro" - }, - "2677": { - "Composer": "Jagger/Richards", - "Name": "You Got Me Rocking" - }, - "2678": { - "Composer": "Jagger/Richards", - "Name": "Gimmie Shelters" - }, - "2679": { - "Composer": "Jagger/Richards", - "Name": "Flip The Switch" - }, - "2680": { - "Composer": "Jagger/Richards", - "Name": "Memory Motel" - }, - "2681": { - "Composer": "Jesse Ed Davis III/Taj Mahal", - "Name": "Corinna" - }, - "2682": { - "Composer": "Jagger/Richards", - "Name": "Saint Of Me" - }, - "2683": { - "Composer": "Jagger/Richards", - "Name": "Wainting On A Friend" - }, - "2684": { - "Composer": "Faithfull/Jagger/Richards", - "Name": "Sister Morphine" - }, - "2685": { - "Composer": "Jagger/Richards", - "Name": "Live With Me" - }, - "2686": { - "Composer": "Jagger/Richards", - "Name": "Respectable" - }, - "2687": { - "Composer": "De Beauport/Jagger/Richards", - "Name": "Thief In The Night" - }, - "2688": { - "Composer": "Jagger/Richards", - "Name": "The Last Time" - }, - "2689": { - "Composer": "Jagger/Richards", - "Name": "Out Of Control" - } - }, - "Title": "No Security", - "artist": { - "ArtistId": 142, - "albums": { - "216": { - "tracks": { - "2664": { - "Name": "Time Is On My Side" - }, - "2665": { - "Name": "Heart Of Stone" - }, - "2666": { - "Name": "Play With Fire" - }, - "2667": { - "Name": "Satisfaction" - }, - "2668": { - "Name": "As Tears Go By" - }, - "2669": { - "Name": "Get Off Of My Cloud" - }, - "2670": { - "Name": "Mother's Little Helper" - }, - "2671": { - "Name": "19th Nervous Breakdown" - }, - "2672": { - "Name": "Paint It Black" - }, - "2673": { - "Name": "Under My Thumb" - }, - "2674": { - "Name": "Ruby Tuesday" - }, - "2675": { - "Name": "Let's Spend The Night Together" - } - }, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "217": { - "tracks": { - "2676": { - "Name": "Intro" - }, - "2677": { - "Name": "You Got Me Rocking" - }, - "2678": { - "Name": "Gimmie Shelters" - }, - "2679": { - "Name": "Flip The Switch" - }, - "2680": { - "Name": "Memory Motel" - }, - "2681": { - "Name": "Corinna" - }, - "2682": { - "Name": "Saint Of Me" - }, - "2683": { - "Name": "Wainting On A Friend" - }, - "2684": { - "Name": "Sister Morphine" - }, - "2685": { - "Name": "Live With Me" - }, - "2686": { - "Name": "Respectable" - }, - "2687": { - "Name": "Thief In The Night" - }, - "2688": { - "Name": "The Last Time" - }, - "2689": { - "Name": "Out Of Control" - } - }, - "Title": "No Security" - }, - "218": { - "tracks": { - "2690": { - "Name": "Love Is Strong" - }, - "2691": { - "Name": "You Got Me Rocking" - }, - "2692": { - "Name": "Sparks Will Fly" - }, - "2693": { - "Name": "The Worst" - }, - "2694": { - "Name": "New Faces" - }, - "2695": { - "Name": "Moon Is Up" - }, - "2696": { - "Name": "Out Of Tears" - }, - "2697": { - "Name": "I Go Wild" - }, - "2698": { - "Name": "Brand New Car" - }, - "2699": { - "Name": "Sweethearts Together" - }, - "2700": { - "Name": "Suck On The Jugular" - }, - "2701": { - "Name": "Blinded By Rainbows" - }, - "2702": { - "Name": "Baby Break It Down" - }, - "2703": { - "Name": "Thru And Thru" - }, - "2704": { - "Name": "Mean Disposition" - } - }, - "Title": "Voodoo Lounge" - } - }, - "Name": "The Rolling Stones" - } - }, - "218": { - "tracks": { - "2690": { - "Composer": "Jagger/Richards", - "Name": "Love Is Strong" - }, - "2691": { - "Composer": "Jagger/Richards", - "Name": "You Got Me Rocking" - }, - "2692": { - "Composer": "Jagger/Richards", - "Name": "Sparks Will Fly" - }, - "2693": { - "Composer": "Jagger/Richards", - "Name": "The Worst" - }, - "2694": { - "Composer": "Jagger/Richards", - "Name": "New Faces" - }, - "2695": { - "Composer": "Jagger/Richards", - "Name": "Moon Is Up" - }, - "2696": { - "Composer": "Jagger/Richards", - "Name": "Out Of Tears" - }, - "2697": { - "Composer": "Jagger/Richards", - "Name": "I Go Wild" - }, - "2698": { - "Composer": "Jagger/Richards", - "Name": "Brand New Car" - }, - "2699": { - "Composer": "Jagger/Richards", - "Name": "Sweethearts Together" - }, - "2700": { - "Composer": "Jagger/Richards", - "Name": "Suck On The Jugular" - }, - "2701": { - "Composer": "Jagger/Richards", - "Name": "Blinded By Rainbows" - }, - "2702": { - "Composer": "Jagger/Richards", - "Name": "Baby Break It Down" - }, - "2703": { - "Composer": "Jagger/Richards", - "Name": "Thru And Thru" - }, - "2704": { - "Composer": "Jagger/Richards", - "Name": "Mean Disposition" - } - }, - "Title": "Voodoo Lounge", - "artist": { - "ArtistId": 142, - "albums": { - "216": { - "tracks": { - "2664": { - "Name": "Time Is On My Side" - }, - "2665": { - "Name": "Heart Of Stone" - }, - "2666": { - "Name": "Play With Fire" - }, - "2667": { - "Name": "Satisfaction" - }, - "2668": { - "Name": "As Tears Go By" - }, - "2669": { - "Name": "Get Off Of My Cloud" - }, - "2670": { - "Name": "Mother's Little Helper" - }, - "2671": { - "Name": "19th Nervous Breakdown" - }, - "2672": { - "Name": "Paint It Black" - }, - "2673": { - "Name": "Under My Thumb" - }, - "2674": { - "Name": "Ruby Tuesday" - }, - "2675": { - "Name": "Let's Spend The Night Together" - } - }, - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "217": { - "tracks": { - "2676": { - "Name": "Intro" - }, - "2677": { - "Name": "You Got Me Rocking" - }, - "2678": { - "Name": "Gimmie Shelters" - }, - "2679": { - "Name": "Flip The Switch" - }, - "2680": { - "Name": "Memory Motel" - }, - "2681": { - "Name": "Corinna" - }, - "2682": { - "Name": "Saint Of Me" - }, - "2683": { - "Name": "Wainting On A Friend" - }, - "2684": { - "Name": "Sister Morphine" - }, - "2685": { - "Name": "Live With Me" - }, - "2686": { - "Name": "Respectable" - }, - "2687": { - "Name": "Thief In The Night" - }, - "2688": { - "Name": "The Last Time" - }, - "2689": { - "Name": "Out Of Control" - } - }, - "Title": "No Security" - }, - "218": { - "tracks": { - "2690": { - "Name": "Love Is Strong" - }, - "2691": { - "Name": "You Got Me Rocking" - }, - "2692": { - "Name": "Sparks Will Fly" - }, - "2693": { - "Name": "The Worst" - }, - "2694": { - "Name": "New Faces" - }, - "2695": { - "Name": "Moon Is Up" - }, - "2696": { - "Name": "Out Of Tears" - }, - "2697": { - "Name": "I Go Wild" - }, - "2698": { - "Name": "Brand New Car" - }, - "2699": { - "Name": "Sweethearts Together" - }, - "2700": { - "Name": "Suck On The Jugular" - }, - "2701": { - "Name": "Blinded By Rainbows" - }, - "2702": { - "Name": "Baby Break It Down" - }, - "2703": { - "Name": "Thru And Thru" - }, - "2704": { - "Name": "Mean Disposition" - } - }, - "Title": "Voodoo Lounge" - } - }, - "Name": "The Rolling Stones" - } - }, - "219": { - "tracks": { - "2705": { - "Composer": "The Tea Party", - "Name": "Walking Wounded" - }, - "2706": { - "Composer": "The Tea Party", - "Name": "Temptation" - }, - "2707": { - "Composer": "Daniel Lanois", - "Name": "The Messenger" - }, - "2708": { - "Composer": "The Tea Party", - "Name": "Psychopomp" - }, - "2709": { - "Composer": "The Tea Party", - "Name": "Sister Awake" - }, - "2710": { - "Composer": "The Tea Party", - "Name": "The Bazaar" - }, - "2711": { - "Composer": "The Tea Party", - "Name": "Save Me (Remix)" - }, - "2712": { - "Composer": "The Tea Party", - "Name": "Fire In The Head" - }, - "2713": { - "Composer": "The Tea Party", - "Name": "Release" - }, - "2714": { - "Composer": "The Tea Party", - "Name": "Heaven Coming Down" - }, - "2715": { - "Composer": "The Tea Party", - "Name": "The River (Remix)" - }, - "2716": { - "Composer": "The Tea Party", - "Name": "Babylon" - }, - "2717": { - "Composer": "The Tea Party", - "Name": "Waiting On A Sign" - }, - "2718": { - "Composer": "The Tea Party", - "Name": "Life Line" - }, - "2719": { - "Composer": "Keith Richards/Mick Jagger", - "Name": "Paint It Black" - } - }, - "Title": "Tangents", - "artist": { - "ArtistId": 143, - "albums": { - "219": { - "tracks": { - "2705": { - "Name": "Walking Wounded" - }, - "2706": { - "Name": "Temptation" - }, - "2707": { - "Name": "The Messenger" - }, - "2708": { - "Name": "Psychopomp" - }, - "2709": { - "Name": "Sister Awake" - }, - "2710": { - "Name": "The Bazaar" - }, - "2711": { - "Name": "Save Me (Remix)" - }, - "2712": { - "Name": "Fire In The Head" - }, - "2713": { - "Name": "Release" - }, - "2714": { - "Name": "Heaven Coming Down" - }, - "2715": { - "Name": "The River (Remix)" - }, - "2716": { - "Name": "Babylon" - }, - "2717": { - "Name": "Waiting On A Sign" - }, - "2718": { - "Name": "Life Line" - }, - "2719": { - "Name": "Paint It Black" - } - }, - "Title": "Tangents" - }, - "220": { - "tracks": { - "2720": { - "Name": "Temptation" - }, - "2721": { - "Name": "Army Ants" - }, - "2722": { - "Name": "Psychopomp" - }, - "2723": { - "Name": "Gyroscope" - }, - "2724": { - "Name": "Alarum" - }, - "2725": { - "Name": "Release" - }, - "2726": { - "Name": "Transmission" - }, - "2727": { - "Name": "Babylon" - }, - "2728": { - "Name": "Pulse" - }, - "2729": { - "Name": "Emerald" - }, - "2730": { - "Name": "Aftermath" - } - }, - "Title": "Transmission" - } - }, - "Name": "The Tea Party" - } - }, - "220": { - "tracks": { - "2720": { - "Composer": "The Tea Party", - "Name": "Temptation" - }, - "2721": { - "Composer": "The Tea Party", - "Name": "Army Ants" - }, - "2722": { - "Composer": "The Tea Party", - "Name": "Psychopomp" - }, - "2723": { - "Composer": "The Tea Party", - "Name": "Gyroscope" - }, - "2724": { - "Composer": "The Tea Party", - "Name": "Alarum" - }, - "2725": { - "Composer": "The Tea Party", - "Name": "Release" - }, - "2726": { - "Composer": "The Tea Party", - "Name": "Transmission" - }, - "2727": { - "Composer": "The Tea Party", - "Name": "Babylon" - }, - "2728": { - "Composer": "The Tea Party", - "Name": "Pulse" - }, - "2729": { - "Composer": "The Tea Party", - "Name": "Emerald" - }, - "2730": { - "Composer": "The Tea Party", - "Name": "Aftermath" - } - }, - "Title": "Transmission", - "artist": { - "ArtistId": 143, - "albums": { - "219": { - "tracks": { - "2705": { - "Name": "Walking Wounded" - }, - "2706": { - "Name": "Temptation" - }, - "2707": { - "Name": "The Messenger" - }, - "2708": { - "Name": "Psychopomp" - }, - "2709": { - "Name": "Sister Awake" - }, - "2710": { - "Name": "The Bazaar" - }, - "2711": { - "Name": "Save Me (Remix)" - }, - "2712": { - "Name": "Fire In The Head" - }, - "2713": { - "Name": "Release" - }, - "2714": { - "Name": "Heaven Coming Down" - }, - "2715": { - "Name": "The River (Remix)" - }, - "2716": { - "Name": "Babylon" - }, - "2717": { - "Name": "Waiting On A Sign" - }, - "2718": { - "Name": "Life Line" - }, - "2719": { - "Name": "Paint It Black" - } - }, - "Title": "Tangents" - }, - "220": { - "tracks": { - "2720": { - "Name": "Temptation" - }, - "2721": { - "Name": "Army Ants" - }, - "2722": { - "Name": "Psychopomp" - }, - "2723": { - "Name": "Gyroscope" - }, - "2724": { - "Name": "Alarum" - }, - "2725": { - "Name": "Release" - }, - "2726": { - "Name": "Transmission" - }, - "2727": { - "Name": "Babylon" - }, - "2728": { - "Name": "Pulse" - }, - "2729": { - "Name": "Emerald" - }, - "2730": { - "Name": "Aftermath" - } - }, - "Title": "Transmission" - } - }, - "Name": "The Tea Party" - } - }, - "221": { - "tracks": { - "2731": { - "Composer": "Pete Townshend", - "Name": "I Can't Explain" - }, - "2732": { - "Composer": "Pete Townshend, Roger Daltrey", - "Name": "Anyway, Anyhow, Anywhere" - }, - "2733": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "My Generation" - }, - "2734": { - "Composer": "Pete Townshend", - "Name": "Substitute" - }, - "2735": { - "Composer": "Pete Townshend", - "Name": "I'm A Boy" - }, - "2736": { - "Composer": "John Entwistle", - "Name": "Boris The Spider" - }, - "2737": { - "Composer": "Pete Townshend", - "Name": "Happy Jack" - }, - "2738": { - "Composer": "Pete Townshend", - "Name": "Pictures Of Lily" - }, - "2739": { - "Composer": "Pete Townshend", - "Name": "I Can See For Miles" - }, - "2740": { - "Composer": "Pete Townshend", - "Name": "Magic Bus" - }, - "2741": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Pinball Wizard" - }, - "2742": { - "Composer": "Pete Townshend", - "Name": "The Seeker" - }, - "2743": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Baba O'Riley" - }, - "2744": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Won't Get Fooled Again (Full Length Version)" - }, - "2745": { - "Composer": "Pete Townshend", - "Name": "Let's See Action" - }, - "2746": { - "Composer": "Pete Townshend", - "Name": "5.15" - }, - "2747": { - "Composer": "Pete Townshend", - "Name": "Join Together" - }, - "2748": { - "Composer": "Pete Townshend", - "Name": "Squeeze Box" - }, - "2749": { - "Composer": "John Entwistle/Pete Townshend", - "Name": "Who Are You (Single Edit Version)" - }, - "2750": { - "Composer": "Pete Townshend", - "Name": "You Better You Bet" - } - }, - "Title": "My Generation - The Very Best Of The Who", - "artist": { - "ArtistId": 144, - "albums": { - "221": { - "tracks": { - "2731": { - "Name": "I Can't Explain" - }, - "2732": { - "Name": "Anyway, Anyhow, Anywhere" - }, - "2733": { - "Name": "My Generation" - }, - "2734": { - "Name": "Substitute" - }, - "2735": { - "Name": "I'm A Boy" - }, - "2736": { - "Name": "Boris The Spider" - }, - "2737": { - "Name": "Happy Jack" - }, - "2738": { - "Name": "Pictures Of Lily" - }, - "2739": { - "Name": "I Can See For Miles" - }, - "2740": { - "Name": "Magic Bus" - }, - "2741": { - "Name": "Pinball Wizard" - }, - "2742": { - "Name": "The Seeker" - }, - "2743": { - "Name": "Baba O'Riley" - }, - "2744": { - "Name": "Won't Get Fooled Again (Full Length Version)" - }, - "2745": { - "Name": "Let's See Action" - }, - "2746": { - "Name": "5.15" - }, - "2747": { - "Name": "Join Together" - }, - "2748": { - "Name": "Squeeze Box" - }, - "2749": { - "Name": "Who Are You (Single Edit Version)" - }, - "2750": { - "Name": "You Better You Bet" - } - }, - "Title": "My Generation - The Very Best Of The Who" - } - }, - "Name": "The Who" - } - }, - "222": { - "tracks": { - "2751": { - "Composer": "Genival Cassiano/Silvio Rochael", - "Name": "Primavera" - }, - "2752": { - "Composer": "Tim Maia", - "Name": "Chocolate" - }, - "2753": { - "Composer": "Tim Maia", - "Name": "Azul Da Cor Do Mar" - }, - "2757": { - "Composer": "Tim Maia", - "Name": "New Love" - }, - "2763": { - "Composer": "Tim Maia", - "Name": "Compadre" - }, - "2764": { - "Composer": "Tim Maia", - "Name": "Over Again" - } - }, - "Title": "Serie Sem Limite (Disc 1)", - "artist": { - "ArtistId": 145, - "albums": { - "222": { - "tracks": { - "2751": { - "Name": "Primavera" - }, - "2752": { - "Name": "Chocolate" - }, - "2753": { - "Name": "Azul Da Cor Do Mar" - }, - "2757": { - "Name": "New Love" - }, - "2763": { - "Name": "Compadre" - }, - "2764": { - "Name": "Over Again" - } - }, - "Title": "Serie Sem Limite (Disc 1)" - }, - "223": { - "tracks": { - "2766": { - "Name": "O Que Me Importa" - }, - "2771": { - "Name": "A Festa Do Santo Reis" - }, - "2772": { - "Name": "I Don't Know What To Do With Myself" - }, - "2774": { - "Name": "Nosso Adeus" - }, - "2776": { - "Name": "Preciso Ser Amado" - }, - "2780": { - "Name": "Formigueiro" - } - }, - "Title": "Serie Sem Limite (Disc 2)" - } - }, - "Name": "Tim Maia" - } - }, - "223": { - "tracks": { - "2766": { - "Composer": null, - "Name": "O Que Me Importa" - }, - "2771": { - "Composer": null, - "Name": "A Festa Do Santo Reis" - }, - "2772": { - "Composer": null, - "Name": "I Don't Know What To Do With Myself" - }, - "2774": { - "Composer": null, - "Name": "Nosso Adeus" - }, - "2776": { - "Composer": null, - "Name": "Preciso Ser Amado" - }, - "2780": { - "Composer": null, - "Name": "Formigueiro" - } - }, - "Title": "Serie Sem Limite (Disc 2)", - "artist": { - "ArtistId": 145, - "albums": { - "222": { - "tracks": { - "2751": { - "Name": "Primavera" - }, - "2752": { - "Name": "Chocolate" - }, - "2753": { - "Name": "Azul Da Cor Do Mar" - }, - "2757": { - "Name": "New Love" - }, - "2763": { - "Name": "Compadre" - }, - "2764": { - "Name": "Over Again" - } - }, - "Title": "Serie Sem Limite (Disc 1)" - }, - "223": { - "tracks": { - "2766": { - "Name": "O Que Me Importa" - }, - "2771": { - "Name": "A Festa Do Santo Reis" - }, - "2772": { - "Name": "I Don't Know What To Do With Myself" - }, - "2774": { - "Name": "Nosso Adeus" - }, - "2776": { - "Name": "Preciso Ser Amado" - }, - "2780": { - "Name": "Formigueiro" - } - }, - "Title": "Serie Sem Limite (Disc 2)" - } - }, - "Name": "Tim Maia" - } - }, - "226": { - "tracks": { - "2819": { - "Composer": null, - "Name": "Battlestar Galactica: The Story So Far" - } - }, - "Title": "Battlestar Galactica: The Story So Far", - "artist": { - "ArtistId": 147, - "albums": { - "226": { - "tracks": { - "2819": { - "Name": "Battlestar Galactica: The Story So Far" - } - }, - "Title": "Battlestar Galactica: The Story So Far" - }, - "227": { - "tracks": { - "2820": { - "Name": "Occupation / Precipice" - }, - "2821": { - "Name": "Exodus, Pt. 1" - }, - "2822": { - "Name": "Exodus, Pt. 2" - }, - "2823": { - "Name": "Collaborators" - }, - "2824": { - "Name": "Torn" - }, - "2825": { - "Name": "A Measure of Salvation" - }, - "2826": { - "Name": "Hero" - }, - "2827": { - "Name": "Unfinished Business" - }, - "2828": { - "Name": "The Passage" - }, - "2829": { - "Name": "The Eye of Jupiter" - }, - "2830": { - "Name": "Rapture" - }, - "2831": { - "Name": "Taking a Break from All Your Worries" - }, - "2832": { - "Name": "The Woman King" - }, - "2833": { - "Name": "A Day In the Life" - }, - "2834": { - "Name": "Dirty Hands" - }, - "2835": { - "Name": "Maelstrom" - }, - "2836": { - "Name": "The Son Also Rises" - }, - "2837": { - "Name": "Crossroads, Pt. 1" - }, - "2838": { - "Name": "Crossroads, Pt. 2" - } - }, - "Title": "Battlestar Galactica, Season 3" - } - }, - "Name": "Battlestar Galactica" - } - }, - "227": { - "tracks": { - "2820": { - "Composer": null, - "Name": "Occupation / Precipice" - }, - "2821": { - "Composer": null, - "Name": "Exodus, Pt. 1" - }, - "2822": { - "Composer": null, - "Name": "Exodus, Pt. 2" - }, - "2823": { - "Composer": null, - "Name": "Collaborators" - }, - "2824": { - "Composer": null, - "Name": "Torn" - }, - "2825": { - "Composer": null, - "Name": "A Measure of Salvation" - }, - "2826": { - "Composer": null, - "Name": "Hero" - }, - "2827": { - "Composer": null, - "Name": "Unfinished Business" - }, - "2828": { - "Composer": null, - "Name": "The Passage" - }, - "2829": { - "Composer": null, - "Name": "The Eye of Jupiter" - }, - "2830": { - "Composer": null, - "Name": "Rapture" - }, - "2831": { - "Composer": null, - "Name": "Taking a Break from All Your Worries" - }, - "2832": { - "Composer": null, - "Name": "The Woman King" - }, - "2833": { - "Composer": null, - "Name": "A Day In the Life" - }, - "2834": { - "Composer": null, - "Name": "Dirty Hands" - }, - "2835": { - "Composer": null, - "Name": "Maelstrom" - }, - "2836": { - "Composer": null, - "Name": "The Son Also Rises" - }, - "2837": { - "Composer": null, - "Name": "Crossroads, Pt. 1" - }, - "2838": { - "Composer": null, - "Name": "Crossroads, Pt. 2" - } - }, - "Title": "Battlestar Galactica, Season 3", - "artist": { - "ArtistId": 147, - "albums": { - "226": { - "tracks": { - "2819": { - "Name": "Battlestar Galactica: The Story So Far" - } - }, - "Title": "Battlestar Galactica: The Story So Far" - }, - "227": { - "tracks": { - "2820": { - "Name": "Occupation / Precipice" - }, - "2821": { - "Name": "Exodus, Pt. 1" - }, - "2822": { - "Name": "Exodus, Pt. 2" - }, - "2823": { - "Name": "Collaborators" - }, - "2824": { - "Name": "Torn" - }, - "2825": { - "Name": "A Measure of Salvation" - }, - "2826": { - "Name": "Hero" - }, - "2827": { - "Name": "Unfinished Business" - }, - "2828": { - "Name": "The Passage" - }, - "2829": { - "Name": "The Eye of Jupiter" - }, - "2830": { - "Name": "Rapture" - }, - "2831": { - "Name": "Taking a Break from All Your Worries" - }, - "2832": { - "Name": "The Woman King" - }, - "2833": { - "Name": "A Day In the Life" - }, - "2834": { - "Name": "Dirty Hands" - }, - "2835": { - "Name": "Maelstrom" - }, - "2836": { - "Name": "The Son Also Rises" - }, - "2837": { - "Name": "Crossroads, Pt. 1" - }, - "2838": { - "Name": "Crossroads, Pt. 2" - } - }, - "Title": "Battlestar Galactica, Season 3" - } - }, - "Name": "Battlestar Galactica" - } - }, - "228": { - "tracks": { - "2839": { - "Composer": null, - "Name": "Genesis" - }, - "2840": { - "Composer": null, - "Name": "Don't Look Back" - }, - "2841": { - "Composer": null, - "Name": "One Giant Leap" - }, - "2842": { - "Composer": null, - "Name": "Collision" - }, - "2843": { - "Composer": null, - "Name": "Hiros" - }, - "2844": { - "Composer": null, - "Name": "Better Halves" - }, - "2845": { - "Composer": null, - "Name": "Nothing to Hide" - }, - "2846": { - "Composer": null, - "Name": "Seven Minutes to Midnight" - }, - "2847": { - "Composer": null, - "Name": "Homecoming" - }, - "2848": { - "Composer": null, - "Name": "Six Months Ago" - }, - "2849": { - "Composer": null, - "Name": "Fallout" - }, - "2850": { - "Composer": null, - "Name": "The Fix" - }, - "2851": { - "Composer": null, - "Name": "Distractions" - }, - "2852": { - "Composer": null, - "Name": "Run!" - }, - "2853": { - "Composer": null, - "Name": "Unexpected" - }, - "2854": { - "Composer": null, - "Name": "Company Man" - }, - "2855": { - "Composer": null, - "Name": "Company Man" - }, - "2856": { - "Composer": null, - "Name": "Parasite" - }, - "3166": { - "Composer": null, - "Name": ".07%" - }, - "3167": { - "Composer": null, - "Name": "Five Years Gone" - }, - "3168": { - "Composer": null, - "Name": "The Hard Part" - }, - "3171": { - "Composer": null, - "Name": "Landslide" - }, - "3223": { - "Composer": null, - "Name": "How to Stop an Exploding Man" - } - }, - "Title": "Heroes, Season 1", - "artist": { - "ArtistId": 148, - "albums": { - "228": { - "tracks": { - "2839": { - "Name": "Genesis" - }, - "2840": { - "Name": "Don't Look Back" - }, - "2841": { - "Name": "One Giant Leap" - }, - "2842": { - "Name": "Collision" - }, - "2843": { - "Name": "Hiros" - }, - "2844": { - "Name": "Better Halves" - }, - "2845": { - "Name": "Nothing to Hide" - }, - "2846": { - "Name": "Seven Minutes to Midnight" - }, - "2847": { - "Name": "Homecoming" - }, - "2848": { - "Name": "Six Months Ago" - }, - "2849": { - "Name": "Fallout" - }, - "2850": { - "Name": "The Fix" - }, - "2851": { - "Name": "Distractions" - }, - "2852": { - "Name": "Run!" - }, - "2853": { - "Name": "Unexpected" - }, - "2854": { - "Name": "Company Man" - }, - "2855": { - "Name": "Company Man" - }, - "2856": { - "Name": "Parasite" - }, - "3166": { - "Name": ".07%" - }, - "3167": { - "Name": "Five Years Gone" - }, - "3168": { - "Name": "The Hard Part" - }, - "3171": { - "Name": "Landslide" - }, - "3223": { - "Name": "How to Stop an Exploding Man" - } - }, - "Title": "Heroes, Season 1" - } - }, - "Name": "Heroes" - } - }, - "229": { - "tracks": { - "2857": { - "Composer": null, - "Name": "A Tale of Two Cities" - }, - "2862": { - "Composer": null, - "Name": "The Glass Ballerina" - }, - "2863": { - "Composer": null, - "Name": "Further Instructions" - }, - "2866": { - "Composer": null, - "Name": "Every Man for Himself" - }, - "2870": { - "Composer": null, - "Name": "The Cost of Living" - }, - "2874": { - "Composer": null, - "Name": "I Do" - }, - "2875": { - "Composer": null, - "Name": "Not In Portland" - }, - "2876": { - "Composer": null, - "Name": "Not In Portland" - }, - "2881": { - "Composer": null, - "Name": "Flashes Before Your Eyes" - }, - "2882": { - "Composer": null, - "Name": "Lost Survival Guide" - }, - "2886": { - "Composer": null, - "Name": "Stranger In a Strange Land" - }, - "2890": { - "Composer": null, - "Name": "Tricia Tanaka Is Dead" - }, - "2891": { - "Composer": null, - "Name": "Enter 77" - }, - "2895": { - "Composer": null, - "Name": "Par Avion" - }, - "2899": { - "Composer": null, - "Name": "The Man from Tallahassee" - }, - "2903": { - "Composer": null, - "Name": "Left Behind" - }, - "2908": { - "Composer": null, - "Name": "One of Us" - }, - "2909": { - "Composer": null, - "Name": "Catch-22" - }, - "2912": { - "Composer": null, - "Name": "D.O.C." - }, - "3165": { - "Composer": null, - "Name": "The Brig" - }, - "3169": { - "Composer": null, - "Name": "The Man Behind the Curtain" - }, - "3170": { - "Composer": null, - "Name": "Greatest Hits" - }, - "3224": { - "Composer": null, - "Name": "Through a Looking Glass" - }, - "3251": { - "Composer": null, - "Name": "Through the Looking Glass, Pt. 2" - }, - "3252": { - "Composer": null, - "Name": "Through the Looking Glass, Pt. 1" - } - }, - "Title": "Lost, Season 3", - "artist": { - "ArtistId": 149, - "albums": { - "229": { - "tracks": { - "2857": { - "Name": "A Tale of Two Cities" - }, - "2862": { - "Name": "The Glass Ballerina" - }, - "2863": { - "Name": "Further Instructions" - }, - "2866": { - "Name": "Every Man for Himself" - }, - "2870": { - "Name": "The Cost of Living" - }, - "2874": { - "Name": "I Do" - }, - "2875": { - "Name": "Not In Portland" - }, - "2876": { - "Name": "Not In Portland" - }, - "2881": { - "Name": "Flashes Before Your Eyes" - }, - "2882": { - "Name": "Lost Survival Guide" - }, - "2886": { - "Name": "Stranger In a Strange Land" - }, - "2890": { - "Name": "Tricia Tanaka Is Dead" - }, - "2891": { - "Name": "Enter 77" - }, - "2895": { - "Name": "Par Avion" - }, - "2899": { - "Name": "The Man from Tallahassee" - }, - "2903": { - "Name": "Left Behind" - }, - "2908": { - "Name": "One of Us" - }, - "2909": { - "Name": "Catch-22" - }, - "2912": { - "Name": "D.O.C." - }, - "3165": { - "Name": "The Brig" - }, - "3169": { - "Name": "The Man Behind the Curtain" - }, - "3170": { - "Name": "Greatest Hits" - }, - "3224": { - "Name": "Through a Looking Glass" - }, - "3251": { - "Name": "Through the Looking Glass, Pt. 2" - }, - "3252": { - "Name": "Through the Looking Glass, Pt. 1" - } - }, - "Title": "Lost, Season 3" - }, - "230": { - "tracks": { - "2858": { - "Name": "Lost (Pilot, Part 1) [Premiere]" - }, - "2861": { - "Name": "Lost (Pilot, Part 2)" - }, - "2865": { - "Name": "Tabula Rasa" - }, - "2868": { - "Name": "Walkabout" - }, - "2871": { - "Name": "White Rabbit" - }, - "2873": { - "Name": "House of the Rising Sun" - }, - "2877": { - "Name": "The Moth" - }, - "2880": { - "Name": "Confidence Man" - }, - "2883": { - "Name": "Solitary" - }, - "2885": { - "Name": "Raised By Another" - }, - "2888": { - "Name": "All the Best Cowboys Have Daddy Issues" - }, - "2893": { - "Name": "Whatever the Case May Be" - }, - "2894": { - "Name": "Hearts and Minds" - }, - "2898": { - "Name": "Special" - }, - "2901": { - "Name": "Homecoming" - }, - "2904": { - "Name": "Outlaws" - }, - "2906": { - "Name": "...In Translation" - }, - "2911": { - "Name": "Numbers" - }, - "2913": { - "Name": "Deus Ex Machina" - }, - "2915": { - "Name": "Do No Harm" - }, - "2917": { - "Name": "The Greater Good" - }, - "2919": { - "Name": "Born to Run" - }, - "2921": { - "Name": "Exodus (Part 1)" - }, - "2923": { - "Name": "Exodus (Part 2) [Season Finale]" - }, - "2925": { - "Name": "Exodus (Part 3) [Season Finale]" - } - }, - "Title": "Lost, Season 1" - }, - "231": { - "tracks": { - "2859": { - "Name": "Man of Science, Man of Faith (Premiere)" - }, - "2860": { - "Name": "Adrift" - }, - "2864": { - "Name": "Orientation" - }, - "2867": { - "Name": "Everybody Hates Hugo" - }, - "2869": { - "Name": "...And Found" - }, - "2872": { - "Name": "Abandoned" - }, - "2878": { - "Name": "The Other 48 Days" - }, - "2879": { - "Name": "Collision" - }, - "2884": { - "Name": "What Kate Did" - }, - "2887": { - "Name": "The 23rd Psalm" - }, - "2889": { - "Name": "The Hunting Party" - }, - "2892": { - "Name": "Fire + Water" - }, - "2896": { - "Name": "The Long Con" - }, - "2897": { - "Name": "One of Them" - }, - "2902": { - "Name": "Maternity Leave" - }, - "2905": { - "Name": "The Whole Truth" - }, - "2907": { - "Name": "Lockdown" - }, - "2910": { - "Name": "Dave" - }, - "2914": { - "Name": "S.O.S." - }, - "2916": { - "Name": "Two for the Road" - }, - "2918": { - "Name": "\"?\"" - }, - "2920": { - "Name": "Three Minutes" - }, - "2922": { - "Name": "Live Together, Die Alone, Pt. 1" - }, - "2924": { - "Name": "Live Together, Die Alone, Pt. 2" - } - }, - "Title": "Lost, Season 2" - }, - "261": { - "tracks": { - "3337": { - "Name": "Past, Present, and Future" - }, - "3338": { - "Name": "The Beginning of the End" - }, - "3339": { - "Name": "LOST Season 4 Trailer" - }, - "3340": { - "Name": "LOST In 8:15" - }, - "3341": { - "Name": "Confirmed Dead" - }, - "3342": { - "Name": "The Economist" - }, - "3343": { - "Name": "Eggtown" - }, - "3344": { - "Name": "The Constant" - }, - "3345": { - "Name": "The Other Woman" - }, - "3346": { - "Name": "Ji Yeon" - }, - "3347": { - "Name": "Meet Kevin Johnson" - }, - "3348": { - "Name": "The Shape of Things to Come" - }, - "3360": { - "Name": "Something Nice Back Home" - }, - "3361": { - "Name": "Cabin Fever" - }, - "3362": { - "Name": "There's No Place Like Home, Pt. 1" - }, - "3363": { - "Name": "There's No Place Like Home, Pt. 2" - }, - "3364": { - "Name": "There's No Place Like Home, Pt. 3" - } - }, - "Title": "LOST, Season 4" - } - }, - "Name": "Lost" - } - }, - "230": { - "tracks": { - "2858": { - "Composer": null, - "Name": "Lost (Pilot, Part 1) [Premiere]" - }, - "2861": { - "Composer": null, - "Name": "Lost (Pilot, Part 2)" - }, - "2865": { - "Composer": null, - "Name": "Tabula Rasa" - }, - "2868": { - "Composer": null, - "Name": "Walkabout" - }, - "2871": { - "Composer": null, - "Name": "White Rabbit" - }, - "2873": { - "Composer": null, - "Name": "House of the Rising Sun" - }, - "2877": { - "Composer": null, - "Name": "The Moth" - }, - "2880": { - "Composer": null, - "Name": "Confidence Man" - }, - "2883": { - "Composer": null, - "Name": "Solitary" - }, - "2885": { - "Composer": null, - "Name": "Raised By Another" - }, - "2888": { - "Composer": null, - "Name": "All the Best Cowboys Have Daddy Issues" - }, - "2893": { - "Composer": null, - "Name": "Whatever the Case May Be" - }, - "2894": { - "Composer": null, - "Name": "Hearts and Minds" - }, - "2898": { - "Composer": null, - "Name": "Special" - }, - "2901": { - "Composer": null, - "Name": "Homecoming" - }, - "2904": { - "Composer": null, - "Name": "Outlaws" - }, - "2906": { - "Composer": null, - "Name": "...In Translation" - }, - "2911": { - "Composer": null, - "Name": "Numbers" - }, - "2913": { - "Composer": null, - "Name": "Deus Ex Machina" - }, - "2915": { - "Composer": null, - "Name": "Do No Harm" - }, - "2917": { - "Composer": null, - "Name": "The Greater Good" - }, - "2919": { - "Composer": null, - "Name": "Born to Run" - }, - "2921": { - "Composer": null, - "Name": "Exodus (Part 1)" - }, - "2923": { - "Composer": null, - "Name": "Exodus (Part 2) [Season Finale]" - }, - "2925": { - "Composer": null, - "Name": "Exodus (Part 3) [Season Finale]" - } - }, - "Title": "Lost, Season 1", - "artist": { - "ArtistId": 149, - "albums": { - "229": { - "tracks": { - "2857": { - "Name": "A Tale of Two Cities" - }, - "2862": { - "Name": "The Glass Ballerina" - }, - "2863": { - "Name": "Further Instructions" - }, - "2866": { - "Name": "Every Man for Himself" - }, - "2870": { - "Name": "The Cost of Living" - }, - "2874": { - "Name": "I Do" - }, - "2875": { - "Name": "Not In Portland" - }, - "2876": { - "Name": "Not In Portland" - }, - "2881": { - "Name": "Flashes Before Your Eyes" - }, - "2882": { - "Name": "Lost Survival Guide" - }, - "2886": { - "Name": "Stranger In a Strange Land" - }, - "2890": { - "Name": "Tricia Tanaka Is Dead" - }, - "2891": { - "Name": "Enter 77" - }, - "2895": { - "Name": "Par Avion" - }, - "2899": { - "Name": "The Man from Tallahassee" - }, - "2903": { - "Name": "Left Behind" - }, - "2908": { - "Name": "One of Us" - }, - "2909": { - "Name": "Catch-22" - }, - "2912": { - "Name": "D.O.C." - }, - "3165": { - "Name": "The Brig" - }, - "3169": { - "Name": "The Man Behind the Curtain" - }, - "3170": { - "Name": "Greatest Hits" - }, - "3224": { - "Name": "Through a Looking Glass" - }, - "3251": { - "Name": "Through the Looking Glass, Pt. 2" - }, - "3252": { - "Name": "Through the Looking Glass, Pt. 1" - } - }, - "Title": "Lost, Season 3" - }, - "230": { - "tracks": { - "2858": { - "Name": "Lost (Pilot, Part 1) [Premiere]" - }, - "2861": { - "Name": "Lost (Pilot, Part 2)" - }, - "2865": { - "Name": "Tabula Rasa" - }, - "2868": { - "Name": "Walkabout" - }, - "2871": { - "Name": "White Rabbit" - }, - "2873": { - "Name": "House of the Rising Sun" - }, - "2877": { - "Name": "The Moth" - }, - "2880": { - "Name": "Confidence Man" - }, - "2883": { - "Name": "Solitary" - }, - "2885": { - "Name": "Raised By Another" - }, - "2888": { - "Name": "All the Best Cowboys Have Daddy Issues" - }, - "2893": { - "Name": "Whatever the Case May Be" - }, - "2894": { - "Name": "Hearts and Minds" - }, - "2898": { - "Name": "Special" - }, - "2901": { - "Name": "Homecoming" - }, - "2904": { - "Name": "Outlaws" - }, - "2906": { - "Name": "...In Translation" - }, - "2911": { - "Name": "Numbers" - }, - "2913": { - "Name": "Deus Ex Machina" - }, - "2915": { - "Name": "Do No Harm" - }, - "2917": { - "Name": "The Greater Good" - }, - "2919": { - "Name": "Born to Run" - }, - "2921": { - "Name": "Exodus (Part 1)" - }, - "2923": { - "Name": "Exodus (Part 2) [Season Finale]" - }, - "2925": { - "Name": "Exodus (Part 3) [Season Finale]" - } - }, - "Title": "Lost, Season 1" - }, - "231": { - "tracks": { - "2859": { - "Name": "Man of Science, Man of Faith (Premiere)" - }, - "2860": { - "Name": "Adrift" - }, - "2864": { - "Name": "Orientation" - }, - "2867": { - "Name": "Everybody Hates Hugo" - }, - "2869": { - "Name": "...And Found" - }, - "2872": { - "Name": "Abandoned" - }, - "2878": { - "Name": "The Other 48 Days" - }, - "2879": { - "Name": "Collision" - }, - "2884": { - "Name": "What Kate Did" - }, - "2887": { - "Name": "The 23rd Psalm" - }, - "2889": { - "Name": "The Hunting Party" - }, - "2892": { - "Name": "Fire + Water" - }, - "2896": { - "Name": "The Long Con" - }, - "2897": { - "Name": "One of Them" - }, - "2902": { - "Name": "Maternity Leave" - }, - "2905": { - "Name": "The Whole Truth" - }, - "2907": { - "Name": "Lockdown" - }, - "2910": { - "Name": "Dave" - }, - "2914": { - "Name": "S.O.S." - }, - "2916": { - "Name": "Two for the Road" - }, - "2918": { - "Name": "\"?\"" - }, - "2920": { - "Name": "Three Minutes" - }, - "2922": { - "Name": "Live Together, Die Alone, Pt. 1" - }, - "2924": { - "Name": "Live Together, Die Alone, Pt. 2" - } - }, - "Title": "Lost, Season 2" - }, - "261": { - "tracks": { - "3337": { - "Name": "Past, Present, and Future" - }, - "3338": { - "Name": "The Beginning of the End" - }, - "3339": { - "Name": "LOST Season 4 Trailer" - }, - "3340": { - "Name": "LOST In 8:15" - }, - "3341": { - "Name": "Confirmed Dead" - }, - "3342": { - "Name": "The Economist" - }, - "3343": { - "Name": "Eggtown" - }, - "3344": { - "Name": "The Constant" - }, - "3345": { - "Name": "The Other Woman" - }, - "3346": { - "Name": "Ji Yeon" - }, - "3347": { - "Name": "Meet Kevin Johnson" - }, - "3348": { - "Name": "The Shape of Things to Come" - }, - "3360": { - "Name": "Something Nice Back Home" - }, - "3361": { - "Name": "Cabin Fever" - }, - "3362": { - "Name": "There's No Place Like Home, Pt. 1" - }, - "3363": { - "Name": "There's No Place Like Home, Pt. 2" - }, - "3364": { - "Name": "There's No Place Like Home, Pt. 3" - } - }, - "Title": "LOST, Season 4" - } - }, - "Name": "Lost" - } - }, - "231": { - "tracks": { - "2859": { - "Composer": null, - "Name": "Man of Science, Man of Faith (Premiere)" - }, - "2860": { - "Composer": null, - "Name": "Adrift" - }, - "2864": { - "Composer": null, - "Name": "Orientation" - }, - "2867": { - "Composer": null, - "Name": "Everybody Hates Hugo" - }, - "2869": { - "Composer": null, - "Name": "...And Found" - }, - "2872": { - "Composer": null, - "Name": "Abandoned" - }, - "2878": { - "Composer": null, - "Name": "The Other 48 Days" - }, - "2879": { - "Composer": null, - "Name": "Collision" - }, - "2884": { - "Composer": null, - "Name": "What Kate Did" - }, - "2887": { - "Composer": null, - "Name": "The 23rd Psalm" - }, - "2889": { - "Composer": null, - "Name": "The Hunting Party" - }, - "2892": { - "Composer": null, - "Name": "Fire + Water" - }, - "2896": { - "Composer": null, - "Name": "The Long Con" - }, - "2897": { - "Composer": null, - "Name": "One of Them" - }, - "2902": { - "Composer": null, - "Name": "Maternity Leave" - }, - "2905": { - "Composer": null, - "Name": "The Whole Truth" - }, - "2907": { - "Composer": null, - "Name": "Lockdown" - }, - "2910": { - "Composer": null, - "Name": "Dave" - }, - "2914": { - "Composer": null, - "Name": "S.O.S." - }, - "2916": { - "Composer": null, - "Name": "Two for the Road" - }, - "2918": { - "Composer": null, - "Name": "\"?\"" - }, - "2920": { - "Composer": null, - "Name": "Three Minutes" - }, - "2922": { - "Composer": null, - "Name": "Live Together, Die Alone, Pt. 1" - }, - "2924": { - "Composer": null, - "Name": "Live Together, Die Alone, Pt. 2" - } - }, - "Title": "Lost, Season 2", - "artist": { - "ArtistId": 149, - "albums": { - "229": { - "tracks": { - "2857": { - "Name": "A Tale of Two Cities" - }, - "2862": { - "Name": "The Glass Ballerina" - }, - "2863": { - "Name": "Further Instructions" - }, - "2866": { - "Name": "Every Man for Himself" - }, - "2870": { - "Name": "The Cost of Living" - }, - "2874": { - "Name": "I Do" - }, - "2875": { - "Name": "Not In Portland" - }, - "2876": { - "Name": "Not In Portland" - }, - "2881": { - "Name": "Flashes Before Your Eyes" - }, - "2882": { - "Name": "Lost Survival Guide" - }, - "2886": { - "Name": "Stranger In a Strange Land" - }, - "2890": { - "Name": "Tricia Tanaka Is Dead" - }, - "2891": { - "Name": "Enter 77" - }, - "2895": { - "Name": "Par Avion" - }, - "2899": { - "Name": "The Man from Tallahassee" - }, - "2903": { - "Name": "Left Behind" - }, - "2908": { - "Name": "One of Us" - }, - "2909": { - "Name": "Catch-22" - }, - "2912": { - "Name": "D.O.C." - }, - "3165": { - "Name": "The Brig" - }, - "3169": { - "Name": "The Man Behind the Curtain" - }, - "3170": { - "Name": "Greatest Hits" - }, - "3224": { - "Name": "Through a Looking Glass" - }, - "3251": { - "Name": "Through the Looking Glass, Pt. 2" - }, - "3252": { - "Name": "Through the Looking Glass, Pt. 1" - } - }, - "Title": "Lost, Season 3" - }, - "230": { - "tracks": { - "2858": { - "Name": "Lost (Pilot, Part 1) [Premiere]" - }, - "2861": { - "Name": "Lost (Pilot, Part 2)" - }, - "2865": { - "Name": "Tabula Rasa" - }, - "2868": { - "Name": "Walkabout" - }, - "2871": { - "Name": "White Rabbit" - }, - "2873": { - "Name": "House of the Rising Sun" - }, - "2877": { - "Name": "The Moth" - }, - "2880": { - "Name": "Confidence Man" - }, - "2883": { - "Name": "Solitary" - }, - "2885": { - "Name": "Raised By Another" - }, - "2888": { - "Name": "All the Best Cowboys Have Daddy Issues" - }, - "2893": { - "Name": "Whatever the Case May Be" - }, - "2894": { - "Name": "Hearts and Minds" - }, - "2898": { - "Name": "Special" - }, - "2901": { - "Name": "Homecoming" - }, - "2904": { - "Name": "Outlaws" - }, - "2906": { - "Name": "...In Translation" - }, - "2911": { - "Name": "Numbers" - }, - "2913": { - "Name": "Deus Ex Machina" - }, - "2915": { - "Name": "Do No Harm" - }, - "2917": { - "Name": "The Greater Good" - }, - "2919": { - "Name": "Born to Run" - }, - "2921": { - "Name": "Exodus (Part 1)" - }, - "2923": { - "Name": "Exodus (Part 2) [Season Finale]" - }, - "2925": { - "Name": "Exodus (Part 3) [Season Finale]" - } - }, - "Title": "Lost, Season 1" - }, - "231": { - "tracks": { - "2859": { - "Name": "Man of Science, Man of Faith (Premiere)" - }, - "2860": { - "Name": "Adrift" - }, - "2864": { - "Name": "Orientation" - }, - "2867": { - "Name": "Everybody Hates Hugo" - }, - "2869": { - "Name": "...And Found" - }, - "2872": { - "Name": "Abandoned" - }, - "2878": { - "Name": "The Other 48 Days" - }, - "2879": { - "Name": "Collision" - }, - "2884": { - "Name": "What Kate Did" - }, - "2887": { - "Name": "The 23rd Psalm" - }, - "2889": { - "Name": "The Hunting Party" - }, - "2892": { - "Name": "Fire + Water" - }, - "2896": { - "Name": "The Long Con" - }, - "2897": { - "Name": "One of Them" - }, - "2902": { - "Name": "Maternity Leave" - }, - "2905": { - "Name": "The Whole Truth" - }, - "2907": { - "Name": "Lockdown" - }, - "2910": { - "Name": "Dave" - }, - "2914": { - "Name": "S.O.S." - }, - "2916": { - "Name": "Two for the Road" - }, - "2918": { - "Name": "\"?\"" - }, - "2920": { - "Name": "Three Minutes" - }, - "2922": { - "Name": "Live Together, Die Alone, Pt. 1" - }, - "2924": { - "Name": "Live Together, Die Alone, Pt. 2" - } - }, - "Title": "Lost, Season 2" - }, - "261": { - "tracks": { - "3337": { - "Name": "Past, Present, and Future" - }, - "3338": { - "Name": "The Beginning of the End" - }, - "3339": { - "Name": "LOST Season 4 Trailer" - }, - "3340": { - "Name": "LOST In 8:15" - }, - "3341": { - "Name": "Confirmed Dead" - }, - "3342": { - "Name": "The Economist" - }, - "3343": { - "Name": "Eggtown" - }, - "3344": { - "Name": "The Constant" - }, - "3345": { - "Name": "The Other Woman" - }, - "3346": { - "Name": "Ji Yeon" - }, - "3347": { - "Name": "Meet Kevin Johnson" - }, - "3348": { - "Name": "The Shape of Things to Come" - }, - "3360": { - "Name": "Something Nice Back Home" - }, - "3361": { - "Name": "Cabin Fever" - }, - "3362": { - "Name": "There's No Place Like Home, Pt. 1" - }, - "3363": { - "Name": "There's No Place Like Home, Pt. 2" - }, - "3364": { - "Name": "There's No Place Like Home, Pt. 3" - } - }, - "Title": "LOST, Season 4" - } - }, - "Name": "Lost" - } - }, - "232": { - "tracks": { - "2926": { - "Composer": "U2", - "Name": "Zoo Station" - }, - "2927": { - "Composer": "U2", - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Composer": "U2", - "Name": "One" - }, - "2929": { - "Composer": "U2", - "Name": "Until The End Of The World" - }, - "2930": { - "Composer": "U2", - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Composer": "U2", - "Name": "So Cruel" - }, - "2932": { - "Composer": "U2", - "Name": "The Fly" - }, - "2933": { - "Composer": "U2", - "Name": "Mysterious Ways" - }, - "2934": { - "Composer": "U2", - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Composer": "U2", - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Composer": "U2", - "Name": "Acrobat" - }, - "2937": { - "Composer": "U2", - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "233": { - "tracks": { - "2938": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Beautiful Day" - }, - "2939": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Elevation" - }, - "2941": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Walk On" - }, - "2942": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Kite" - }, - "2943": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "In A Little While" - }, - "2944": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Wild Honey" - }, - "2945": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Peace On Earth" - }, - "2946": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "When I Look At The World" - }, - "2947": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "New York" - }, - "2948": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "234": { - "tracks": { - "2949": { - "Composer": "U2", - "Name": "The Three Sunrises" - }, - "2950": { - "Composer": "U2", - "Name": "Spanish Eyes" - }, - "2951": { - "Composer": "U2", - "Name": "Sweetest Thing" - }, - "2952": { - "Composer": "U2", - "Name": "Love Comes Tumbling" - }, - "2953": { - "Composer": "U2", - "Name": "Bass Trap" - }, - "2954": { - "Composer": "Ivan Kral/Patti Smith", - "Name": "Dancing Barefoot" - }, - "2955": { - "Composer": "Buzz Cason/Mac Gayden", - "Name": "Everlasting Love" - }, - "2956": { - "Composer": "Alex North/Hy Zaret", - "Name": "Unchained Melody" - }, - "2957": { - "Composer": "U2", - "Name": "Walk To The Water" - }, - "2958": { - "Composer": "Brian Eno/U2", - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Composer": "U2", - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Composer": "Bono", - "Name": "Silver And Gold" - }, - "2961": { - "Composer": "U2", - "Name": "Endless Deep" - }, - "2962": { - "Composer": "U2", - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Composer": "U2", - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "235": { - "tracks": { - "2964": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Vertigo" - }, - "2965": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Miracle Drug" - }, - "2966": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Love And Peace Or Else" - }, - "2968": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "City Of Blinding Lights" - }, - "2969": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "All Because Of You" - }, - "2970": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "A Man And A Woman" - }, - "2971": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Crumbs From Your Table" - }, - "2972": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "One Step Closer" - }, - "2973": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Original Of The Species" - }, - "2974": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "236": { - "tracks": { - "2975": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Discotheque" - }, - "2976": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Do You Feel Loved" - }, - "2977": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Mofo" - }, - "2978": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "If God Will Send His Angels" - }, - "2979": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Staring At The Sun" - }, - "2980": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Last Night On Earth" - }, - "2981": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Gone" - }, - "2982": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Miami" - }, - "2983": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "The Playboy Mansion" - }, - "2984": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Please" - }, - "2986": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "237": { - "tracks": { - "2987": { - "Composer": "Lennon, John/McCartney, Paul", - "Name": "Helter Skelter" - }, - "2988": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Van Diemen's Land" - }, - "2989": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Desire" - }, - "2990": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Hawkmoon 269" - }, - "2991": { - "Composer": "Dylan, Bob", - "Name": "All Along The Watchtower" - }, - "2992": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Composer": "Mabins, Macie/Magee, Sterling/Robinson, Bobby", - "Name": "Freedom For My People" - }, - "2994": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Silver And Gold" - }, - "2995": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Angel Of Harlem" - }, - "2997": { - "Composer": "Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge", - "Name": "Love Rescue Me" - }, - "2998": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "When Love Comes To Town" - }, - "2999": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Heartland" - }, - "3000": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "God Part II" - }, - "3001": { - "Composer": "Hendrix, Jimi", - "Name": "The Star Spangled Banner" - }, - "3002": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "238": { - "tracks": { - "3004": { - "Composer": "U2", - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Composer": "U2", - "Name": "New Year's Day" - }, - "3006": { - "Composer": "U2", - "Name": "With Or Without You" - }, - "3007": { - "Composer": "U2", - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Composer": "U2", - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Composer": "U2", - "Name": "Bad" - }, - "3010": { - "Composer": "U2", - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Composer": "U2", - "Name": "I Will Follow" - }, - "3012": { - "Composer": "U2", - "Name": "The Unforgettable Fire" - }, - "3013": { - "Composer": "U2 & Daragh O'Toole", - "Name": "Sweetest Thing" - }, - "3014": { - "Composer": "U2", - "Name": "Desire" - }, - "3015": { - "Composer": "U2", - "Name": "When Love Comes To Town" - }, - "3016": { - "Composer": "U2", - "Name": "Angel Of Harlem" - }, - "3017": { - "Composer": "U2 & Van Dyke Parks", - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "239": { - "tracks": { - "3018": { - "Composer": "U2", - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Composer": "U2", - "Name": "Seconds" - }, - "3020": { - "Composer": "U2", - "Name": "New Year's Day" - }, - "3021": { - "Composer": "U2", - "Name": "Like A Song..." - }, - "3022": { - "Composer": "U2", - "Name": "Drowning Man" - }, - "3023": { - "Composer": "U2", - "Name": "The Refugee" - }, - "3024": { - "Composer": "U2", - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Composer": "U2", - "Name": "Red Light" - }, - "3026": { - "Composer": "U2", - "Name": "Surrender" - }, - "3027": { - "Composer": "U2", - "Name": "\"40\"" - } - }, - "Title": "War", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "240": { - "tracks": { - "3028": { - "Composer": "U2; Bono", - "Name": "Zooropa" - }, - "3029": { - "Composer": "U2; Bono", - "Name": "Babyface" - }, - "3030": { - "Composer": "U2; Edge, The", - "Name": "Numb" - }, - "3031": { - "Composer": "U2; Bono", - "Name": "Lemon" - }, - "3032": { - "Composer": "U2; Bono", - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Composer": "U2; Bono", - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Composer": "U2; Bono", - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Composer": "U2; Bono", - "Name": "The First Time" - }, - "3036": { - "Composer": "U2; Bono & Edge, The", - "Name": "Dirty Day" - }, - "3037": { - "Composer": "U2; Bono", - "Name": "The Wanderer" - } - }, - "Title": "Zooropa", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "241": { - "tracks": { - "3038": { - "Composer": null, - "Name": "Breakfast In Bed" - }, - "3039": { - "Composer": null, - "Name": "Where Did I Go Wrong" - }, - "3040": { - "Composer": null, - "Name": "I Would Do For You" - }, - "3041": { - "Composer": null, - "Name": "Homely Girl" - }, - "3042": { - "Composer": null, - "Name": "Here I Am (Come And Take Me)" - }, - "3043": { - "Composer": null, - "Name": "Kingston Town" - }, - "3044": { - "Composer": null, - "Name": "Wear You To The Ball" - }, - "3045": { - "Composer": null, - "Name": "(I Can't Help) Falling In Love With You" - }, - "3046": { - "Composer": null, - "Name": "Higher Ground" - }, - "3047": { - "Composer": null, - "Name": "Bring Me Your Cup" - }, - "3048": { - "Composer": null, - "Name": "C'est La Vie" - }, - "3049": { - "Composer": null, - "Name": "Reggae Music" - }, - "3050": { - "Composer": null, - "Name": "Superstition" - }, - "3051": { - "Composer": null, - "Name": "Until My Dying Day" - } - }, - "Title": "UB40 The Best Of - Volume Two [UK]", - "artist": { - "ArtistId": 151, - "albums": { - "241": { - "tracks": { - "3038": { - "Name": "Breakfast In Bed" - }, - "3039": { - "Name": "Where Did I Go Wrong" - }, - "3040": { - "Name": "I Would Do For You" - }, - "3041": { - "Name": "Homely Girl" - }, - "3042": { - "Name": "Here I Am (Come And Take Me)" - }, - "3043": { - "Name": "Kingston Town" - }, - "3044": { - "Name": "Wear You To The Ball" - }, - "3045": { - "Name": "(I Can't Help) Falling In Love With You" - }, - "3046": { - "Name": "Higher Ground" - }, - "3047": { - "Name": "Bring Me Your Cup" - }, - "3048": { - "Name": "C'est La Vie" - }, - "3049": { - "Name": "Reggae Music" - }, - "3050": { - "Name": "Superstition" - }, - "3051": { - "Name": "Until My Dying Day" - } - }, - "Title": "UB40 The Best Of - Volume Two [UK]" - } - }, - "Name": "UB40" - } - }, - "242": { - "tracks": { - "3052": { - "Composer": "Ray Davies", - "Name": "Where Have All The Good Times Gone?" - }, - "3053": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Hang 'Em High" - }, - "3054": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Cathedral" - }, - "3055": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Secrets" - }, - "3056": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Intruder" - }, - "3057": { - "Composer": "Bill Dees/Roy Orbison", - "Name": "(Oh) Pretty Woman" - }, - "3058": { - "Composer": "Ivy Jo Hunter/Marvin Gaye/William Stevenson", - "Name": "Dancing In The Street" - }, - "3059": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Little Guitars (Intro)" - }, - "3060": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "Little Guitars" - }, - "3061": { - "Composer": "Jack Yellen/Milton Ager", - "Name": "Big Bad Bill (Is Sweet William Now)" - }, - "3062": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "Name": "The Full Bug" - }, - "3063": { - "Composer": "Dale Evans", - "Name": "Happy Trails" - } - }, - "Title": "Diver Down", - "artist": { - "ArtistId": 152, - "albums": { - "242": { - "tracks": { - "3052": { - "Name": "Where Have All The Good Times Gone?" - }, - "3053": { - "Name": "Hang 'Em High" - }, - "3054": { - "Name": "Cathedral" - }, - "3055": { - "Name": "Secrets" - }, - "3056": { - "Name": "Intruder" - }, - "3057": { - "Name": "(Oh) Pretty Woman" - }, - "3058": { - "Name": "Dancing In The Street" - }, - "3059": { - "Name": "Little Guitars (Intro)" - }, - "3060": { - "Name": "Little Guitars" - }, - "3061": { - "Name": "Big Bad Bill (Is Sweet William Now)" - }, - "3062": { - "Name": "The Full Bug" - }, - "3063": { - "Name": "Happy Trails" - } - }, - "Title": "Diver Down" - }, - "243": { - "tracks": { - "3064": { - "Name": "Eruption" - }, - "3065": { - "Name": "Ain't Talkin' 'bout Love" - }, - "3066": { - "Name": "Runnin' With The Devil" - }, - "3067": { - "Name": "Dance the Night Away" - }, - "3068": { - "Name": "And the Cradle Will Rock..." - }, - "3069": { - "Name": "Unchained" - }, - "3070": { - "Name": "Jump" - }, - "3071": { - "Name": "Panama" - }, - "3072": { - "Name": "Why Can't This Be Love" - }, - "3073": { - "Name": "Dreams" - }, - "3074": { - "Name": "When It's Love" - }, - "3075": { - "Name": "Poundcake" - }, - "3076": { - "Name": "Right Now" - }, - "3077": { - "Name": "Can't Stop Loving You" - }, - "3078": { - "Name": "Humans Being" - }, - "3079": { - "Name": "Can't Get This Stuff No More" - }, - "3080": { - "Name": "Me Wise Magic" - } - }, - "Title": "The Best Of Van Halen, Vol. I" - }, - "244": { - "tracks": { - "3081": { - "Name": "Runnin' With The Devil" - }, - "3082": { - "Name": "Eruption" - }, - "3083": { - "Name": "You Really Got Me" - }, - "3084": { - "Name": "Ain't Talkin' 'Bout Love" - }, - "3085": { - "Name": "I'm The One" - }, - "3086": { - "Name": "Jamie's Cryin'" - }, - "3087": { - "Name": "Atomic Punk" - }, - "3088": { - "Name": "Feel Your Love Tonight" - }, - "3089": { - "Name": "Little Dreamer" - }, - "3090": { - "Name": "Ice Cream Man" - }, - "3091": { - "Name": "On Fire" - } - }, - "Title": "Van Halen" - }, - "245": { - "tracks": { - "3092": { - "Name": "Neworld" - }, - "3093": { - "Name": "Without You" - }, - "3094": { - "Name": "One I Want" - }, - "3095": { - "Name": "From Afar" - }, - "3096": { - "Name": "Dirty Water Dog" - }, - "3097": { - "Name": "Once" - }, - "3098": { - "Name": "Fire in the Hole" - }, - "3099": { - "Name": "Josephina" - }, - "3100": { - "Name": "Year to the Day" - }, - "3101": { - "Name": "Primary" - }, - "3102": { - "Name": "Ballot or the Bullet" - }, - "3103": { - "Name": "How Many Say I" - } - }, - "Title": "Van Halen III" - } - }, - "Name": "Van Halen" - } - }, - "243": { - "tracks": { - "3064": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Eruption" - }, - "3065": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Ain't Talkin' 'bout Love" - }, - "3066": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Runnin' With The Devil" - }, - "3067": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Dance the Night Away" - }, - "3068": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "And the Cradle Will Rock..." - }, - "3069": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "Name": "Unchained" - }, - "3070": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Name": "Jump" - }, - "3071": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "Name": "Panama" - }, - "3072": { - "Composer": "Van Halen", - "Name": "Why Can't This Be Love" - }, - "3073": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "Dreams" - }, - "3074": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "When It's Love" - }, - "3075": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "Poundcake" - }, - "3076": { - "Composer": "Van Halen", - "Name": "Right Now" - }, - "3077": { - "Composer": "Van Halen", - "Name": "Can't Stop Loving You" - }, - "3078": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "Name": "Humans Being" - }, - "3079": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Name": "Can't Get This Stuff No More" - }, - "3080": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "Name": "Me Wise Magic" - } - }, - "Title": "The Best Of Van Halen, Vol. I", - "artist": { - "ArtistId": 152, - "albums": { - "242": { - "tracks": { - "3052": { - "Name": "Where Have All The Good Times Gone?" - }, - "3053": { - "Name": "Hang 'Em High" - }, - "3054": { - "Name": "Cathedral" - }, - "3055": { - "Name": "Secrets" - }, - "3056": { - "Name": "Intruder" - }, - "3057": { - "Name": "(Oh) Pretty Woman" - }, - "3058": { - "Name": "Dancing In The Street" - }, - "3059": { - "Name": "Little Guitars (Intro)" - }, - "3060": { - "Name": "Little Guitars" - }, - "3061": { - "Name": "Big Bad Bill (Is Sweet William Now)" - }, - "3062": { - "Name": "The Full Bug" - }, - "3063": { - "Name": "Happy Trails" - } - }, - "Title": "Diver Down" - }, - "243": { - "tracks": { - "3064": { - "Name": "Eruption" - }, - "3065": { - "Name": "Ain't Talkin' 'bout Love" - }, - "3066": { - "Name": "Runnin' With The Devil" - }, - "3067": { - "Name": "Dance the Night Away" - }, - "3068": { - "Name": "And the Cradle Will Rock..." - }, - "3069": { - "Name": "Unchained" - }, - "3070": { - "Name": "Jump" - }, - "3071": { - "Name": "Panama" - }, - "3072": { - "Name": "Why Can't This Be Love" - }, - "3073": { - "Name": "Dreams" - }, - "3074": { - "Name": "When It's Love" - }, - "3075": { - "Name": "Poundcake" - }, - "3076": { - "Name": "Right Now" - }, - "3077": { - "Name": "Can't Stop Loving You" - }, - "3078": { - "Name": "Humans Being" - }, - "3079": { - "Name": "Can't Get This Stuff No More" - }, - "3080": { - "Name": "Me Wise Magic" - } - }, - "Title": "The Best Of Van Halen, Vol. I" - }, - "244": { - "tracks": { - "3081": { - "Name": "Runnin' With The Devil" - }, - "3082": { - "Name": "Eruption" - }, - "3083": { - "Name": "You Really Got Me" - }, - "3084": { - "Name": "Ain't Talkin' 'Bout Love" - }, - "3085": { - "Name": "I'm The One" - }, - "3086": { - "Name": "Jamie's Cryin'" - }, - "3087": { - "Name": "Atomic Punk" - }, - "3088": { - "Name": "Feel Your Love Tonight" - }, - "3089": { - "Name": "Little Dreamer" - }, - "3090": { - "Name": "Ice Cream Man" - }, - "3091": { - "Name": "On Fire" - } - }, - "Title": "Van Halen" - }, - "245": { - "tracks": { - "3092": { - "Name": "Neworld" - }, - "3093": { - "Name": "Without You" - }, - "3094": { - "Name": "One I Want" - }, - "3095": { - "Name": "From Afar" - }, - "3096": { - "Name": "Dirty Water Dog" - }, - "3097": { - "Name": "Once" - }, - "3098": { - "Name": "Fire in the Hole" - }, - "3099": { - "Name": "Josephina" - }, - "3100": { - "Name": "Year to the Day" - }, - "3101": { - "Name": "Primary" - }, - "3102": { - "Name": "Ballot or the Bullet" - }, - "3103": { - "Name": "How Many Say I" - } - }, - "Title": "Van Halen III" - } - }, - "Name": "Van Halen" - } - }, - "244": { - "tracks": { - "3081": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Runnin' With The Devil" - }, - "3082": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Eruption" - }, - "3083": { - "Composer": "Ray Davies", - "Name": "You Really Got Me" - }, - "3084": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Ain't Talkin' 'Bout Love" - }, - "3085": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "I'm The One" - }, - "3086": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Jamie's Cryin'" - }, - "3087": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Atomic Punk" - }, - "3088": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Feel Your Love Tonight" - }, - "3089": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "Little Dreamer" - }, - "3090": { - "Composer": "John Brim", - "Name": "Ice Cream Man" - }, - "3091": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "Name": "On Fire" - } - }, - "Title": "Van Halen", - "artist": { - "ArtistId": 152, - "albums": { - "242": { - "tracks": { - "3052": { - "Name": "Where Have All The Good Times Gone?" - }, - "3053": { - "Name": "Hang 'Em High" - }, - "3054": { - "Name": "Cathedral" - }, - "3055": { - "Name": "Secrets" - }, - "3056": { - "Name": "Intruder" - }, - "3057": { - "Name": "(Oh) Pretty Woman" - }, - "3058": { - "Name": "Dancing In The Street" - }, - "3059": { - "Name": "Little Guitars (Intro)" - }, - "3060": { - "Name": "Little Guitars" - }, - "3061": { - "Name": "Big Bad Bill (Is Sweet William Now)" - }, - "3062": { - "Name": "The Full Bug" - }, - "3063": { - "Name": "Happy Trails" - } - }, - "Title": "Diver Down" - }, - "243": { - "tracks": { - "3064": { - "Name": "Eruption" - }, - "3065": { - "Name": "Ain't Talkin' 'bout Love" - }, - "3066": { - "Name": "Runnin' With The Devil" - }, - "3067": { - "Name": "Dance the Night Away" - }, - "3068": { - "Name": "And the Cradle Will Rock..." - }, - "3069": { - "Name": "Unchained" - }, - "3070": { - "Name": "Jump" - }, - "3071": { - "Name": "Panama" - }, - "3072": { - "Name": "Why Can't This Be Love" - }, - "3073": { - "Name": "Dreams" - }, - "3074": { - "Name": "When It's Love" - }, - "3075": { - "Name": "Poundcake" - }, - "3076": { - "Name": "Right Now" - }, - "3077": { - "Name": "Can't Stop Loving You" - }, - "3078": { - "Name": "Humans Being" - }, - "3079": { - "Name": "Can't Get This Stuff No More" - }, - "3080": { - "Name": "Me Wise Magic" - } - }, - "Title": "The Best Of Van Halen, Vol. I" - }, - "244": { - "tracks": { - "3081": { - "Name": "Runnin' With The Devil" - }, - "3082": { - "Name": "Eruption" - }, - "3083": { - "Name": "You Really Got Me" - }, - "3084": { - "Name": "Ain't Talkin' 'Bout Love" - }, - "3085": { - "Name": "I'm The One" - }, - "3086": { - "Name": "Jamie's Cryin'" - }, - "3087": { - "Name": "Atomic Punk" - }, - "3088": { - "Name": "Feel Your Love Tonight" - }, - "3089": { - "Name": "Little Dreamer" - }, - "3090": { - "Name": "Ice Cream Man" - }, - "3091": { - "Name": "On Fire" - } - }, - "Title": "Van Halen" - }, - "245": { - "tracks": { - "3092": { - "Name": "Neworld" - }, - "3093": { - "Name": "Without You" - }, - "3094": { - "Name": "One I Want" - }, - "3095": { - "Name": "From Afar" - }, - "3096": { - "Name": "Dirty Water Dog" - }, - "3097": { - "Name": "Once" - }, - "3098": { - "Name": "Fire in the Hole" - }, - "3099": { - "Name": "Josephina" - }, - "3100": { - "Name": "Year to the Day" - }, - "3101": { - "Name": "Primary" - }, - "3102": { - "Name": "Ballot or the Bullet" - }, - "3103": { - "Name": "How Many Say I" - } - }, - "Title": "Van Halen III" - } - }, - "Name": "Van Halen" - } - }, - "245": { - "tracks": { - "3092": { - "Composer": "Van Halen", - "Name": "Neworld" - }, - "3093": { - "Composer": "Van Halen", - "Name": "Without You" - }, - "3094": { - "Composer": "Van Halen", - "Name": "One I Want" - }, - "3095": { - "Composer": "Van Halen", - "Name": "From Afar" - }, - "3096": { - "Composer": "Van Halen", - "Name": "Dirty Water Dog" - }, - "3097": { - "Composer": "Van Halen", - "Name": "Once" - }, - "3098": { - "Composer": "Van Halen", - "Name": "Fire in the Hole" - }, - "3099": { - "Composer": "Van Halen", - "Name": "Josephina" - }, - "3100": { - "Composer": "Van Halen", - "Name": "Year to the Day" - }, - "3101": { - "Composer": "Van Halen", - "Name": "Primary" - }, - "3102": { - "Composer": "Van Halen", - "Name": "Ballot or the Bullet" - }, - "3103": { - "Composer": "Van Halen", - "Name": "How Many Say I" - } - }, - "Title": "Van Halen III", - "artist": { - "ArtistId": 152, - "albums": { - "242": { - "tracks": { - "3052": { - "Name": "Where Have All The Good Times Gone?" - }, - "3053": { - "Name": "Hang 'Em High" - }, - "3054": { - "Name": "Cathedral" - }, - "3055": { - "Name": "Secrets" - }, - "3056": { - "Name": "Intruder" - }, - "3057": { - "Name": "(Oh) Pretty Woman" - }, - "3058": { - "Name": "Dancing In The Street" - }, - "3059": { - "Name": "Little Guitars (Intro)" - }, - "3060": { - "Name": "Little Guitars" - }, - "3061": { - "Name": "Big Bad Bill (Is Sweet William Now)" - }, - "3062": { - "Name": "The Full Bug" - }, - "3063": { - "Name": "Happy Trails" - } - }, - "Title": "Diver Down" - }, - "243": { - "tracks": { - "3064": { - "Name": "Eruption" - }, - "3065": { - "Name": "Ain't Talkin' 'bout Love" - }, - "3066": { - "Name": "Runnin' With The Devil" - }, - "3067": { - "Name": "Dance the Night Away" - }, - "3068": { - "Name": "And the Cradle Will Rock..." - }, - "3069": { - "Name": "Unchained" - }, - "3070": { - "Name": "Jump" - }, - "3071": { - "Name": "Panama" - }, - "3072": { - "Name": "Why Can't This Be Love" - }, - "3073": { - "Name": "Dreams" - }, - "3074": { - "Name": "When It's Love" - }, - "3075": { - "Name": "Poundcake" - }, - "3076": { - "Name": "Right Now" - }, - "3077": { - "Name": "Can't Stop Loving You" - }, - "3078": { - "Name": "Humans Being" - }, - "3079": { - "Name": "Can't Get This Stuff No More" - }, - "3080": { - "Name": "Me Wise Magic" - } - }, - "Title": "The Best Of Van Halen, Vol. I" - }, - "244": { - "tracks": { - "3081": { - "Name": "Runnin' With The Devil" - }, - "3082": { - "Name": "Eruption" - }, - "3083": { - "Name": "You Really Got Me" - }, - "3084": { - "Name": "Ain't Talkin' 'Bout Love" - }, - "3085": { - "Name": "I'm The One" - }, - "3086": { - "Name": "Jamie's Cryin'" - }, - "3087": { - "Name": "Atomic Punk" - }, - "3088": { - "Name": "Feel Your Love Tonight" - }, - "3089": { - "Name": "Little Dreamer" - }, - "3090": { - "Name": "Ice Cream Man" - }, - "3091": { - "Name": "On Fire" - } - }, - "Title": "Van Halen" - }, - "245": { - "tracks": { - "3092": { - "Name": "Neworld" - }, - "3093": { - "Name": "Without You" - }, - "3094": { - "Name": "One I Want" - }, - "3095": { - "Name": "From Afar" - }, - "3096": { - "Name": "Dirty Water Dog" - }, - "3097": { - "Name": "Once" - }, - "3098": { - "Name": "Fire in the Hole" - }, - "3099": { - "Name": "Josephina" - }, - "3100": { - "Name": "Year to the Day" - }, - "3101": { - "Name": "Primary" - }, - "3102": { - "Name": "Ballot or the Bullet" - }, - "3103": { - "Name": "How Many Say I" - } - }, - "Title": "Van Halen III" - } - }, - "Name": "Van Halen" - } - }, - "246": { - "tracks": { - "3104": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Sucker Train Blues" - }, - "3105": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Do It For The Kids" - }, - "3106": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Big Machine" - }, - "3107": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Illegal I Song" - }, - "3108": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Spectacle" - }, - "3109": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Fall To Pieces" - }, - "3110": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Headspace" - }, - "3111": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Superhuman" - }, - "3112": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Set Me Free" - }, - "3113": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "You Got No Right" - }, - "3114": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Slither" - }, - "3115": { - "Composer": "Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash", - "Name": "Dirty Little Thing" - }, - "3116": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "Name": "Loving The Alien" - } - }, - "Title": "Contraband", - "artist": { - "ArtistId": 153, - "albums": { - "246": { - "tracks": { - "3104": { - "Name": "Sucker Train Blues" - }, - "3105": { - "Name": "Do It For The Kids" - }, - "3106": { - "Name": "Big Machine" - }, - "3107": { - "Name": "Illegal I Song" - }, - "3108": { - "Name": "Spectacle" - }, - "3109": { - "Name": "Fall To Pieces" - }, - "3110": { - "Name": "Headspace" - }, - "3111": { - "Name": "Superhuman" - }, - "3112": { - "Name": "Set Me Free" - }, - "3113": { - "Name": "You Got No Right" - }, - "3114": { - "Name": "Slither" - }, - "3115": { - "Name": "Dirty Little Thing" - }, - "3116": { - "Name": "Loving The Alien" - } - }, - "Title": "Contraband" - } - }, - "Name": "Velvet Revolver" - } - }, - "248": { - "tracks": { - "3149": { - "Composer": "Alcides Dias Lopes", - "Name": "Vivo Isolado Do Mundo" - }, - "3153": { - "Composer": "Augusto Garcez/Nelson Cavaquinho", - "Name": "Rugas" - }, - "3155": { - "Composer": "Aldir Blanc/Jayme Vignoli", - "Name": "Sem Essa de Malandro Agulha" - }, - "3158": { - "Composer": "Acyr Marques/Arlindo Cruz/Franco", - "Name": "Saudade Louca" - }, - "3160": { - "Composer": "Nei Lopes/Wilson Moreira", - "Name": "Sapopemba e Maxambomba" - }, - "3162": { - "Composer": "Ratinho/Zeca Pagodinho", - "Name": "Lua de Ogum" - }, - "3164": { - "Composer": "Carlinhos Santana/Nelson Rufino", - "Name": "Verdade" - } - }, - "Title": "Ao Vivo [IMPORT]", - "artist": { - "ArtistId": 155, - "albums": { - "248": { - "tracks": { - "3149": { - "Name": "Vivo Isolado Do Mundo" - }, - "3153": { - "Name": "Rugas" - }, - "3155": { - "Name": "Sem Essa de Malandro Agulha" - }, - "3158": { - "Name": "Saudade Louca" - }, - "3160": { - "Name": "Sapopemba e Maxambomba" - }, - "3162": { - "Name": "Lua de Ogum" - }, - "3164": { - "Name": "Verdade" - } - }, - "Title": "Ao Vivo [IMPORT]" - } - }, - "Name": "Zeca Pagodinho" - } - }, - "249": { - "tracks": { - "3172": { - "Composer": null, - "Name": "The Office: An American Workplace (Pilot)" - }, - "3173": { - "Composer": null, - "Name": "Diversity Day" - }, - "3174": { - "Composer": null, - "Name": "Health Care" - }, - "3175": { - "Composer": null, - "Name": "The Alliance" - }, - "3176": { - "Composer": null, - "Name": "Basketball" - }, - "3177": { - "Composer": null, - "Name": "Hot Girl" - } - }, - "Title": "The Office, Season 1", - "artist": { - "ArtistId": 156, - "albums": { - "249": { - "tracks": { - "3172": { - "Name": "The Office: An American Workplace (Pilot)" - }, - "3173": { - "Name": "Diversity Day" - }, - "3174": { - "Name": "Health Care" - }, - "3175": { - "Name": "The Alliance" - }, - "3176": { - "Name": "Basketball" - }, - "3177": { - "Name": "Hot Girl" - } - }, - "Title": "The Office, Season 1" - }, - "250": { - "tracks": { - "3178": { - "Name": "The Dundies" - }, - "3179": { - "Name": "Sexual Harassment" - }, - "3180": { - "Name": "Office Olympics" - }, - "3181": { - "Name": "The Fire" - }, - "3182": { - "Name": "Halloween" - }, - "3183": { - "Name": "The Fight" - }, - "3184": { - "Name": "The Client" - }, - "3185": { - "Name": "Performance Review" - }, - "3186": { - "Name": "Email Surveillance" - }, - "3187": { - "Name": "Christmas Party" - }, - "3188": { - "Name": "Booze Cruise" - }, - "3189": { - "Name": "The Injury" - }, - "3190": { - "Name": "The Secret" - }, - "3191": { - "Name": "The Carpet" - }, - "3192": { - "Name": "Boys and Girls" - }, - "3193": { - "Name": "Valentine's Day" - }, - "3194": { - "Name": "Dwight's Speech" - }, - "3195": { - "Name": "Take Your Daughter to Work Day" - }, - "3196": { - "Name": "Michael's Birthday" - }, - "3197": { - "Name": "Drug Testing" - }, - "3198": { - "Name": "Conflict Resolution" - }, - "3199": { - "Name": "Casino Night - Season Finale" - } - }, - "Title": "The Office, Season 2" - }, - "251": { - "tracks": { - "3200": { - "Name": "Gay Witch Hunt" - }, - "3201": { - "Name": "The Convention" - }, - "3202": { - "Name": "The Coup" - }, - "3203": { - "Name": "Grief Counseling" - }, - "3204": { - "Name": "The Initiation" - }, - "3205": { - "Name": "Diwali" - }, - "3206": { - "Name": "Branch Closing" - }, - "3207": { - "Name": "The Merger" - }, - "3208": { - "Name": "The Convict" - }, - "3209": { - "Name": "A Benihana Christmas, Pts. 1 & 2" - }, - "3210": { - "Name": "Back from Vacation" - }, - "3211": { - "Name": "Traveling Salesmen" - }, - "3212": { - "Name": "Producer's Cut: The Return" - }, - "3213": { - "Name": "Ben Franklin" - }, - "3214": { - "Name": "Phyllis's Wedding" - }, - "3215": { - "Name": "Business School" - }, - "3216": { - "Name": "Cocktails" - }, - "3217": { - "Name": "The Negotiation" - }, - "3218": { - "Name": "Safety Training" - }, - "3219": { - "Name": "Product Recall" - }, - "3220": { - "Name": "Women's Appreciation" - }, - "3221": { - "Name": "Beach Games" - }, - "3222": { - "Name": "The Job" - }, - "3428": { - "Name": "Branch Closing" - }, - "3429": { - "Name": "The Return" - } - }, - "Title": "The Office, Season 3" - } - }, - "Name": "The Office" - } - }, - "250": { - "tracks": { - "3178": { - "Composer": null, - "Name": "The Dundies" - }, - "3179": { - "Composer": null, - "Name": "Sexual Harassment" - }, - "3180": { - "Composer": null, - "Name": "Office Olympics" - }, - "3181": { - "Composer": null, - "Name": "The Fire" - }, - "3182": { - "Composer": null, - "Name": "Halloween" - }, - "3183": { - "Composer": null, - "Name": "The Fight" - }, - "3184": { - "Composer": null, - "Name": "The Client" - }, - "3185": { - "Composer": null, - "Name": "Performance Review" - }, - "3186": { - "Composer": null, - "Name": "Email Surveillance" - }, - "3187": { - "Composer": null, - "Name": "Christmas Party" - }, - "3188": { - "Composer": null, - "Name": "Booze Cruise" - }, - "3189": { - "Composer": null, - "Name": "The Injury" - }, - "3190": { - "Composer": null, - "Name": "The Secret" - }, - "3191": { - "Composer": null, - "Name": "The Carpet" - }, - "3192": { - "Composer": null, - "Name": "Boys and Girls" - }, - "3193": { - "Composer": null, - "Name": "Valentine's Day" - }, - "3194": { - "Composer": null, - "Name": "Dwight's Speech" - }, - "3195": { - "Composer": null, - "Name": "Take Your Daughter to Work Day" - }, - "3196": { - "Composer": null, - "Name": "Michael's Birthday" - }, - "3197": { - "Composer": null, - "Name": "Drug Testing" - }, - "3198": { - "Composer": null, - "Name": "Conflict Resolution" - }, - "3199": { - "Composer": null, - "Name": "Casino Night - Season Finale" - } - }, - "Title": "The Office, Season 2", - "artist": { - "ArtistId": 156, - "albums": { - "249": { - "tracks": { - "3172": { - "Name": "The Office: An American Workplace (Pilot)" - }, - "3173": { - "Name": "Diversity Day" - }, - "3174": { - "Name": "Health Care" - }, - "3175": { - "Name": "The Alliance" - }, - "3176": { - "Name": "Basketball" - }, - "3177": { - "Name": "Hot Girl" - } - }, - "Title": "The Office, Season 1" - }, - "250": { - "tracks": { - "3178": { - "Name": "The Dundies" - }, - "3179": { - "Name": "Sexual Harassment" - }, - "3180": { - "Name": "Office Olympics" - }, - "3181": { - "Name": "The Fire" - }, - "3182": { - "Name": "Halloween" - }, - "3183": { - "Name": "The Fight" - }, - "3184": { - "Name": "The Client" - }, - "3185": { - "Name": "Performance Review" - }, - "3186": { - "Name": "Email Surveillance" - }, - "3187": { - "Name": "Christmas Party" - }, - "3188": { - "Name": "Booze Cruise" - }, - "3189": { - "Name": "The Injury" - }, - "3190": { - "Name": "The Secret" - }, - "3191": { - "Name": "The Carpet" - }, - "3192": { - "Name": "Boys and Girls" - }, - "3193": { - "Name": "Valentine's Day" - }, - "3194": { - "Name": "Dwight's Speech" - }, - "3195": { - "Name": "Take Your Daughter to Work Day" - }, - "3196": { - "Name": "Michael's Birthday" - }, - "3197": { - "Name": "Drug Testing" - }, - "3198": { - "Name": "Conflict Resolution" - }, - "3199": { - "Name": "Casino Night - Season Finale" - } - }, - "Title": "The Office, Season 2" - }, - "251": { - "tracks": { - "3200": { - "Name": "Gay Witch Hunt" - }, - "3201": { - "Name": "The Convention" - }, - "3202": { - "Name": "The Coup" - }, - "3203": { - "Name": "Grief Counseling" - }, - "3204": { - "Name": "The Initiation" - }, - "3205": { - "Name": "Diwali" - }, - "3206": { - "Name": "Branch Closing" - }, - "3207": { - "Name": "The Merger" - }, - "3208": { - "Name": "The Convict" - }, - "3209": { - "Name": "A Benihana Christmas, Pts. 1 & 2" - }, - "3210": { - "Name": "Back from Vacation" - }, - "3211": { - "Name": "Traveling Salesmen" - }, - "3212": { - "Name": "Producer's Cut: The Return" - }, - "3213": { - "Name": "Ben Franklin" - }, - "3214": { - "Name": "Phyllis's Wedding" - }, - "3215": { - "Name": "Business School" - }, - "3216": { - "Name": "Cocktails" - }, - "3217": { - "Name": "The Negotiation" - }, - "3218": { - "Name": "Safety Training" - }, - "3219": { - "Name": "Product Recall" - }, - "3220": { - "Name": "Women's Appreciation" - }, - "3221": { - "Name": "Beach Games" - }, - "3222": { - "Name": "The Job" - }, - "3428": { - "Name": "Branch Closing" - }, - "3429": { - "Name": "The Return" - } - }, - "Title": "The Office, Season 3" - } - }, - "Name": "The Office" - } - }, - "251": { - "tracks": { - "3200": { - "Composer": null, - "Name": "Gay Witch Hunt" - }, - "3201": { - "Composer": null, - "Name": "The Convention" - }, - "3202": { - "Composer": null, - "Name": "The Coup" - }, - "3203": { - "Composer": null, - "Name": "Grief Counseling" - }, - "3204": { - "Composer": null, - "Name": "The Initiation" - }, - "3205": { - "Composer": null, - "Name": "Diwali" - }, - "3206": { - "Composer": null, - "Name": "Branch Closing" - }, - "3207": { - "Composer": null, - "Name": "The Merger" - }, - "3208": { - "Composer": null, - "Name": "The Convict" - }, - "3209": { - "Composer": null, - "Name": "A Benihana Christmas, Pts. 1 & 2" - }, - "3210": { - "Composer": null, - "Name": "Back from Vacation" - }, - "3211": { - "Composer": null, - "Name": "Traveling Salesmen" - }, - "3212": { - "Composer": null, - "Name": "Producer's Cut: The Return" - }, - "3213": { - "Composer": null, - "Name": "Ben Franklin" - }, - "3214": { - "Composer": null, - "Name": "Phyllis's Wedding" - }, - "3215": { - "Composer": null, - "Name": "Business School" - }, - "3216": { - "Composer": null, - "Name": "Cocktails" - }, - "3217": { - "Composer": null, - "Name": "The Negotiation" - }, - "3218": { - "Composer": null, - "Name": "Safety Training" - }, - "3219": { - "Composer": null, - "Name": "Product Recall" - }, - "3220": { - "Composer": null, - "Name": "Women's Appreciation" - }, - "3221": { - "Composer": null, - "Name": "Beach Games" - }, - "3222": { - "Composer": null, - "Name": "The Job" - }, - "3428": { - "Composer": null, - "Name": "Branch Closing" - }, - "3429": { - "Composer": null, - "Name": "The Return" - } - }, - "Title": "The Office, Season 3", - "artist": { - "ArtistId": 156, - "albums": { - "249": { - "tracks": { - "3172": { - "Name": "The Office: An American Workplace (Pilot)" - }, - "3173": { - "Name": "Diversity Day" - }, - "3174": { - "Name": "Health Care" - }, - "3175": { - "Name": "The Alliance" - }, - "3176": { - "Name": "Basketball" - }, - "3177": { - "Name": "Hot Girl" - } - }, - "Title": "The Office, Season 1" - }, - "250": { - "tracks": { - "3178": { - "Name": "The Dundies" - }, - "3179": { - "Name": "Sexual Harassment" - }, - "3180": { - "Name": "Office Olympics" - }, - "3181": { - "Name": "The Fire" - }, - "3182": { - "Name": "Halloween" - }, - "3183": { - "Name": "The Fight" - }, - "3184": { - "Name": "The Client" - }, - "3185": { - "Name": "Performance Review" - }, - "3186": { - "Name": "Email Surveillance" - }, - "3187": { - "Name": "Christmas Party" - }, - "3188": { - "Name": "Booze Cruise" - }, - "3189": { - "Name": "The Injury" - }, - "3190": { - "Name": "The Secret" - }, - "3191": { - "Name": "The Carpet" - }, - "3192": { - "Name": "Boys and Girls" - }, - "3193": { - "Name": "Valentine's Day" - }, - "3194": { - "Name": "Dwight's Speech" - }, - "3195": { - "Name": "Take Your Daughter to Work Day" - }, - "3196": { - "Name": "Michael's Birthday" - }, - "3197": { - "Name": "Drug Testing" - }, - "3198": { - "Name": "Conflict Resolution" - }, - "3199": { - "Name": "Casino Night - Season Finale" - } - }, - "Title": "The Office, Season 2" - }, - "251": { - "tracks": { - "3200": { - "Name": "Gay Witch Hunt" - }, - "3201": { - "Name": "The Convention" - }, - "3202": { - "Name": "The Coup" - }, - "3203": { - "Name": "Grief Counseling" - }, - "3204": { - "Name": "The Initiation" - }, - "3205": { - "Name": "Diwali" - }, - "3206": { - "Name": "Branch Closing" - }, - "3207": { - "Name": "The Merger" - }, - "3208": { - "Name": "The Convict" - }, - "3209": { - "Name": "A Benihana Christmas, Pts. 1 & 2" - }, - "3210": { - "Name": "Back from Vacation" - }, - "3211": { - "Name": "Traveling Salesmen" - }, - "3212": { - "Name": "Producer's Cut: The Return" - }, - "3213": { - "Name": "Ben Franklin" - }, - "3214": { - "Name": "Phyllis's Wedding" - }, - "3215": { - "Name": "Business School" - }, - "3216": { - "Name": "Cocktails" - }, - "3217": { - "Name": "The Negotiation" - }, - "3218": { - "Name": "Safety Training" - }, - "3219": { - "Name": "Product Recall" - }, - "3220": { - "Name": "Women's Appreciation" - }, - "3221": { - "Name": "Beach Games" - }, - "3222": { - "Name": "The Job" - }, - "3428": { - "Name": "Branch Closing" - }, - "3429": { - "Name": "The Return" - } - }, - "Title": "The Office, Season 3" - } - }, - "Name": "The Office" - } - }, - "252": { - "tracks": { - "3225": { - "Composer": "Page, Jones", - "Name": "Your Time Is Gonna Come" - } - }, - "Title": "Un-Led-Ed", - "artist": { - "ArtistId": 157, - "albums": { - "252": { - "tracks": { - "3225": { - "Name": "Your Time Is Gonna Come" - } - }, - "Title": "Un-Led-Ed" - } - }, - "Name": "Dread Zeppelin" - } - }, - "253": { - "tracks": { - "3226": { - "Composer": null, - "Name": "Battlestar Galactica, Pt. 1" - }, - "3227": { - "Composer": null, - "Name": "Battlestar Galactica, Pt. 2" - }, - "3228": { - "Composer": null, - "Name": "Battlestar Galactica, Pt. 3" - }, - "3229": { - "Composer": null, - "Name": "Lost Planet of the Gods, Pt. 1" - }, - "3230": { - "Composer": null, - "Name": "Lost Planet of the Gods, Pt. 2" - }, - "3231": { - "Composer": null, - "Name": "The Lost Warrior" - }, - "3232": { - "Composer": null, - "Name": "The Long Patrol" - }, - "3233": { - "Composer": null, - "Name": "The Gun On Ice Planet Zero, Pt. 1" - }, - "3234": { - "Composer": null, - "Name": "The Gun On Ice Planet Zero, Pt. 2" - }, - "3235": { - "Composer": null, - "Name": "The Magnificent Warriors" - }, - "3236": { - "Composer": null, - "Name": "The Young Lords" - }, - "3237": { - "Composer": null, - "Name": "The Living Legend, Pt. 1" - }, - "3238": { - "Composer": null, - "Name": "The Living Legend, Pt. 2" - }, - "3239": { - "Composer": null, - "Name": "Fire In Space" - }, - "3240": { - "Composer": null, - "Name": "War of the Gods, Pt. 1" - }, - "3241": { - "Composer": null, - "Name": "War of the Gods, Pt. 2" - }, - "3242": { - "Composer": null, - "Name": "The Man With Nine Lives" - }, - "3243": { - "Composer": null, - "Name": "Murder On the Rising Star" - }, - "3244": { - "Composer": null, - "Name": "Greetings from Earth, Pt. 1" - }, - "3245": { - "Composer": null, - "Name": "Greetings from Earth, Pt. 2" - }, - "3246": { - "Composer": null, - "Name": "Baltar's Escape" - }, - "3247": { - "Composer": null, - "Name": "Experiment In Terra" - }, - "3248": { - "Composer": null, - "Name": "Take the Celestra" - }, - "3249": { - "Composer": null, - "Name": "The Hand of God" - } - }, - "Title": "Battlestar Galactica (Classic), Season 1", - "artist": { - "ArtistId": 158, - "albums": { - "253": { - "tracks": { - "3226": { - "Name": "Battlestar Galactica, Pt. 1" - }, - "3227": { - "Name": "Battlestar Galactica, Pt. 2" - }, - "3228": { - "Name": "Battlestar Galactica, Pt. 3" - }, - "3229": { - "Name": "Lost Planet of the Gods, Pt. 1" - }, - "3230": { - "Name": "Lost Planet of the Gods, Pt. 2" - }, - "3231": { - "Name": "The Lost Warrior" - }, - "3232": { - "Name": "The Long Patrol" - }, - "3233": { - "Name": "The Gun On Ice Planet Zero, Pt. 1" - }, - "3234": { - "Name": "The Gun On Ice Planet Zero, Pt. 2" - }, - "3235": { - "Name": "The Magnificent Warriors" - }, - "3236": { - "Name": "The Young Lords" - }, - "3237": { - "Name": "The Living Legend, Pt. 1" - }, - "3238": { - "Name": "The Living Legend, Pt. 2" - }, - "3239": { - "Name": "Fire In Space" - }, - "3240": { - "Name": "War of the Gods, Pt. 1" - }, - "3241": { - "Name": "War of the Gods, Pt. 2" - }, - "3242": { - "Name": "The Man With Nine Lives" - }, - "3243": { - "Name": "Murder On the Rising Star" - }, - "3244": { - "Name": "Greetings from Earth, Pt. 1" - }, - "3245": { - "Name": "Greetings from Earth, Pt. 2" - }, - "3246": { - "Name": "Baltar's Escape" - }, - "3247": { - "Name": "Experiment In Terra" - }, - "3248": { - "Name": "Take the Celestra" - }, - "3249": { - "Name": "The Hand of God" - } - }, - "Title": "Battlestar Galactica (Classic), Season 1" - } - }, - "Name": "Battlestar Galactica (Classic)" - } - }, - "254": { - "tracks": { - "3250": { - "Composer": null, - "Name": "Pilot" - } - }, - "Title": "Aquaman", - "artist": { - "ArtistId": 159, - "albums": { - "254": { - "tracks": { - "3250": { - "Name": "Pilot" - } - }, - "Title": "Aquaman" - } - }, - "Name": "Aquaman" - } - }, - "255": { - "tracks": { - "3253": { - "Composer": null, - "Name": "Instant Karma" - }, - "3254": { - "Composer": null, - "Name": "#9 Dream" - }, - "3255": { - "Composer": null, - "Name": "Mother" - }, - "3256": { - "Composer": null, - "Name": "Give Peace a Chance" - }, - "3257": { - "Composer": null, - "Name": "Cold Turkey" - }, - "3258": { - "Composer": null, - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Composer": null, - "Name": "I'm Losing You" - }, - "3260": { - "Composer": null, - "Name": "Gimme Some Truth" - }, - "3261": { - "Composer": null, - "Name": "Oh, My Love" - }, - "3262": { - "Composer": null, - "Name": "Imagine" - }, - "3263": { - "Composer": null, - "Name": "Nobody Told Me" - }, - "3264": { - "Composer": null, - "Name": "Jealous Guy" - }, - "3265": { - "Composer": null, - "Name": "Working Class Hero" - }, - "3266": { - "Composer": null, - "Name": "Power to the People" - }, - "3267": { - "Composer": null, - "Name": "Imagine" - }, - "3268": { - "Composer": null, - "Name": "Beautiful Boy" - }, - "3269": { - "Composer": null, - "Name": "Isolation" - }, - "3270": { - "Composer": null, - "Name": "Watching the Wheels" - }, - "3271": { - "Composer": null, - "Name": "Grow Old With Me" - }, - "3272": { - "Composer": null, - "Name": "Gimme Some Truth" - }, - "3273": { - "Composer": null, - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Composer": null, - "Name": "God" - }, - "3275": { - "Composer": null, - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur", - "artist": { - "ArtistId": 150, - "albums": { - "232": { - "tracks": { - "2926": { - "Name": "Zoo Station" - }, - "2927": { - "Name": "Even Better Than The Real Thing" - }, - "2928": { - "Name": "One" - }, - "2929": { - "Name": "Until The End Of The World" - }, - "2930": { - "Name": "Who's Gonna Ride Your Wild Horses" - }, - "2931": { - "Name": "So Cruel" - }, - "2932": { - "Name": "The Fly" - }, - "2933": { - "Name": "Mysterious Ways" - }, - "2934": { - "Name": "Tryin' To Throw Your Arms Around The World" - }, - "2935": { - "Name": "Ultraviolet (Light My Way)" - }, - "2936": { - "Name": "Acrobat" - }, - "2937": { - "Name": "Love Is Blindness" - } - }, - "Title": "Achtung Baby" - }, - "233": { - "tracks": { - "2938": { - "Name": "Beautiful Day" - }, - "2939": { - "Name": "Stuck In A Moment You Can't Get Out Of" - }, - "2940": { - "Name": "Elevation" - }, - "2941": { - "Name": "Walk On" - }, - "2942": { - "Name": "Kite" - }, - "2943": { - "Name": "In A Little While" - }, - "2944": { - "Name": "Wild Honey" - }, - "2945": { - "Name": "Peace On Earth" - }, - "2946": { - "Name": "When I Look At The World" - }, - "2947": { - "Name": "New York" - }, - "2948": { - "Name": "Grace" - } - }, - "Title": "All That You Can't Leave Behind" - }, - "234": { - "tracks": { - "2949": { - "Name": "The Three Sunrises" - }, - "2950": { - "Name": "Spanish Eyes" - }, - "2951": { - "Name": "Sweetest Thing" - }, - "2952": { - "Name": "Love Comes Tumbling" - }, - "2953": { - "Name": "Bass Trap" - }, - "2954": { - "Name": "Dancing Barefoot" - }, - "2955": { - "Name": "Everlasting Love" - }, - "2956": { - "Name": "Unchained Melody" - }, - "2957": { - "Name": "Walk To The Water" - }, - "2958": { - "Name": "Luminous Times (Hold On To Love)" - }, - "2959": { - "Name": "Hallelujah Here She Comes" - }, - "2960": { - "Name": "Silver And Gold" - }, - "2961": { - "Name": "Endless Deep" - }, - "2962": { - "Name": "A Room At The Heartbreak Hotel" - }, - "2963": { - "Name": "Trash, Trampoline And The Party Girl" - } - }, - "Title": "B-Sides 1980-1990" - }, - "235": { - "tracks": { - "2964": { - "Name": "Vertigo" - }, - "2965": { - "Name": "Miracle Drug" - }, - "2966": { - "Name": "Sometimes You Can't Make It On Your Own" - }, - "2967": { - "Name": "Love And Peace Or Else" - }, - "2968": { - "Name": "City Of Blinding Lights" - }, - "2969": { - "Name": "All Because Of You" - }, - "2970": { - "Name": "A Man And A Woman" - }, - "2971": { - "Name": "Crumbs From Your Table" - }, - "2972": { - "Name": "One Step Closer" - }, - "2973": { - "Name": "Original Of The Species" - }, - "2974": { - "Name": "Yahweh" - } - }, - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "tracks": { - "2975": { - "Name": "Discotheque" - }, - "2976": { - "Name": "Do You Feel Loved" - }, - "2977": { - "Name": "Mofo" - }, - "2978": { - "Name": "If God Will Send His Angels" - }, - "2979": { - "Name": "Staring At The Sun" - }, - "2980": { - "Name": "Last Night On Earth" - }, - "2981": { - "Name": "Gone" - }, - "2982": { - "Name": "Miami" - }, - "2983": { - "Name": "The Playboy Mansion" - }, - "2984": { - "Name": "If You Wear That Velvet Dress" - }, - "2985": { - "Name": "Please" - }, - "2986": { - "Name": "Wake Up Dead Man" - } - }, - "Title": "Pop" - }, - "237": { - "tracks": { - "2987": { - "Name": "Helter Skelter" - }, - "2988": { - "Name": "Van Diemen's Land" - }, - "2989": { - "Name": "Desire" - }, - "2990": { - "Name": "Hawkmoon 269" - }, - "2991": { - "Name": "All Along The Watchtower" - }, - "2992": { - "Name": "I Still Haven't Found What I'm Looking for" - }, - "2993": { - "Name": "Freedom For My People" - }, - "2994": { - "Name": "Silver And Gold" - }, - "2995": { - "Name": "Pride (In The Name Of Love)" - }, - "2996": { - "Name": "Angel Of Harlem" - }, - "2997": { - "Name": "Love Rescue Me" - }, - "2998": { - "Name": "When Love Comes To Town" - }, - "2999": { - "Name": "Heartland" - }, - "3000": { - "Name": "God Part II" - }, - "3001": { - "Name": "The Star Spangled Banner" - }, - "3002": { - "Name": "Bullet The Blue Sky" - }, - "3003": { - "Name": "All I Want Is You" - } - }, - "Title": "Rattle And Hum" - }, - "238": { - "tracks": { - "3004": { - "Name": "Pride (In The Name Of Love)" - }, - "3005": { - "Name": "New Year's Day" - }, - "3006": { - "Name": "With Or Without You" - }, - "3007": { - "Name": "I Still Haven't Found What I'm Looking For" - }, - "3008": { - "Name": "Sunday Bloody Sunday" - }, - "3009": { - "Name": "Bad" - }, - "3010": { - "Name": "Where The Streets Have No Name" - }, - "3011": { - "Name": "I Will Follow" - }, - "3012": { - "Name": "The Unforgettable Fire" - }, - "3013": { - "Name": "Sweetest Thing" - }, - "3014": { - "Name": "Desire" - }, - "3015": { - "Name": "When Love Comes To Town" - }, - "3016": { - "Name": "Angel Of Harlem" - }, - "3017": { - "Name": "All I Want Is You" - } - }, - "Title": "The Best Of 1980-1990" - }, - "239": { - "tracks": { - "3018": { - "Name": "Sunday Bloody Sunday" - }, - "3019": { - "Name": "Seconds" - }, - "3020": { - "Name": "New Year's Day" - }, - "3021": { - "Name": "Like A Song..." - }, - "3022": { - "Name": "Drowning Man" - }, - "3023": { - "Name": "The Refugee" - }, - "3024": { - "Name": "Two Hearts Beat As One" - }, - "3025": { - "Name": "Red Light" - }, - "3026": { - "Name": "Surrender" - }, - "3027": { - "Name": "\"40\"" - } - }, - "Title": "War" - }, - "240": { - "tracks": { - "3028": { - "Name": "Zooropa" - }, - "3029": { - "Name": "Babyface" - }, - "3030": { - "Name": "Numb" - }, - "3031": { - "Name": "Lemon" - }, - "3032": { - "Name": "Stay (Faraway, So Close!)" - }, - "3033": { - "Name": "Daddy's Gonna Pay For Your Crashed Car" - }, - "3034": { - "Name": "Some Days Are Better Than Others" - }, - "3035": { - "Name": "The First Time" - }, - "3036": { - "Name": "Dirty Day" - }, - "3037": { - "Name": "The Wanderer" - } - }, - "Title": "Zooropa" - }, - "255": { - "tracks": { - "3253": { - "Name": "Instant Karma" - }, - "3254": { - "Name": "#9 Dream" - }, - "3255": { - "Name": "Mother" - }, - "3256": { - "Name": "Give Peace a Chance" - }, - "3257": { - "Name": "Cold Turkey" - }, - "3258": { - "Name": "Whatever Gets You Thru the Night" - }, - "3259": { - "Name": "I'm Losing You" - }, - "3260": { - "Name": "Gimme Some Truth" - }, - "3261": { - "Name": "Oh, My Love" - }, - "3262": { - "Name": "Imagine" - }, - "3263": { - "Name": "Nobody Told Me" - }, - "3264": { - "Name": "Jealous Guy" - }, - "3265": { - "Name": "Working Class Hero" - }, - "3266": { - "Name": "Power to the People" - }, - "3267": { - "Name": "Imagine" - }, - "3268": { - "Name": "Beautiful Boy" - }, - "3269": { - "Name": "Isolation" - }, - "3270": { - "Name": "Watching the Wheels" - }, - "3271": { - "Name": "Grow Old With Me" - }, - "3272": { - "Name": "Gimme Some Truth" - }, - "3273": { - "Name": "[Just Like] Starting Over" - }, - "3274": { - "Name": "God" - }, - "3275": { - "Name": "Real Love" - } - }, - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - } - }, - "256": { - "tracks": { - "3276": { - "Composer": null, - "Name": "Sympton of the Universe" - }, - "3277": { - "Composer": null, - "Name": "Snowblind" - }, - "3278": { - "Composer": null, - "Name": "Black Sabbath" - }, - "3279": { - "Composer": null, - "Name": "Fairies Wear Boots" - }, - "3280": { - "Composer": null, - "Name": "War Pigs" - }, - "3281": { - "Composer": null, - "Name": "The Wizard" - }, - "3282": { - "Composer": null, - "Name": "N.I.B." - }, - "3283": { - "Composer": null, - "Name": "Sweet Leaf" - }, - "3284": { - "Composer": null, - "Name": "Never Say Die" - }, - "3285": { - "Composer": null, - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Composer": null, - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Composer": null, - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil", - "artist": { - "ArtistId": 114, - "albums": { - "170": { - "tracks": { - "2093": { - "Name": "Bark at the Moon" - } - }, - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "tracks": { - "2094": { - "Name": "I Don't Know" - }, - "2095": { - "Name": "Crazy Train" - } - }, - "Title": "Blizzard of Ozz" - }, - "172": { - "tracks": { - "2096": { - "Name": "Flying High Again" - } - }, - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "tracks": { - "2097": { - "Name": "Mama, I'm Coming Home" - }, - "2098": { - "Name": "No More Tears" - } - }, - "Title": "No More Tears (Remastered)" - }, - "174": { - "tracks": { - "2099": { - "Name": "I Don't Know" - }, - "2100": { - "Name": "Crazy Train" - }, - "2101": { - "Name": "Believer" - }, - "2102": { - "Name": "Mr. Crowley" - }, - "2103": { - "Name": "Flying High Again" - }, - "2104": { - "Name": "Relvelation (Mother Earth)" - }, - "2105": { - "Name": "Steal Away (The Night)" - }, - "2106": { - "Name": "Suicide Solution (With Guitar Solo)" - }, - "2107": { - "Name": "Iron Man" - }, - "2108": { - "Name": "Children Of The Grave" - }, - "2109": { - "Name": "Paranoid" - }, - "2110": { - "Name": "Goodbye To Romance" - }, - "2111": { - "Name": "No Bone Movies" - }, - "2112": { - "Name": "Dee" - } - }, - "Title": "Tribute" - }, - "256": { - "tracks": { - "3276": { - "Name": "Sympton of the Universe" - }, - "3277": { - "Name": "Snowblind" - }, - "3278": { - "Name": "Black Sabbath" - }, - "3279": { - "Name": "Fairies Wear Boots" - }, - "3280": { - "Name": "War Pigs" - }, - "3281": { - "Name": "The Wizard" - }, - "3282": { - "Name": "N.I.B." - }, - "3283": { - "Name": "Sweet Leaf" - }, - "3284": { - "Name": "Never Say Die" - }, - "3285": { - "Name": "Sabbath, Bloody Sabbath" - }, - "3286": { - "Name": "Iron Man/Children of the Grave" - }, - "3287": { - "Name": "Paranoid" - } - }, - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - } - }, - "257": { - "tracks": { - "3288": { - "Composer": null, - "Name": "Rock You Like a Hurricane" - }, - "3289": { - "Composer": null, - "Name": "No One Like You" - }, - "3290": { - "Composer": null, - "Name": "The Zoo" - }, - "3291": { - "Composer": null, - "Name": "Loving You Sunday Morning" - }, - "3292": { - "Composer": null, - "Name": "Still Loving You" - }, - "3293": { - "Composer": null, - "Name": "Big City Nights" - }, - "3294": { - "Composer": null, - "Name": "Believe in Love" - }, - "3295": { - "Composer": null, - "Name": "Rhythm of Love" - }, - "3296": { - "Composer": null, - "Name": "I Can't Explain" - }, - "3297": { - "Composer": null, - "Name": "Tease Me Please Me" - }, - "3298": { - "Composer": null, - "Name": "Wind of Change" - }, - "3299": { - "Composer": null, - "Name": "Send Me an Angel" - } - }, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions", - "artist": { - "ArtistId": 179, - "albums": { - "257": { - "tracks": { - "3288": { - "Name": "Rock You Like a Hurricane" - }, - "3289": { - "Name": "No One Like You" - }, - "3290": { - "Name": "The Zoo" - }, - "3291": { - "Name": "Loving You Sunday Morning" - }, - "3292": { - "Name": "Still Loving You" - }, - "3293": { - "Name": "Big City Nights" - }, - "3294": { - "Name": "Believe in Love" - }, - "3295": { - "Name": "Rhythm of Love" - }, - "3296": { - "Name": "I Can't Explain" - }, - "3297": { - "Name": "Tease Me Please Me" - }, - "3298": { - "Name": "Wind of Change" - }, - "3299": { - "Name": "Send Me an Angel" - } - }, - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - } - }, - "Name": "Scorpions" - } - }, - "258": { - "tracks": { - "3300": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Jump Around" - }, - "3301": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Salutations" - }, - "3302": { - "Composer": "E. Schrody/L. Freese/L. Muggerud", - "Name": "Put Your Head Out" - }, - "3303": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Top O' The Morning To Ya" - }, - "3304": { - "Composer": "L. Muggerud", - "Name": "Commercial 1" - }, - "3305": { - "Composer": "E. Schrody/J. Vasquez/L. Dimant", - "Name": "House And The Rising Sun" - }, - "3306": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Shamrocks And Shenanigans" - }, - "3307": { - "Composer": "E. Schrody/L. Dimant", - "Name": "House Of Pain Anthem" - }, - "3308": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Danny Boy, Danny Boy" - }, - "3309": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Guess Who's Back" - }, - "3310": { - "Composer": "L. Muggerud", - "Name": "Commercial 2" - }, - "3311": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Put On Your Shit Kickers" - }, - "3312": { - "Composer": "E. Schrody/L. Muggerud/R. Medrano", - "Name": "Come And Get Some Of This" - }, - "3313": { - "Composer": "E. Schrody/R. Medrano", - "Name": "Life Goes On" - }, - "3314": { - "Composer": "E. Schrody/L. Dimant/L. Muggerud", - "Name": "One For The Road" - }, - "3315": { - "Composer": "E. Schrody/R. Medrano", - "Name": "Feel It" - }, - "3316": { - "Composer": "E. Schrody/L. Dimant", - "Name": "All My Love" - }, - "3317": { - "Composer": "E. Schrody/L. Muggerud", - "Name": "Jump Around (Pete Rock Remix)" - }, - "3318": { - "Composer": "E. Schrody/L. Dimant", - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)" - } - }, - "Title": "House of Pain", - "artist": { - "ArtistId": 180, - "albums": { - "258": { - "tracks": { - "3300": { - "Name": "Jump Around" - }, - "3301": { - "Name": "Salutations" - }, - "3302": { - "Name": "Put Your Head Out" - }, - "3303": { - "Name": "Top O' The Morning To Ya" - }, - "3304": { - "Name": "Commercial 1" - }, - "3305": { - "Name": "House And The Rising Sun" - }, - "3306": { - "Name": "Shamrocks And Shenanigans" - }, - "3307": { - "Name": "House Of Pain Anthem" - }, - "3308": { - "Name": "Danny Boy, Danny Boy" - }, - "3309": { - "Name": "Guess Who's Back" - }, - "3310": { - "Name": "Commercial 2" - }, - "3311": { - "Name": "Put On Your Shit Kickers" - }, - "3312": { - "Name": "Come And Get Some Of This" - }, - "3313": { - "Name": "Life Goes On" - }, - "3314": { - "Name": "One For The Road" - }, - "3315": { - "Name": "Feel It" - }, - "3316": { - "Name": "All My Love" - }, - "3317": { - "Name": "Jump Around (Pete Rock Remix)" - }, - "3318": { - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)" - } - }, - "Title": "House of Pain" - } - }, - "Name": "House Of Pain" - } - }, - "259": { - "tracks": { - "3319": { - "Composer": null, - "Name": "Instinto Colectivo" - }, - "3320": { - "Composer": null, - "Name": "Chapa o Coco" - }, - "3321": { - "Composer": null, - "Name": "Prostituta" - }, - "3322": { - "Composer": null, - "Name": "Eu So Queria Sumir" - }, - "3323": { - "Composer": null, - "Name": "Tres Reis" - }, - "3324": { - "Composer": null, - "Name": "Um Lugar ao Sol" - }, - "3325": { - "Composer": null, - "Name": "Batalha Naval" - }, - "3326": { - "Composer": null, - "Name": "Todo o Carnaval tem seu Fim" - }, - "3327": { - "Composer": null, - "Name": "O Misterio do Samba" - }, - "3328": { - "Composer": null, - "Name": "Armadura" - }, - "3329": { - "Composer": null, - "Name": "Na Ladeira" - }, - "3330": { - "Composer": null, - "Name": "Carimbo" - }, - "3331": { - "Composer": null, - "Name": "Catimbo" - }, - "3332": { - "Composer": null, - "Name": "Funk de Bamba" - }, - "3333": { - "Composer": null, - "Name": "Chega no Suingue" - }, - "3334": { - "Composer": null, - "Name": "Mun-Ra" - }, - "3335": { - "Composer": null, - "Name": "Freestyle Love" - } - }, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro", - "artist": { - "ArtistId": 36, - "albums": { - "259": { - "tracks": { - "3319": { - "Name": "Instinto Colectivo" - }, - "3320": { - "Name": "Chapa o Coco" - }, - "3321": { - "Name": "Prostituta" - }, - "3322": { - "Name": "Eu So Queria Sumir" - }, - "3323": { - "Name": "Tres Reis" - }, - "3324": { - "Name": "Um Lugar ao Sol" - }, - "3325": { - "Name": "Batalha Naval" - }, - "3326": { - "Name": "Todo o Carnaval tem seu Fim" - }, - "3327": { - "Name": "O Misterio do Samba" - }, - "3328": { - "Name": "Armadura" - }, - "3329": { - "Name": "Na Ladeira" - }, - "3330": { - "Name": "Carimbo" - }, - "3331": { - "Name": "Catimbo" - }, - "3332": { - "Name": "Funk de Bamba" - }, - "3333": { - "Name": "Chega no Suingue" - }, - "3334": { - "Name": "Mun-Ra" - }, - "3335": { - "Name": "Freestyle Love" - } - }, - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - } - }, - "Name": "O Rappa" - } - }, - "260": { - "tracks": { - "3336": { - "Composer": null, - "Name": "War Pigs" - } - }, - "Title": "Cake: B-Sides and Rarities", - "artist": { - "ArtistId": 196, - "albums": { - "260": { - "tracks": { - "3336": { - "Name": "War Pigs" - } - }, - "Title": "Cake: B-Sides and Rarities" - } - }, - "Name": "Cake" - } - }, - "261": { - "tracks": { - "3337": { - "Composer": null, - "Name": "Past, Present, and Future" - }, - "3338": { - "Composer": null, - "Name": "The Beginning of the End" - }, - "3339": { - "Composer": null, - "Name": "LOST Season 4 Trailer" - }, - "3340": { - "Composer": null, - "Name": "LOST In 8:15" - }, - "3341": { - "Composer": null, - "Name": "Confirmed Dead" - }, - "3342": { - "Composer": null, - "Name": "The Economist" - }, - "3343": { - "Composer": null, - "Name": "Eggtown" - }, - "3344": { - "Composer": null, - "Name": "The Constant" - }, - "3345": { - "Composer": null, - "Name": "The Other Woman" - }, - "3346": { - "Composer": null, - "Name": "Ji Yeon" - }, - "3347": { - "Composer": null, - "Name": "Meet Kevin Johnson" - }, - "3348": { - "Composer": null, - "Name": "The Shape of Things to Come" - }, - "3360": { - "Composer": null, - "Name": "Something Nice Back Home" - }, - "3361": { - "Composer": null, - "Name": "Cabin Fever" - }, - "3362": { - "Composer": null, - "Name": "There's No Place Like Home, Pt. 1" - }, - "3363": { - "Composer": null, - "Name": "There's No Place Like Home, Pt. 2" - }, - "3364": { - "Composer": null, - "Name": "There's No Place Like Home, Pt. 3" - } - }, - "Title": "LOST, Season 4", - "artist": { - "ArtistId": 149, - "albums": { - "229": { - "tracks": { - "2857": { - "Name": "A Tale of Two Cities" - }, - "2862": { - "Name": "The Glass Ballerina" - }, - "2863": { - "Name": "Further Instructions" - }, - "2866": { - "Name": "Every Man for Himself" - }, - "2870": { - "Name": "The Cost of Living" - }, - "2874": { - "Name": "I Do" - }, - "2875": { - "Name": "Not In Portland" - }, - "2876": { - "Name": "Not In Portland" - }, - "2881": { - "Name": "Flashes Before Your Eyes" - }, - "2882": { - "Name": "Lost Survival Guide" - }, - "2886": { - "Name": "Stranger In a Strange Land" - }, - "2890": { - "Name": "Tricia Tanaka Is Dead" - }, - "2891": { - "Name": "Enter 77" - }, - "2895": { - "Name": "Par Avion" - }, - "2899": { - "Name": "The Man from Tallahassee" - }, - "2903": { - "Name": "Left Behind" - }, - "2908": { - "Name": "One of Us" - }, - "2909": { - "Name": "Catch-22" - }, - "2912": { - "Name": "D.O.C." - }, - "3165": { - "Name": "The Brig" - }, - "3169": { - "Name": "The Man Behind the Curtain" - }, - "3170": { - "Name": "Greatest Hits" - }, - "3224": { - "Name": "Through a Looking Glass" - }, - "3251": { - "Name": "Through the Looking Glass, Pt. 2" - }, - "3252": { - "Name": "Through the Looking Glass, Pt. 1" - } - }, - "Title": "Lost, Season 3" - }, - "230": { - "tracks": { - "2858": { - "Name": "Lost (Pilot, Part 1) [Premiere]" - }, - "2861": { - "Name": "Lost (Pilot, Part 2)" - }, - "2865": { - "Name": "Tabula Rasa" - }, - "2868": { - "Name": "Walkabout" - }, - "2871": { - "Name": "White Rabbit" - }, - "2873": { - "Name": "House of the Rising Sun" - }, - "2877": { - "Name": "The Moth" - }, - "2880": { - "Name": "Confidence Man" - }, - "2883": { - "Name": "Solitary" - }, - "2885": { - "Name": "Raised By Another" - }, - "2888": { - "Name": "All the Best Cowboys Have Daddy Issues" - }, - "2893": { - "Name": "Whatever the Case May Be" - }, - "2894": { - "Name": "Hearts and Minds" - }, - "2898": { - "Name": "Special" - }, - "2901": { - "Name": "Homecoming" - }, - "2904": { - "Name": "Outlaws" - }, - "2906": { - "Name": "...In Translation" - }, - "2911": { - "Name": "Numbers" - }, - "2913": { - "Name": "Deus Ex Machina" - }, - "2915": { - "Name": "Do No Harm" - }, - "2917": { - "Name": "The Greater Good" - }, - "2919": { - "Name": "Born to Run" - }, - "2921": { - "Name": "Exodus (Part 1)" - }, - "2923": { - "Name": "Exodus (Part 2) [Season Finale]" - }, - "2925": { - "Name": "Exodus (Part 3) [Season Finale]" - } - }, - "Title": "Lost, Season 1" - }, - "231": { - "tracks": { - "2859": { - "Name": "Man of Science, Man of Faith (Premiere)" - }, - "2860": { - "Name": "Adrift" - }, - "2864": { - "Name": "Orientation" - }, - "2867": { - "Name": "Everybody Hates Hugo" - }, - "2869": { - "Name": "...And Found" - }, - "2872": { - "Name": "Abandoned" - }, - "2878": { - "Name": "The Other 48 Days" - }, - "2879": { - "Name": "Collision" - }, - "2884": { - "Name": "What Kate Did" - }, - "2887": { - "Name": "The 23rd Psalm" - }, - "2889": { - "Name": "The Hunting Party" - }, - "2892": { - "Name": "Fire + Water" - }, - "2896": { - "Name": "The Long Con" - }, - "2897": { - "Name": "One of Them" - }, - "2902": { - "Name": "Maternity Leave" - }, - "2905": { - "Name": "The Whole Truth" - }, - "2907": { - "Name": "Lockdown" - }, - "2910": { - "Name": "Dave" - }, - "2914": { - "Name": "S.O.S." - }, - "2916": { - "Name": "Two for the Road" - }, - "2918": { - "Name": "\"?\"" - }, - "2920": { - "Name": "Three Minutes" - }, - "2922": { - "Name": "Live Together, Die Alone, Pt. 1" - }, - "2924": { - "Name": "Live Together, Die Alone, Pt. 2" - } - }, - "Title": "Lost, Season 2" - }, - "261": { - "tracks": { - "3337": { - "Name": "Past, Present, and Future" - }, - "3338": { - "Name": "The Beginning of the End" - }, - "3339": { - "Name": "LOST Season 4 Trailer" - }, - "3340": { - "Name": "LOST In 8:15" - }, - "3341": { - "Name": "Confirmed Dead" - }, - "3342": { - "Name": "The Economist" - }, - "3343": { - "Name": "Eggtown" - }, - "3344": { - "Name": "The Constant" - }, - "3345": { - "Name": "The Other Woman" - }, - "3346": { - "Name": "Ji Yeon" - }, - "3347": { - "Name": "Meet Kevin Johnson" - }, - "3348": { - "Name": "The Shape of Things to Come" - }, - "3360": { - "Name": "Something Nice Back Home" - }, - "3361": { - "Name": "Cabin Fever" - }, - "3362": { - "Name": "There's No Place Like Home, Pt. 1" - }, - "3363": { - "Name": "There's No Place Like Home, Pt. 2" - }, - "3364": { - "Name": "There's No Place Like Home, Pt. 3" - } - }, - "Title": "LOST, Season 4" - } - }, - "Name": "Lost" - } - }, - "262": { - "tracks": { - "3349": { - "Composer": "Luca Gusella", - "Name": "Amanda" - }, - "3350": { - "Composer": "Andrea Dulbecco", - "Name": "Despertar" - } - }, - "Title": "Quiet Songs", - "artist": { - "ArtistId": 197, - "albums": { - "262": { - "tracks": { - "3349": { - "Name": "Amanda" - }, - "3350": { - "Name": "Despertar" - } - }, - "Title": "Quiet Songs" - } - }, - "Name": "Aisha Duo" - } - }, - "264": { - "tracks": { - "3352": { - "Composer": "Karsh Kale/Vishal Vaid", - "Name": "Distance" - }, - "3358": { - "Composer": "Karsh Kale", - "Name": "One Step Beyond" - } - }, - "Title": "Realize", - "artist": { - "ArtistId": 199, - "albums": { - "264": { - "tracks": { - "3352": { - "Name": "Distance" - }, - "3358": { - "Name": "One Step Beyond" - } - }, - "Title": "Realize" - } - }, - "Name": "Karsh Kale" - } - }, - "265": { - "tracks": { - "3353": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Name": "I Guess You're Right" - }, - "3355": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "Name": "Love Comes" - } - }, - "Title": "Every Kind of Light", - "artist": { - "ArtistId": 200, - "albums": { - "265": { - "tracks": { - "3353": { - "Name": "I Guess You're Right" - }, - "3355": { - "Name": "Love Comes" - } - }, - "Title": "Every Kind of Light" - } - }, - "Name": "The Posies" - } - }, - "266": { - "tracks": { - "3356": { - "Composer": "Luciana Souza", - "Name": "Muita Bobeira" - } - }, - "Title": "Duos II", - "artist": { - "ArtistId": 201, - "albums": { - "266": { - "tracks": { - "3356": { - "Name": "Muita Bobeira" - } - }, - "Title": "Duos II" - } - }, - "Name": "Luciana Souza/Romero Lubambo" - } - }, - "267": { - "tracks": { - "3357": { - "Composer": "Aaron Goldberg", - "Name": "OAM's Blues" - } - }, - "Title": "Worlds", - "artist": { - "ArtistId": 202, - "albums": { - "267": { - "tracks": { - "3357": { - "Name": "OAM's Blues" - } - }, - "Title": "Worlds" - } - }, - "Name": "Aaron Goldberg" - } - }, - "268": { - "tracks": { - "3359": { - "Composer": "Ludwig van Beethoven", - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace" - } - }, - "Title": "The Best of Beethoven", - "artist": { - "ArtistId": 203, - "albums": { - "268": { - "tracks": { - "3359": { - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace" - } - }, - "Title": "The Best of Beethoven" - } - }, - "Name": "Nicolaus Esterhazy Sinfonia" - } - }, - "269": { - "tracks": { - "3365": { - "Composer": null, - "Name": "Say Hello 2 Heaven" - }, - "3366": { - "Composer": null, - "Name": "Reach Down" - }, - "3367": { - "Composer": null, - "Name": "Hunger Strike" - }, - "3368": { - "Composer": null, - "Name": "Pushin Forward Back" - }, - "3369": { - "Composer": null, - "Name": "Call Me a Dog" - }, - "3370": { - "Composer": null, - "Name": "Times of Trouble" - }, - "3371": { - "Composer": null, - "Name": "Wooden Jesus" - }, - "3372": { - "Composer": null, - "Name": "Your Savior" - }, - "3373": { - "Composer": null, - "Name": "Four Walled World" - }, - "3374": { - "Composer": null, - "Name": "All Night Thing" - } - }, - "Title": "Temple of the Dog", - "artist": { - "ArtistId": 204, - "albums": { - "269": { - "tracks": { - "3365": { - "Name": "Say Hello 2 Heaven" - }, - "3366": { - "Name": "Reach Down" - }, - "3367": { - "Name": "Hunger Strike" - }, - "3368": { - "Name": "Pushin Forward Back" - }, - "3369": { - "Name": "Call Me a Dog" - }, - "3370": { - "Name": "Times of Trouble" - }, - "3371": { - "Name": "Wooden Jesus" - }, - "3372": { - "Name": "Your Savior" - }, - "3373": { - "Name": "Four Walled World" - }, - "3374": { - "Name": "All Night Thing" - } - }, - "Title": "Temple of the Dog" - } - }, - "Name": "Temple of the Dog" - } - }, - "270": { - "tracks": { - "3375": { - "Composer": "Chris Cornell", - "Name": "No Such Thing" - }, - "3376": { - "Composer": "Chris Cornell", - "Name": "Poison Eye" - }, - "3377": { - "Composer": "Chris Cornell", - "Name": "Arms Around Your Love" - }, - "3378": { - "Composer": "Chris Cornell", - "Name": "Safe and Sound" - }, - "3379": { - "Composer": "Chris Cornell", - "Name": "She'll Never Be Your Man" - }, - "3380": { - "Composer": "Chris Cornell", - "Name": "Ghosts" - }, - "3381": { - "Composer": "Chris Cornell", - "Name": "Killing Birds" - }, - "3382": { - "Composer": "Michael Jackson", - "Name": "Billie Jean" - }, - "3383": { - "Composer": "Chris Cornell", - "Name": "Scar On the Sky" - }, - "3384": { - "Composer": "Chris Cornell", - "Name": "Your Soul Today" - }, - "3385": { - "Composer": "Chris Cornell", - "Name": "Finally Forever" - }, - "3386": { - "Composer": "Chris Cornell", - "Name": "Silence the Voices" - }, - "3387": { - "Composer": "Chris Cornell", - "Name": "Disappearing Act" - }, - "3388": { - "Composer": "Chris Cornell", - "Name": "You Know My Name" - } - }, - "Title": "Carry On", - "artist": { - "ArtistId": 205, - "albums": { - "270": { - "tracks": { - "3375": { - "Name": "No Such Thing" - }, - "3376": { - "Name": "Poison Eye" - }, - "3377": { - "Name": "Arms Around Your Love" - }, - "3378": { - "Name": "Safe and Sound" - }, - "3379": { - "Name": "She'll Never Be Your Man" - }, - "3380": { - "Name": "Ghosts" - }, - "3381": { - "Name": "Killing Birds" - }, - "3382": { - "Name": "Billie Jean" - }, - "3383": { - "Name": "Scar On the Sky" - }, - "3384": { - "Name": "Your Soul Today" - }, - "3385": { - "Name": "Finally Forever" - }, - "3386": { - "Name": "Silence the Voices" - }, - "3387": { - "Name": "Disappearing Act" - }, - "3388": { - "Name": "You Know My Name" - } - }, - "Title": "Carry On" - } - }, - "Name": "Chris Cornell" - } - }, - "271": { - "tracks": { - "3389": { - "Composer": null, - "Name": "Revelations" - }, - "3390": { - "Composer": null, - "Name": "One and the Same" - }, - "3391": { - "Composer": null, - "Name": "Sound of a Gun" - }, - "3392": { - "Composer": null, - "Name": "Until We Fall" - }, - "3393": { - "Composer": null, - "Name": "Original Fire" - }, - "3394": { - "Composer": null, - "Name": "Broken City" - }, - "3395": { - "Composer": null, - "Name": "Somedays" - }, - "3396": { - "Composer": null, - "Name": "Shape of Things to Come" - }, - "3397": { - "Composer": null, - "Name": "Jewel of the Summertime" - }, - "3398": { - "Composer": null, - "Name": "Wide Awake" - }, - "3399": { - "Composer": null, - "Name": "Nothing Left to Say But Goodbye" - }, - "3400": { - "Composer": null, - "Name": "Moth" - }, - "3401": { - "Composer": null, - "Name": "Show Me How to Live (Live at the Quart Festival)" - }, - "3402": { - "Composer": null, - "Name": "Band Members Discuss Tracks from \"Revelations\"" - } - }, - "Title": "Revelations", - "artist": { - "ArtistId": 8, - "albums": { - "10": { - "tracks": { - "85": { - "Name": "Cochise" - }, - "86": { - "Name": "Show Me How to Live" - }, - "87": { - "Name": "Gasoline" - }, - "88": { - "Name": "What You Are" - }, - "89": { - "Name": "Like a Stone" - }, - "90": { - "Name": "Set It Off" - }, - "91": { - "Name": "Shadow on the Sun" - }, - "92": { - "Name": "I am the Highway" - }, - "93": { - "Name": "Exploder" - }, - "94": { - "Name": "Hypnotize" - }, - "95": { - "Name": "Bring'em Back Alive" - }, - "96": { - "Name": "Light My Way" - }, - "97": { - "Name": "Getaway Car" - }, - "98": { - "Name": "The Last Remaining Light" - } - }, - "Title": "Audioslave" - }, - "11": { - "tracks": { - "99": { - "Name": "Your Time Has Come" - }, - "100": { - "Name": "Out Of Exile" - }, - "101": { - "Name": "Be Yourself" - }, - "102": { - "Name": "Doesn't Remind Me" - }, - "103": { - "Name": "Drown Me Slowly" - }, - "104": { - "Name": "Heaven's Dead" - }, - "105": { - "Name": "The Worm" - }, - "106": { - "Name": "Man Or Animal" - }, - "107": { - "Name": "Yesterday To Tomorrow" - }, - "108": { - "Name": "Dandelion" - }, - "109": { - "Name": "#1 Zero" - }, - "110": { - "Name": "The Curse" - } - }, - "Title": "Out Of Exile" - }, - "271": { - "tracks": { - "3389": { - "Name": "Revelations" - }, - "3390": { - "Name": "One and the Same" - }, - "3391": { - "Name": "Sound of a Gun" - }, - "3392": { - "Name": "Until We Fall" - }, - "3393": { - "Name": "Original Fire" - }, - "3394": { - "Name": "Broken City" - }, - "3395": { - "Name": "Somedays" - }, - "3396": { - "Name": "Shape of Things to Come" - }, - "3397": { - "Name": "Jewel of the Summertime" - }, - "3398": { - "Name": "Wide Awake" - }, - "3399": { - "Name": "Nothing Left to Say But Goodbye" - }, - "3400": { - "Name": "Moth" - }, - "3401": { - "Name": "Show Me How to Live (Live at the Quart Festival)" - }, - "3402": { - "Name": "Band Members Discuss Tracks from \"Revelations\"" - } - }, - "Title": "Revelations" - } - }, - "Name": "Audioslave" - } - }, - "272": { - "tracks": { - "3403": { - "Composer": "Anonymous", - "Name": "Intoitus: Adorate Deum" - } - }, - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass", - "artist": { - "ArtistId": 206, - "albums": { - "272": { - "tracks": { - "3403": { - "Name": "Intoitus: Adorate Deum" - } - }, - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass" - } - }, - "Name": "Alberto Turco & Nova Schola Gregoriana" - } - }, - "273": { - "tracks": { - "3404": { - "Composer": "Gregorio Allegri", - "Name": "Miserere mei, Deus" - } - }, - "Title": "Allegri: Miserere", - "artist": { - "ArtistId": 207, - "albums": { - "273": { - "tracks": { - "3404": { - "Name": "Miserere mei, Deus" - } - }, - "Title": "Allegri: Miserere" - } - }, - "Name": "Richard Marlow & The Choir of Trinity College, Cambridge" - } - }, - "274": { - "tracks": { - "3405": { - "Composer": "Johann Pachelbel", - "Name": "Canon and Gigue in D Major: I. Canon" - } - }, - "Title": "Pachelbel: Canon & Gigue", - "artist": { - "ArtistId": 208, - "albums": { - "274": { - "tracks": { - "3405": { - "Name": "Canon and Gigue in D Major: I. Canon" - } - }, - "Title": "Pachelbel: Canon & Gigue" - }, - "315": { - "tracks": {}, - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)" - } - }, - "Name": "English Concert & Trevor Pinnock" - } - }, - "275": { - "tracks": { - "3406": { - "Composer": "Antonio Vivaldi", - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro" - } - }, - "Title": "Vivaldi: The Four Seasons", - "artist": { - "ArtistId": 209, - "albums": { - "275": { - "tracks": { - "3406": { - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro" - } - }, - "Title": "Vivaldi: The Four Seasons" - } - }, - "Name": "Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker" - } - }, - "276": { - "tracks": { - "3407": { - "Composer": "Johann Sebastian Bach", - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace" - } - }, - "Title": "Bach: Violin Concertos", - "artist": { - "ArtistId": 210, - "albums": { - "276": { - "tracks": { - "3407": { - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace" - } - }, - "Title": "Bach: Violin Concertos" - } - }, - "Name": "Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer" - } - }, - "277": { - "tracks": {}, - "Title": "Bach: Goldberg Variations", - "artist": { - "ArtistId": 211, - "albums": { - "277": { - "tracks": {}, - "Title": "Bach: Goldberg Variations" - } - }, - "Name": "Wilhelm Kempff" - } - }, - "278": { - "tracks": {}, - "Title": "Bach: The Cello Suites", - "artist": { - "ArtistId": 212, - "albums": { - "278": { - "tracks": {}, - "Title": "Bach: The Cello Suites" - } - }, - "Name": "Yo-Yo Ma" - } - }, - "279": { - "tracks": { - "3410": { - "Composer": "George Frideric Handel", - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound" - } - }, - "Title": "Handel: The Messiah (Highlights)", - "artist": { - "ArtistId": 213, - "albums": { - "279": { - "tracks": { - "3410": { - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound" - } - }, - "Title": "Handel: The Messiah (Highlights)" - } - }, - "Name": "Scholars Baroque Ensemble" - } - }, - "280": { - "tracks": { - "3411": { - "Composer": "George Frideric Handel", - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba" - }, - "3438": { - "Composer": "Ralph Vaughan Williams", - "Name": "Fantasia On Greensleeves" - } - }, - "Title": "The World of Classical Favourites", - "artist": { - "ArtistId": 214, - "albums": { - "280": { - "tracks": { - "3411": { - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba" - }, - "3438": { - "Name": "Fantasia On Greensleeves" - } - }, - "Title": "The World of Classical Favourites" - } - }, - "Name": "Academy of St. Martin in the Fields & Sir Neville Marriner" - } - }, - "281": { - "tracks": { - "3412": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro" - } - }, - "Title": "Sir Neville Marriner: A Celebration", - "artist": { - "ArtistId": 215, - "albums": { - "281": { - "tracks": { - "3412": { - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro" - } - }, - "Title": "Sir Neville Marriner: A Celebration" - } - }, - "Name": "Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner" - } - }, - "282": { - "tracks": { - "3413": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio" - } - }, - "Title": "Mozart: Wind Concertos", - "artist": { - "ArtistId": 216, - "albums": { - "282": { - "tracks": { - "3413": { - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio" - } - }, - "Title": "Mozart: Wind Concertos" - } - }, - "Name": "Berliner Philharmoniker, Claudio Abbado & Sabine Meyer" - } - }, - "283": { - "tracks": { - "3414": { - "Composer": "Franz Joseph Haydn", - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso" - } - }, - "Title": "Haydn: Symphonies 99 - 104", - "artist": { - "ArtistId": 217, - "albums": { - "283": { - "tracks": { - "3414": { - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso" - } - }, - "Title": "Haydn: Symphonies 99 - 104" - } - }, - "Name": "Royal Philharmonic Orchestra & Sir Thomas Beecham" - } - }, - "285": { - "tracks": { - "3416": { - "Composer": "Franz Schubert", - "Name": "Ave Maria" - } - }, - "Title": "A Soprano Inspired", - "artist": { - "ArtistId": 219, - "albums": { - "285": { - "tracks": { - "3416": { - "Name": "Ave Maria" - } - }, - "Title": "A Soprano Inspired" - } - }, - "Name": "Britten Sinfonia, Ivor Bolton & Lesley Garrett" - } - }, - "286": { - "tracks": { - "3417": { - "Composer": "Giuseppe Verdi", - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"" - } - }, - "Title": "Great Opera Choruses", - "artist": { - "ArtistId": 220, - "albums": { - "286": { - "tracks": { - "3417": { - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"" - } - }, - "Title": "Great Opera Choruses" - } - }, - "Name": "Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti" - } - }, - "287": { - "tracks": {}, - "Title": "Wagner: Favourite Overtures", - "artist": { - "ArtistId": 221, - "albums": { - "287": { - "tracks": {}, - "Title": "Wagner: Favourite Overtures" - } - }, - "Name": "Sir Georg Solti & Wiener Philharmoniker" - } - }, - "289": { - "tracks": { - "3420": { - "Composer": "Peter Ilyich Tchaikovsky", - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy" - } - }, - "Title": "Tchaikovsky: The Nutcracker", - "artist": { - "ArtistId": 223, - "albums": { - "289": { - "tracks": { - "3420": { - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy" - } - }, - "Title": "Tchaikovsky: The Nutcracker" - } - }, - "Name": "London Symphony Orchestra & Sir Charles Mackerras" - } - }, - "290": { - "tracks": { - "3421": { - "Composer": "Edward Elgar", - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"" - } - }, - "Title": "The Last Night of the Proms", - "artist": { - "ArtistId": 224, - "albums": { - "290": { - "tracks": { - "3421": { - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"" - } - }, - "Title": "The Last Night of the Proms" - } - }, - "Name": "Barry Wordsworth & BBC Concert Orchestra" - } - }, - "291": { - "tracks": {}, - "Title": "Puccini: Madama Butterfly - Highlights", - "artist": { - "ArtistId": 225, - "albums": { - "291": { - "tracks": {}, - "Title": "Puccini: Madama Butterfly - Highlights" - } - }, - "Name": "Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker" - } - }, - "292": { - "tracks": { - "3423": { - "Composer": "Gustav Holst", - "Name": "Jupiter, the Bringer of Jollity" - } - }, - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies", - "artist": { - "ArtistId": 226, - "albums": { - "292": { - "tracks": { - "3423": { - "Name": "Jupiter, the Bringer of Jollity" - } - }, - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies" - }, - "311": { - "tracks": { - "3445": { - "Name": "On the Beautiful Blue Danube" - } - }, - "Title": "Strauss: Waltzes" - }, - "343": { - "tracks": { - "3499": { - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia" - } - }, - "Title": "Respighi:Pines of Rome" - } - }, - "Name": "Eugene Ormandy" - } - }, - "293": { - "tracks": { - "3424": { - "Composer": "Giacomo Puccini", - "Name": "Turandot, Act III, Nessun dorma!" - } - }, - "Title": "Pavarotti's Opera Made Easy", - "artist": { - "ArtistId": 227, - "albums": { - "293": { - "tracks": { - "3424": { - "Name": "Turandot, Act III, Nessun dorma!" - } - }, - "Title": "Pavarotti's Opera Made Easy" - } - }, - "Name": "Luciano Pavarotti" - } - }, - "294": { - "tracks": { - "3425": { - "Composer": "Samuel Barber", - "Name": "Adagio for Strings from the String Quartet, Op. 11" - } - }, - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings", - "artist": { - "ArtistId": 228, - "albums": { - "294": { - "tracks": { - "3425": { - "Name": "Adagio for Strings from the String Quartet, Op. 11" - } - }, - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings" - } - }, - "Name": "Leonard Bernstein & New York Philharmonic" - } - }, - "295": { - "tracks": { - "3426": { - "Composer": "Carl Orff", - "Name": "Carmina Burana: O Fortuna" - } - }, - "Title": "Carmina Burana", - "artist": { - "ArtistId": 229, - "albums": { - "295": { - "tracks": { - "3426": { - "Name": "Carmina Burana: O Fortuna" - } - }, - "Title": "Carmina Burana" - } - }, - "Name": "Boston Symphony Orchestra & Seiji Ozawa" - } - }, - "296": { - "tracks": { - "3427": { - "Composer": "Aaron Copland", - "Name": "Fanfare for the Common Man" - } - }, - "Title": "A Copland Celebration, Vol. I", - "artist": { - "ArtistId": 230, - "albums": { - "296": { - "tracks": { - "3427": { - "Name": "Fanfare for the Common Man" - } - }, - "Title": "A Copland Celebration, Vol. I" - } - }, - "Name": "Aaron Copland & London Symphony Orchestra" - } - }, - "297": { - "tracks": { - "3430": { - "Composer": "Johann Sebastian Bach", - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata" - } - }, - "Title": "Bach: Toccata & Fugue in D Minor", - "artist": { - "ArtistId": 231, - "albums": { - "297": { - "tracks": { - "3430": { - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata" - } - }, - "Title": "Bach: Toccata & Fugue in D Minor" - } - }, - "Name": "Ton Koopman" - } - }, - "298": { - "tracks": { - "3431": { - "Composer": "Sergei Prokofiev", - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio" - } - }, - "Title": "Prokofiev: Symphony No.1", - "artist": { - "ArtistId": 232, - "albums": { - "298": { - "tracks": { - "3431": { - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio" - } - }, - "Title": "Prokofiev: Symphony No.1" - } - }, - "Name": "Sergei Prokofiev & Yuri Temirkanov" - } - }, - "299": { - "tracks": { - "3432": { - "Composer": "Nikolai Rimsky-Korsakov", - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship" - } - }, - "Title": "Scheherazade", - "artist": { - "ArtistId": 233, - "albums": { - "299": { - "tracks": { - "3432": { - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship" - } - }, - "Title": "Scheherazade" - } - }, - "Name": "Chicago Symphony Orchestra & Fritz Reiner" - } - }, - "300": { - "tracks": { - "3433": { - "Composer": "Johann Sebastian Bach", - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro" - } - }, - "Title": "Bach: The Brandenburg Concertos", - "artist": { - "ArtistId": 234, - "albums": { - "300": { - "tracks": { - "3433": { - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro" - } - }, - "Title": "Bach: The Brandenburg Concertos" - } - }, - "Name": "Orchestra of The Age of Enlightenment" - } - }, - "301": { - "tracks": {}, - "Title": "Chopin: Piano Concertos Nos. 1 & 2", - "artist": { - "ArtistId": 235, - "albums": { - "301": { - "tracks": {}, - "Title": "Chopin: Piano Concertos Nos. 1 & 2" - } - }, - "Name": "Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra" - } - }, - "302": { - "tracks": { - "3435": { - "Composer": "Pietro Mascagni", - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico" - } - }, - "Title": "Mascagni: Cavalleria Rusticana", - "artist": { - "ArtistId": 236, - "albums": { - "302": { - "tracks": { - "3435": { - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico" - } - }, - "Title": "Mascagni: Cavalleria Rusticana" - } - }, - "Name": "James Levine" - } - }, - "303": { - "tracks": { - "3436": { - "Composer": "Jean Sibelius", - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)" - } - }, - "Title": "Sibelius: Finlandia", - "artist": { - "ArtistId": 237, - "albums": { - "303": { - "tracks": { - "3436": { - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)" - } - }, - "Title": "Sibelius: Finlandia" - } - }, - "Name": "Berliner Philharmoniker & Hans Rosbaud" - } - }, - "304": { - "tracks": { - "3437": { - "Composer": "Ludwig van Beethoven", - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto" - } - }, - "Title": "Beethoven Piano Sonatas: Moonlight & Pastorale", - "artist": { - "ArtistId": 238, - "albums": { - "304": { - "tracks": { - "3437": { - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto" - } - }, - "Title": "Beethoven Piano Sonatas: Moonlight & Pastorale" - } - }, - "Name": "Maurizio Pollini" - } - }, - "305": { - "tracks": { - "3439": { - "Composer": "Gustav Mahler", - "Name": "Das Lied Von Der Erde, Von Der Jugend" - } - }, - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde", - "artist": { - "ArtistId": 240, - "albums": { - "305": { - "tracks": { - "3439": { - "Name": "Das Lied Von Der Erde, Von Der Jugend" - } - }, - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde" - } - }, - "Name": "Gustav Mahler" - } - }, - "307": { - "tracks": { - "3441": { - "Composer": "John Adams", - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine" - } - }, - "Title": "Adams, John: The Chairman Dances", - "artist": { - "ArtistId": 242, - "albums": { - "307": { - "tracks": { - "3441": { - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine" - } - }, - "Title": "Adams, John: The Chairman Dances" - } - }, - "Name": "Edo de Waart & San Francisco Symphony" - } - }, - "309": { - "tracks": { - "3443": { - "Composer": "Giovanni Pierluigi da Palestrina", - "Name": "Missa Papae Marcelli: Kyrie" - } - }, - "Title": "Palestrina: Missa Papae Marcelli & Allegri: Miserere", - "artist": { - "ArtistId": 244, - "albums": { - "309": { - "tracks": { - "3443": { - "Name": "Missa Papae Marcelli: Kyrie" - } - }, - "Title": "Palestrina: Missa Papae Marcelli & Allegri: Miserere" - } - }, - "Name": "Choir Of Westminster Abbey & Simon Preston" - } - }, - "310": { - "tracks": { - "3444": { - "Composer": null, - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers" - } - }, - "Title": "Prokofiev: Romeo & Juliet", - "artist": { - "ArtistId": 245, - "albums": { - "310": { - "tracks": { - "3444": { - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers" - } - }, - "Title": "Prokofiev: Romeo & Juliet" - }, - "312": { - "tracks": { - "3446": { - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat" - } - }, - "Title": "Berlioz: Symphonie Fantastique" - } - }, - "Name": "Michael Tilson Thomas & San Francisco Symphony" - } - }, - "311": { - "tracks": { - "3445": { - "Composer": "Johann Strauss II", - "Name": "On the Beautiful Blue Danube" - } - }, - "Title": "Strauss: Waltzes", - "artist": { - "ArtistId": 226, - "albums": { - "292": { - "tracks": { - "3423": { - "Name": "Jupiter, the Bringer of Jollity" - } - }, - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies" - }, - "311": { - "tracks": { - "3445": { - "Name": "On the Beautiful Blue Danube" - } - }, - "Title": "Strauss: Waltzes" - }, - "343": { - "tracks": { - "3499": { - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia" - } - }, - "Title": "Respighi:Pines of Rome" - } - }, - "Name": "Eugene Ormandy" - } - }, - "312": { - "tracks": { - "3446": { - "Composer": "Hector Berlioz", - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat" - } - }, - "Title": "Berlioz: Symphonie Fantastique", - "artist": { - "ArtistId": 245, - "albums": { - "310": { - "tracks": { - "3444": { - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers" - } - }, - "Title": "Prokofiev: Romeo & Juliet" - }, - "312": { - "tracks": { - "3446": { - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat" - } - }, - "Title": "Berlioz: Symphonie Fantastique" - } - }, - "Name": "Michael Tilson Thomas & San Francisco Symphony" - } - }, - "313": { - "tracks": { - "3447": { - "Composer": "Georges Bizet", - "Name": "Carmen: Overture" - } - }, - "Title": "Bizet: Carmen Highlights", - "artist": { - "ArtistId": 246, - "albums": { - "313": { - "tracks": { - "3447": { - "Name": "Carmen: Overture" - } - }, - "Title": "Bizet: Carmen Highlights" - } - }, - "Name": "Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker" - } - }, - "314": { - "tracks": { - "3448": { - "Composer": "Thomas Tallis", - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio" - }, - "3492": { - "Composer": "William Byrd", - "Name": "Sing Joyfully" - } - }, - "Title": "English Renaissance", - "artist": { - "ArtistId": 247, - "albums": { - "314": { - "tracks": { - "3448": { - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio" - }, - "3492": { - "Name": "Sing Joyfully" - } - }, - "Title": "English Renaissance" - } - }, - "Name": "The King's Singers" - } - }, - "315": { - "tracks": {}, - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)", - "artist": { - "ArtistId": 208, - "albums": { - "274": { - "tracks": { - "3405": { - "Name": "Canon and Gigue in D Major: I. Canon" - } - }, - "Title": "Pachelbel: Canon & Gigue" - }, - "315": { - "tracks": {}, - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)" - } - }, - "Name": "English Concert & Trevor Pinnock" - } - }, - "317": { - "tracks": {}, - "Title": "Mozart Gala: Famous Arias", - "artist": { - "ArtistId": 249, - "albums": { - "317": { - "tracks": {}, - "Title": "Mozart Gala: Famous Arias" - } - }, - "Name": "Sir Georg Solti, Sumi Jo & Wiener Philharmoniker" - } - }, - "318": { - "tracks": { - "3452": { - "Composer": null, - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11" - } - }, - "Title": "SCRIABIN: Vers la flamme", - "artist": { - "ArtistId": 250, - "albums": { - "318": { - "tracks": { - "3452": { - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11" - } - }, - "Title": "SCRIABIN: Vers la flamme" - } - }, - "Name": "Christopher O'Riley" - } - }, - "319": { - "tracks": { - "3453": { - "Composer": "John Dowland", - "Name": "Pavan, Lachrimae Antiquae" - } - }, - "Title": "Armada: Music from the Courts of England and Spain", - "artist": { - "ArtistId": 251, - "albums": { - "319": { - "tracks": { - "3453": { - "Name": "Pavan, Lachrimae Antiquae" - } - }, - "Title": "Armada: Music from the Courts of England and Spain" - } - }, - "Name": "Fretwork" - } - }, - "320": { - "tracks": { - "3454": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro" - } - }, - "Title": "Mozart: Symphonies Nos. 40 & 41", - "artist": { - "ArtistId": 248, - "albums": { - "320": { - "tracks": { - "3454": { - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro" - } - }, - "Title": "Mozart: Symphonies Nos. 40 & 41" - }, - "336": { - "tracks": { - "3491": { - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds" - } - }, - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps" - } - }, - "Name": "Berliner Philharmoniker & Herbert Von Karajan" - } - }, - "321": { - "tracks": { - "3455": { - "Composer": null, - "Name": "Rehab" - }, - "3456": { - "Composer": null, - "Name": "You Know I'm No Good" - }, - "3457": { - "Composer": null, - "Name": "Me & Mr. Jones" - }, - "3458": { - "Composer": null, - "Name": "Just Friends" - }, - "3459": { - "Composer": "Mark Ronson", - "Name": "Back to Black" - }, - "3460": { - "Composer": null, - "Name": "Love Is a Losing Game" - }, - "3461": { - "Composer": "Nickolas Ashford & Valerie Simpson", - "Name": "Tears Dry On Their Own" - }, - "3462": { - "Composer": "Paul O'duffy", - "Name": "Wake Up Alone" - }, - "3463": { - "Composer": null, - "Name": "Some Unholy War" - }, - "3464": { - "Composer": "Richard Poindexter & Robert Poindexter", - "Name": "He Can Only Hold Her" - }, - "3465": { - "Composer": null, - "Name": "You Know I'm No Good (feat. Ghostface Killah)" - }, - "3466": { - "Composer": null, - "Name": "Rehab (Hot Chip Remix)" - } - }, - "Title": "Back to Black", - "artist": { - "ArtistId": 252, - "albums": { - "321": { - "tracks": { - "3455": { - "Name": "Rehab" - }, - "3456": { - "Name": "You Know I'm No Good" - }, - "3457": { - "Name": "Me & Mr. Jones" - }, - "3458": { - "Name": "Just Friends" - }, - "3459": { - "Name": "Back to Black" - }, - "3460": { - "Name": "Love Is a Losing Game" - }, - "3461": { - "Name": "Tears Dry On Their Own" - }, - "3462": { - "Name": "Wake Up Alone" - }, - "3463": { - "Name": "Some Unholy War" - }, - "3464": { - "Name": "He Can Only Hold Her" - }, - "3465": { - "Name": "You Know I'm No Good (feat. Ghostface Killah)" - }, - "3466": { - "Name": "Rehab (Hot Chip Remix)" - } - }, - "Title": "Back to Black" - }, - "322": { - "tracks": { - "3467": { - "Name": "Intro / Stronger Than Me" - }, - "3468": { - "Name": "You Sent Me Flying / Cherry" - }, - "3469": { - "Name": "F**k Me Pumps" - }, - "3470": { - "Name": "I Heard Love Is Blind" - }, - "3471": { - "Name": "(There Is) No Greater Love (Teo Licks)" - }, - "3472": { - "Name": "In My Bed" - }, - "3473": { - "Name": "Take the Box" - }, - "3474": { - "Name": "October Song" - }, - "3475": { - "Name": "What Is It About Men" - }, - "3476": { - "Name": "Help Yourself" - }, - "3477": { - "Name": "Amy Amy Amy (Outro)" - } - }, - "Title": "Frank" - } - }, - "Name": "Amy Winehouse" - } - }, - "322": { - "tracks": { - "3467": { - "Composer": null, - "Name": "Intro / Stronger Than Me" - }, - "3468": { - "Composer": null, - "Name": "You Sent Me Flying / Cherry" - }, - "3469": { - "Composer": "Salaam Remi", - "Name": "F**k Me Pumps" - }, - "3470": { - "Composer": null, - "Name": "I Heard Love Is Blind" - }, - "3471": { - "Composer": "Isham Jones & Marty Symes", - "Name": "(There Is) No Greater Love (Teo Licks)" - }, - "3472": { - "Composer": "Salaam Remi", - "Name": "In My Bed" - }, - "3473": { - "Composer": "Luke Smith", - "Name": "Take the Box" - }, - "3474": { - "Composer": "Matt Rowe & Stefan Skarbek", - "Name": "October Song" - }, - "3475": { - "Composer": "Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole", - "Name": "What Is It About Men" - }, - "3476": { - "Composer": "Freddy James, Jimmy hogarth & Larry Stock", - "Name": "Help Yourself" - }, - "3477": { - "Composer": "Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek", - "Name": "Amy Amy Amy (Outro)" - } - }, - "Title": "Frank", - "artist": { - "ArtistId": 252, - "albums": { - "321": { - "tracks": { - "3455": { - "Name": "Rehab" - }, - "3456": { - "Name": "You Know I'm No Good" - }, - "3457": { - "Name": "Me & Mr. Jones" - }, - "3458": { - "Name": "Just Friends" - }, - "3459": { - "Name": "Back to Black" - }, - "3460": { - "Name": "Love Is a Losing Game" - }, - "3461": { - "Name": "Tears Dry On Their Own" - }, - "3462": { - "Name": "Wake Up Alone" - }, - "3463": { - "Name": "Some Unholy War" - }, - "3464": { - "Name": "He Can Only Hold Her" - }, - "3465": { - "Name": "You Know I'm No Good (feat. Ghostface Killah)" - }, - "3466": { - "Name": "Rehab (Hot Chip Remix)" - } - }, - "Title": "Back to Black" - }, - "322": { - "tracks": { - "3467": { - "Name": "Intro / Stronger Than Me" - }, - "3468": { - "Name": "You Sent Me Flying / Cherry" - }, - "3469": { - "Name": "F**k Me Pumps" - }, - "3470": { - "Name": "I Heard Love Is Blind" - }, - "3471": { - "Name": "(There Is) No Greater Love (Teo Licks)" - }, - "3472": { - "Name": "In My Bed" - }, - "3473": { - "Name": "Take the Box" - }, - "3474": { - "Name": "October Song" - }, - "3475": { - "Name": "What Is It About Men" - }, - "3476": { - "Name": "Help Yourself" - }, - "3477": { - "Name": "Amy Amy Amy (Outro)" - } - }, - "Title": "Frank" - } - }, - "Name": "Amy Winehouse" - } - }, - "323": { - "tracks": { - "3478": { - "Composer": null, - "Name": "Slowness" - } - }, - "Title": "Carried to Dust (Bonus Track Version)", - "artist": { - "ArtistId": 253, - "albums": { - "323": { - "tracks": { - "3478": { - "Name": "Slowness" - } - }, - "Title": "Carried to Dust (Bonus Track Version)" - } - }, - "Name": "Calexico" - } - }, - "324": { - "tracks": { - "3479": { - "Composer": "Ludwig van Beethoven", - "Name": "Prometheus Overture, Op. 43" - } - }, - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc.", - "artist": { - "ArtistId": 254, - "albums": { - "324": { - "tracks": { - "3479": { - "Name": "Prometheus Overture, Op. 43" - } - }, - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc." - } - }, - "Name": "Otto Klemperer & Philharmonia Orchestra" - } - }, - "325": { - "tracks": {}, - "Title": "Bartok: Violin & Viola Concertos", - "artist": { - "ArtistId": 255, - "albums": { - "325": { - "tracks": {}, - "Title": "Bartok: Violin & Viola Concertos" - } - }, - "Name": "Yehudi Menuhin" - } - }, - "326": { - "tracks": { - "3481": { - "Composer": null, - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno" - } - }, - "Title": "Mendelssohn: A Midsummer Night's Dream", - "artist": { - "ArtistId": 256, - "albums": { - "326": { - "tracks": { - "3481": { - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno" - } - }, - "Title": "Mendelssohn: A Midsummer Night's Dream" - } - }, - "Name": "Philharmonia Orchestra & Sir Neville Marriner" - } - }, - "327": { - "tracks": { - "3482": { - "Composer": "Johann Sebastian Bach", - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I & II" - } - }, - "Title": "Bach: Orchestral Suites Nos. 1 - 4", - "artist": { - "ArtistId": 257, - "albums": { - "327": { - "tracks": { - "3482": { - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I & II" - } - }, - "Title": "Bach: Orchestral Suites Nos. 1 - 4" - } - }, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart" - } - }, - "328": { - "tracks": { - "3483": { - "Composer": "Marc-Antoine Charpentier", - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude" - } - }, - "Title": "Charpentier: Divertissements, Airs & Concerts", - "artist": { - "ArtistId": 258, - "albums": { - "328": { - "tracks": { - "3483": { - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude" - } - }, - "Title": "Charpentier: Divertissements, Airs & Concerts" - } - }, - "Name": "Les Arts Florissants & William Christie" - } - }, - "329": { - "tracks": { - "3484": { - "Composer": "Astor Piazzolla", - "Name": "Adios nonino" - } - }, - "Title": "South American Getaway", - "artist": { - "ArtistId": 259, - "albums": { - "329": { - "tracks": { - "3484": { - "Name": "Adios nonino" - } - }, - "Title": "South American Getaway" - } - }, - "Name": "The 12 Cellists of The Berlin Philharmonic" - } - }, - "331": { - "tracks": { - "3486": { - "Composer": "Henry Purcell", - "Name": "Act IV, Symphony" - } - }, - "Title": "Purcell: The Fairy Queen", - "artist": { - "ArtistId": 261, - "albums": { - "331": { - "tracks": { - "3486": { - "Name": "Act IV, Symphony" - } - }, - "Title": "Purcell: The Fairy Queen" - } - }, - "Name": "Roger Norrington, London Classical Players" - } - }, - "333": { - "tracks": { - "3488": { - "Composer": "Henry Purcell", - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"" - } - }, - "Title": "Purcell: Music for the Queen Mary", - "artist": { - "ArtistId": 263, - "albums": { - "333": { - "tracks": { - "3488": { - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"" - } - }, - "Title": "Purcell: Music for the Queen Mary" - } - }, - "Name": "Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir" - } - }, - "335": { - "tracks": { - "3490": { - "Composer": "Johann Sebastian Bach", - "Name": "Partita in E Major, BWV 1006A: I. Prelude" - } - }, - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro", - "artist": { - "ArtistId": 265, - "albums": { - "335": { - "tracks": { - "3490": { - "Name": "Partita in E Major, BWV 1006A: I. Prelude" - } - }, - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro" - } - }, - "Name": "Julian Bream" - } - }, - "336": { - "tracks": { - "3491": { - "Composer": "Igor Stravinsky", - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds" - } - }, - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps", - "artist": { - "ArtistId": 248, - "albums": { - "320": { - "tracks": { - "3454": { - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro" - } - }, - "Title": "Mozart: Symphonies Nos. 40 & 41" - }, - "336": { - "tracks": { - "3491": { - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds" - } - }, - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps" - } - }, - "Name": "Berliner Philharmoniker & Herbert Von Karajan" - } - }, - "337": { - "tracks": { - "3493": { - "Composer": "Karol Szymanowski", - "Name": "Metopes, Op. 29: Calypso" - } - }, - "Title": "Szymanowski: Piano Works, Vol. 1", - "artist": { - "ArtistId": 266, - "albums": { - "337": { - "tracks": { - "3493": { - "Name": "Metopes, Op. 29: Calypso" - } - }, - "Title": "Szymanowski: Piano Works, Vol. 1" - } - }, - "Name": "Martin Roscoe" - } - }, - "339": { - "tracks": {}, - "Title": "Great Recordings of the Century: Paganini's 24 Caprices", - "artist": { - "ArtistId": 268, - "albums": { - "339": { - "tracks": {}, - "Title": "Great Recordings of the Century: Paganini's 24 Caprices" - } - }, - "Name": "Itzhak Perlman" - } - }, - "341": { - "tracks": { - "3497": { - "Composer": null, - "Name": "Erlkonig, D.328" - } - }, - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder", - "artist": { - "ArtistId": 270, - "albums": { - "341": { - "tracks": { - "3497": { - "Name": "Erlkonig, D.328" - } - }, - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder" - } - }, - "Name": "Gerald Moore" - } - }, - "342": { - "tracks": { - "3498": { - "Composer": "Pietro Antonio Locatelli", - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro" - } - }, - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3", - "artist": { - "ArtistId": 271, - "albums": { - "342": { - "tracks": { - "3498": { - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro" - } - }, - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3" - } - }, - "Name": "Mela Tenenbaum, Pro Musica Prague & Richard Kapp" - } - }, - "343": { - "tracks": { - "3499": { - "Composer": null, - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia" - } - }, - "Title": "Respighi:Pines of Rome", - "artist": { - "ArtistId": 226, - "albums": { - "292": { - "tracks": { - "3423": { - "Name": "Jupiter, the Bringer of Jollity" - } - }, - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies" - }, - "311": { - "tracks": { - "3445": { - "Name": "On the Beautiful Blue Danube" - } - }, - "Title": "Strauss: Waltzes" - }, - "343": { - "tracks": { - "3499": { - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia" - } - }, - "Title": "Respighi:Pines of Rome" - } - }, - "Name": "Eugene Ormandy" - } - }, - "344": { - "tracks": { - "3500": { - "Composer": "Franz Schubert", - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai" - } - }, - "Title": "Schubert: The Late String Quartets & String Quintet (3 CD's)", - "artist": { - "ArtistId": 272, - "albums": { - "344": { - "tracks": { - "3500": { - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai" - } - }, - "Title": "Schubert: The Late String Quartets & String Quintet (3 CD's)" - } - }, - "Name": "Emerson String Quartet" - } - }, - "345": { - "tracks": { - "3501": { - "Composer": "Claudio Monteverdi", - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)" - } - }, - "Title": "Monteverdi: L'Orfeo", - "artist": { - "ArtistId": 273, - "albums": { - "345": { - "tracks": { - "3501": { - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)" - } - }, - "Title": "Monteverdi: L'Orfeo" - } - }, - "Name": "C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu" - } - }, - "346": { - "tracks": { - "3502": { - "Composer": "Wolfgang Amadeus Mozart", - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro" - } - }, - "Title": "Mozart: Chamber Music", - "artist": { - "ArtistId": 274, - "albums": { - "346": { - "tracks": { - "3502": { - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro" - } - }, - "Title": "Mozart: Chamber Music" - } - }, - "Name": "Nash Ensemble" - } - }, - "347": { - "tracks": { - "3503": { - "Composer": "Philip Glass", - "Name": "Koyaanisqatsi" - } - }, - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)", - "artist": { - "ArtistId": 275, - "albums": { - "347": { - "tracks": { - "3503": { - "Name": "Koyaanisqatsi" - } - }, - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)" - } - }, - "Name": "Philip Glass Ensemble" - } - } - }, - "f2gt_Track": { - "1": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "For Those About To Rock (We Salute You)", - "genre": { - "Name": "Rock" - } - }, - "2": { - "Composer": null, - "album": { - "Title": "Balls to the Wall" - }, - "Name": "Balls to the Wall", - "genre": { - "Name": "Rock" - } - }, - "3": { - "Composer": "F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman", - "album": { - "Title": "Restless and Wild" - }, - "Name": "Fast As a Shark", - "genre": { - "Name": "Rock" - } - }, - "4": { - "Composer": "F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman", - "album": { - "Title": "Restless and Wild" - }, - "Name": "Restless and Wild", - "genre": { - "Name": "Rock" - } - }, - "5": { - "Composer": "Deaffy & R.A. Smith-Diesel", - "album": { - "Title": "Restless and Wild" - }, - "Name": "Princess of the Dawn", - "genre": { - "Name": "Rock" - } - }, - "6": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Put The Finger On You", - "genre": { - "Name": "Rock" - } - }, - "7": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Let's Get It Up", - "genre": { - "Name": "Rock" - } - }, - "8": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Inject The Venom", - "genre": { - "Name": "Rock" - } - }, - "9": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Snowballed", - "genre": { - "Name": "Rock" - } - }, - "10": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Evil Walks", - "genre": { - "Name": "Rock" - } - }, - "11": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "C.O.D.", - "genre": { - "Name": "Rock" - } - }, - "12": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Breaking The Rules", - "genre": { - "Name": "Rock" - } - }, - "13": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Night Of The Long Knives", - "genre": { - "Name": "Rock" - } - }, - "14": { - "Composer": "Angus Young, Malcolm Young, Brian Johnson", - "album": { - "Title": "For Those About To Rock We Salute You" - }, - "Name": "Spellbound", - "genre": { - "Name": "Rock" - } - }, - "15": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Go Down", - "genre": { - "Name": "Rock" - } - }, - "16": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Dog Eat Dog", - "genre": { - "Name": "Rock" - } - }, - "17": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Let There Be Rock", - "genre": { - "Name": "Rock" - } - }, - "18": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Bad Boy Boogie", - "genre": { - "Name": "Rock" - } - }, - "19": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Problem Child", - "genre": { - "Name": "Rock" - } - }, - "20": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Overdose", - "genre": { - "Name": "Rock" - } - }, - "21": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Hell Ain't A Bad Place To Be", - "genre": { - "Name": "Rock" - } - }, - "22": { - "Composer": "AC/DC", - "album": { - "Title": "Let There Be Rock" - }, - "Name": "Whole Lotta Rosie", - "genre": { - "Name": "Rock" - } - }, - "23": { - "Composer": "Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw", - "album": { - "Title": "Big Ones" - }, - "Name": "Walk On Water", - "genre": { - "Name": "Rock" - } - }, - "24": { - "Composer": "Steven Tyler, Joe Perry", - "album": { - "Title": "Big Ones" - }, - "Name": "Love In An Elevator", - "genre": { - "Name": "Rock" - } - }, - "25": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance, Holly Knight", - "album": { - "Title": "Big Ones" - }, - "Name": "Rag Doll", - "genre": { - "Name": "Rock" - } - }, - "26": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "album": { - "Title": "Big Ones" - }, - "Name": "What It Takes", - "genre": { - "Name": "Rock" - } - }, - "27": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "album": { - "Title": "Big Ones" - }, - "Name": "Dude (Looks Like A Lady)", - "genre": { - "Name": "Rock" - } - }, - "28": { - "Composer": "Steven Tyler, Tom Hamilton", - "album": { - "Title": "Big Ones" - }, - "Name": "Janie's Got A Gun", - "genre": { - "Name": "Rock" - } - }, - "29": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "album": { - "Title": "Big Ones" - }, - "Name": "Cryin'", - "genre": { - "Name": "Rock" - } - }, - "30": { - "Composer": "Steven Tyler, Richie Supa", - "album": { - "Title": "Big Ones" - }, - "Name": "Amazing", - "genre": { - "Name": "Rock" - } - }, - "31": { - "Composer": "Steven Tyler, Joe Perry, Taylor Rhodes", - "album": { - "Title": "Big Ones" - }, - "Name": "Blind Man", - "genre": { - "Name": "Rock" - } - }, - "32": { - "Composer": "Steven Tyler, Jim Vallance", - "album": { - "Title": "Big Ones" - }, - "Name": "Deuces Are Wild", - "genre": { - "Name": "Rock" - } - }, - "33": { - "Composer": "Steven Tyler, Jim Vallance", - "album": { - "Title": "Big Ones" - }, - "Name": "The Other Side", - "genre": { - "Name": "Rock" - } - }, - "34": { - "Composer": "Steven Tyler, Joe Perry, Desmond Child", - "album": { - "Title": "Big Ones" - }, - "Name": "Crazy", - "genre": { - "Name": "Rock" - } - }, - "35": { - "Composer": "Steven Tyler, Joe Perry, Jim Vallance", - "album": { - "Title": "Big Ones" - }, - "Name": "Eat The Rich", - "genre": { - "Name": "Rock" - } - }, - "36": { - "Composer": "Steven Tyler, Desmond Child", - "album": { - "Title": "Big Ones" - }, - "Name": "Angel", - "genre": { - "Name": "Rock" - } - }, - "37": { - "Composer": "Steven Tyler, Joe Perry, Mark Hudson", - "album": { - "Title": "Big Ones" - }, - "Name": "Livin' On The Edge", - "genre": { - "Name": "Rock" - } - }, - "38": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "All I Really Want", - "genre": { - "Name": "Rock" - } - }, - "39": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "You Oughta Know", - "genre": { - "Name": "Rock" - } - }, - "40": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Perfect", - "genre": { - "Name": "Rock" - } - }, - "41": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Hand In My Pocket", - "genre": { - "Name": "Rock" - } - }, - "42": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Right Through You", - "genre": { - "Name": "Rock" - } - }, - "43": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Forgiven", - "genre": { - "Name": "Rock" - } - }, - "44": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "You Learn", - "genre": { - "Name": "Rock" - } - }, - "45": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Head Over Feet", - "genre": { - "Name": "Rock" - } - }, - "46": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Mary Jane", - "genre": { - "Name": "Rock" - } - }, - "47": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Ironic", - "genre": { - "Name": "Rock" - } - }, - "48": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Not The Doctor", - "genre": { - "Name": "Rock" - } - }, - "49": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "Wake Up", - "genre": { - "Name": "Rock" - } - }, - "50": { - "Composer": "Alanis Morissette & Glenn Ballard", - "album": { - "Title": "Jagged Little Pill" - }, - "Name": "You Oughta Know (Alternate)", - "genre": { - "Name": "Rock" - } - }, - "51": { - "Composer": "Jerry Cantrell", - "album": { - "Title": "Facelift" - }, - "Name": "We Die Young", - "genre": { - "Name": "Rock" - } - }, - "52": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "Title": "Facelift" - }, - "Name": "Man In The Box", - "genre": { - "Name": "Rock" - } - }, - "53": { - "Composer": "Jerry Cantrell", - "album": { - "Title": "Facelift" - }, - "Name": "Sea Of Sorrow", - "genre": { - "Name": "Rock" - } - }, - "54": { - "Composer": "Jerry Cantrell", - "album": { - "Title": "Facelift" - }, - "Name": "Bleed The Freak", - "genre": { - "Name": "Rock" - } - }, - "55": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "Title": "Facelift" - }, - "Name": "I Can't Remember", - "genre": { - "Name": "Rock" - } - }, - "56": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "Title": "Facelift" - }, - "Name": "Love, Hate, Love", - "genre": { - "Name": "Rock" - } - }, - "57": { - "Composer": "Jerry Cantrell, Michael Starr, Sean Kinney", - "album": { - "Title": "Facelift" - }, - "Name": "It Ain't Like That", - "genre": { - "Name": "Rock" - } - }, - "58": { - "Composer": "Jerry Cantrell", - "album": { - "Title": "Facelift" - }, - "Name": "Sunshine", - "genre": { - "Name": "Rock" - } - }, - "59": { - "Composer": "Jerry Cantrell", - "album": { - "Title": "Facelift" - }, - "Name": "Put You Down", - "genre": { - "Name": "Rock" - } - }, - "60": { - "Composer": "Jerry Cantrell, Michael Starr, Layne Staley", - "album": { - "Title": "Facelift" - }, - "Name": "Confusion", - "genre": { - "Name": "Rock" - } - }, - "61": { - "Composer": "Jerry Cantrell", - "album": { - "Title": "Facelift" - }, - "Name": "I Know Somethin (Bout You)", - "genre": { - "Name": "Rock" - } - }, - "62": { - "Composer": "Jerry Cantrell, Layne Staley", - "album": { - "Title": "Facelift" - }, - "Name": "Real Thing", - "genre": { - "Name": "Rock" - } - }, - "77": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Enter Sandman", - "genre": { - "Name": "Metal" - } - }, - "78": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Master Of Puppets", - "genre": { - "Name": "Metal" - } - }, - "79": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Harvester Of Sorrow", - "genre": { - "Name": "Metal" - } - }, - "80": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "The Unforgiven", - "genre": { - "Name": "Metal" - } - }, - "81": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Sad But True", - "genre": { - "Name": "Metal" - } - }, - "82": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Creeping Death", - "genre": { - "Name": "Metal" - } - }, - "83": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Wherever I May Roam", - "genre": { - "Name": "Metal" - } - }, - "84": { - "Composer": "Apocalyptica", - "album": { - "Title": "Plays Metallica By Four Cellos" - }, - "Name": "Welcome Home (Sanitarium)", - "genre": { - "Name": "Metal" - } - }, - "85": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Cochise", - "genre": { - "Name": "Rock" - } - }, - "86": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Show Me How to Live", - "genre": { - "Name": "Rock" - } - }, - "87": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Gasoline", - "genre": { - "Name": "Rock" - } - }, - "88": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "What You Are", - "genre": { - "Name": "Rock" - } - }, - "89": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Like a Stone", - "genre": { - "Name": "Rock" - } - }, - "90": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Set It Off", - "genre": { - "Name": "Rock" - } - }, - "91": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Shadow on the Sun", - "genre": { - "Name": "Rock" - } - }, - "92": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "I am the Highway", - "genre": { - "Name": "Rock" - } - }, - "93": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Exploder", - "genre": { - "Name": "Rock" - } - }, - "94": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Hypnotize", - "genre": { - "Name": "Rock" - } - }, - "95": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Bring'em Back Alive", - "genre": { - "Name": "Rock" - } - }, - "96": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Light My Way", - "genre": { - "Name": "Rock" - } - }, - "97": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "Getaway Car", - "genre": { - "Name": "Rock" - } - }, - "98": { - "Composer": "Audioslave/Chris Cornell", - "album": { - "Title": "Audioslave" - }, - "Name": "The Last Remaining Light", - "genre": { - "Name": "Rock" - } - }, - "99": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Your Time Has Come", - "genre": { - "Name": "Alternative & Punk" - } - }, - "100": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Out Of Exile", - "genre": { - "Name": "Alternative & Punk" - } - }, - "101": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Be Yourself", - "genre": { - "Name": "Alternative & Punk" - } - }, - "102": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Doesn't Remind Me", - "genre": { - "Name": "Alternative & Punk" - } - }, - "103": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Drown Me Slowly", - "genre": { - "Name": "Alternative & Punk" - } - }, - "104": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Heaven's Dead", - "genre": { - "Name": "Alternative & Punk" - } - }, - "105": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "The Worm", - "genre": { - "Name": "Alternative & Punk" - } - }, - "106": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Man Or Animal", - "genre": { - "Name": "Alternative & Punk" - } - }, - "107": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Yesterday To Tomorrow", - "genre": { - "Name": "Alternative & Punk" - } - }, - "108": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "Dandelion", - "genre": { - "Name": "Alternative & Punk" - } - }, - "109": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "#1 Zero", - "genre": { - "Name": "Alternative & Punk" - } - }, - "110": { - "Composer": "Cornell, Commerford, Morello, Wilk", - "album": { - "Title": "Out Of Exile" - }, - "Name": "The Curse", - "genre": { - "Name": "Alternative & Punk" - } - }, - "111": { - "Composer": "Berry Gordy, Jr./Janie Bradford", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Money", - "genre": { - "Name": "Rock And Roll" - } - }, - "112": { - "Composer": "Enotris Johnson/Little Richard/Robert \"Bumps\" Blackwell", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Long Tall Sally", - "genre": { - "Name": "Rock And Roll" - } - }, - "113": { - "Composer": "Larry Williams", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Bad Boy", - "genre": { - "Name": "Rock And Roll" - } - }, - "114": { - "Composer": "Bert Russell/Phil Medley", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Twist And Shout", - "genre": { - "Name": "Rock And Roll" - } - }, - "115": { - "Composer": "Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Please Mr. Postman", - "genre": { - "Name": "Rock And Roll" - } - }, - "116": { - "Composer": "Eddie Cochran/Jerry Capehart", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "C'Mon Everybody", - "genre": { - "Name": "Rock And Roll" - } - }, - "117": { - "Composer": "Chuck Berry", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Rock 'N' Roll Music", - "genre": { - "Name": "Rock And Roll" - } - }, - "118": { - "Composer": "Larry Williams", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Slow Down", - "genre": { - "Name": "Rock And Roll" - } - }, - "119": { - "Composer": "Bo Diddley", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Roadrunner", - "genre": { - "Name": "Rock And Roll" - } - }, - "120": { - "Composer": "Chuck Berry", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Carol", - "genre": { - "Name": "Rock And Roll" - } - }, - "121": { - "Composer": "Little Richard", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "Good Golly Miss Molly", - "genre": { - "Name": "Rock And Roll" - } - }, - "122": { - "Composer": "Ned Fairchild", - "album": { - "Title": "BackBeat Soundtrack" - }, - "Name": "20 Flight Rock", - "genre": { - "Name": "Rock And Roll" - } - }, - "123": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Quadrant", - "genre": { - "Name": "Jazz" - } - }, - "124": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Snoopy's search-Red baron", - "genre": { - "Name": "Jazz" - } - }, - "125": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Spanish moss-\"A sound portrait\"-Spanish moss", - "genre": { - "Name": "Jazz" - } - }, - "126": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Moon germs", - "genre": { - "Name": "Jazz" - } - }, - "127": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Stratus", - "genre": { - "Name": "Jazz" - } - }, - "128": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "The pleasant pheasant", - "genre": { - "Name": "Jazz" - } - }, - "129": { - "Composer": "Billy Cobham", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Solo-Panhandler", - "genre": { - "Name": "Jazz" - } - }, - "130": { - "Composer": "George Duke", - "album": { - "Title": "The Best Of Billy Cobham" - }, - "Name": "Do what cha wanna", - "genre": { - "Name": "Jazz" - } - }, - "131": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Intro/ Low Down", - "genre": { - "Name": "Metal" - } - }, - "132": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "13 Years Of Grief", - "genre": { - "Name": "Metal" - } - }, - "133": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Stronger Than Death", - "genre": { - "Name": "Metal" - } - }, - "134": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "All For You", - "genre": { - "Name": "Metal" - } - }, - "135": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Super Terrorizer", - "genre": { - "Name": "Metal" - } - }, - "136": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Phoney Smile Fake Hellos", - "genre": { - "Name": "Metal" - } - }, - "137": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Lost My Better Half", - "genre": { - "Name": "Metal" - } - }, - "138": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Bored To Tears", - "genre": { - "Name": "Metal" - } - }, - "139": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "A.N.D.R.O.T.A.Z.", - "genre": { - "Name": "Metal" - } - }, - "140": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "Born To Booze", - "genre": { - "Name": "Metal" - } - }, - "141": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "World Of Trouble", - "genre": { - "Name": "Metal" - } - }, - "142": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "No More Tears", - "genre": { - "Name": "Metal" - } - }, - "143": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "Name": "The Begining... At Last", - "genre": { - "Name": "Metal" - } - }, - "144": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Heart Of Gold", - "genre": { - "Name": "Metal" - } - }, - "145": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Snowblind", - "genre": { - "Name": "Metal" - } - }, - "146": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Like A Bird", - "genre": { - "Name": "Metal" - } - }, - "147": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "Blood In The Wall", - "genre": { - "Name": "Metal" - } - }, - "148": { - "Composer": null, - "album": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - }, - "Name": "The Beginning...At Last", - "genre": { - "Name": "Metal" - } - }, - "149": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "Black Sabbath", - "genre": { - "Name": "Metal" - } - }, - "150": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "The Wizard", - "genre": { - "Name": "Metal" - } - }, - "151": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "Behind The Wall Of Sleep", - "genre": { - "Name": "Metal" - } - }, - "152": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "N.I.B.", - "genre": { - "Name": "Metal" - } - }, - "153": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "Evil Woman", - "genre": { - "Name": "Metal" - } - }, - "154": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "Sleeping Village", - "genre": { - "Name": "Metal" - } - }, - "155": { - "Composer": null, - "album": { - "Title": "Black Sabbath" - }, - "Name": "Warning", - "genre": { - "Name": "Metal" - } - }, - "156": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Wheels Of Confusion / The Straightener", - "genre": { - "Name": "Metal" - } - }, - "157": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Tomorrow's Dream", - "genre": { - "Name": "Metal" - } - }, - "158": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Changes", - "genre": { - "Name": "Metal" - } - }, - "159": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "FX", - "genre": { - "Name": "Metal" - } - }, - "160": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Supernaut", - "genre": { - "Name": "Metal" - } - }, - "161": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Snowblind", - "genre": { - "Name": "Metal" - } - }, - "162": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Cornucopia", - "genre": { - "Name": "Metal" - } - }, - "163": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Laguna Sunrise", - "genre": { - "Name": "Metal" - } - }, - "164": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "St. Vitus Dance", - "genre": { - "Name": "Metal" - } - }, - "165": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - }, - "Name": "Under The Sun/Every Day Comes and Goes", - "genre": { - "Name": "Metal" - } - }, - "166": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Smoked Pork", - "genre": { - "Name": "Alternative & Punk" - } - }, - "167": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Body Count's In The House", - "genre": { - "Name": "Alternative & Punk" - } - }, - "168": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Now Sports", - "genre": { - "Name": "Alternative & Punk" - } - }, - "169": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Body Count", - "genre": { - "Name": "Alternative & Punk" - } - }, - "170": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "A Statistic", - "genre": { - "Name": "Alternative & Punk" - } - }, - "171": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Bowels Of The Devil", - "genre": { - "Name": "Alternative & Punk" - } - }, - "172": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "The Real Problem", - "genre": { - "Name": "Alternative & Punk" - } - }, - "173": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "KKK Bitch", - "genre": { - "Name": "Alternative & Punk" - } - }, - "174": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "D Note", - "genre": { - "Name": "Alternative & Punk" - } - }, - "175": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Voodoo", - "genre": { - "Name": "Alternative & Punk" - } - }, - "176": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "The Winner Loses", - "genre": { - "Name": "Alternative & Punk" - } - }, - "177": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "There Goes The Neighborhood", - "genre": { - "Name": "Alternative & Punk" - } - }, - "178": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Oprah", - "genre": { - "Name": "Alternative & Punk" - } - }, - "179": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Evil Dick", - "genre": { - "Name": "Alternative & Punk" - } - }, - "180": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Body Count Anthem", - "genre": { - "Name": "Alternative & Punk" - } - }, - "181": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Momma's Gotta Die Tonight", - "genre": { - "Name": "Alternative & Punk" - } - }, - "182": { - "Composer": null, - "album": { - "Title": "Body Count" - }, - "Name": "Freedom Of Speech", - "genre": { - "Name": "Alternative & Punk" - } - }, - "183": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "King In Crimson", - "genre": { - "Name": "Metal" - } - }, - "184": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Chemical Wedding", - "genre": { - "Name": "Metal" - } - }, - "185": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "The Tower", - "genre": { - "Name": "Metal" - } - }, - "186": { - "Composer": "Adrian Smith", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Killing Floor", - "genre": { - "Name": "Metal" - } - }, - "187": { - "Composer": "Eddie Casillas/Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Book Of Thel", - "genre": { - "Name": "Metal" - } - }, - "188": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Gates Of Urizen", - "genre": { - "Name": "Metal" - } - }, - "189": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Jerusalem", - "genre": { - "Name": "Metal" - } - }, - "190": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Trupets Of Jericho", - "genre": { - "Name": "Metal" - } - }, - "191": { - "Composer": "Adrian Smith", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Machine Men", - "genre": { - "Name": "Metal" - } - }, - "192": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "The Alchemist", - "genre": { - "Name": "Metal" - } - }, - "193": { - "Composer": "Roy Z", - "album": { - "Title": "Chemical Wedding" - }, - "Name": "Realword", - "genre": { - "Name": "Metal" - } - }, - "194": { - "Composer": "Eurreal Montgomery", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "First Time I Met The Blues", - "genre": { - "Name": "Blues" - } - }, - "195": { - "Composer": "Willie Dixon", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Let Me Love You Baby", - "genre": { - "Name": "Blues" - } - }, - "196": { - "Composer": "Buddy Guy", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Stone Crazy", - "genre": { - "Name": "Blues" - } - }, - "197": { - "Composer": "Willie Dixon", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Pretty Baby", - "genre": { - "Name": "Blues" - } - }, - "198": { - "Composer": "Al Perkins/Willie Dixon", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "When My Left Eye Jumps", - "genre": { - "Name": "Blues" - } - }, - "199": { - "Composer": "Buddy Guy", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Leave My Girl Alone", - "genre": { - "Name": "Blues" - } - }, - "200": { - "Composer": "Buddy Guy", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "She Suits Me To A Tee", - "genre": { - "Name": "Blues" - } - }, - "201": { - "Composer": "Sonny Boy Williamson [I]", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Keep It To Myself (Aka Keep It To Yourself)", - "genre": { - "Name": "Blues" - } - }, - "202": { - "Composer": "Robert Geddins/Ron Badger/Sheldon Feinberg", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "My Time After Awhile", - "genre": { - "Name": "Blues" - } - }, - "203": { - "Composer": "Willie Dixon", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Too Many Ways (Alternate)", - "genre": { - "Name": "Blues" - } - }, - "204": { - "Composer": "Amos Blakemore/Buddy Guy", - "album": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - }, - "Name": "Talkin' 'Bout Women Obviously", - "genre": { - "Name": "Blues" - } - }, - "206": { - "Composer": "Tradicional", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Prenda Minha", - "genre": { - "Name": "Latin" - } - }, - "208": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Terra", - "genre": { - "Name": "Latin" - } - }, - "209": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Eclipse Oculto", - "genre": { - "Name": "Latin" - } - }, - "210": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Texto \"Verdade Tropical\"", - "genre": { - "Name": "Latin" - } - }, - "211": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Bem Devagar", - "genre": { - "Name": "Latin" - } - }, - "213": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Saudosismo", - "genre": { - "Name": "Latin" - } - }, - "214": { - "Composer": "Chico Buarque", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Carolina", - "genre": { - "Name": "Latin" - } - }, - "215": { - "Composer": "Peninha", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Sozinho", - "genre": { - "Name": "Latin" - } - }, - "216": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Esse Cara", - "genre": { - "Name": "Latin" - } - }, - "218": { - "Composer": "Caetano Veloso - Djavan", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Linha Do Equador", - "genre": { - "Name": "Latin" - } - }, - "219": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Odara", - "genre": { - "Name": "Latin" - } - }, - "220": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Prenda Minha" - }, - "Name": "A Luz De Tieta", - "genre": { - "Name": "Latin" - } - }, - "222": { - "Composer": "Fausto Nilo - Armandinho", - "album": { - "Title": "Prenda Minha" - }, - "Name": "Vida Boa", - "genre": { - "Name": "Latin" - } - }, - "223": { - "Composer": null, - "album": { - "Title": "Sozinho Remix Ao Vivo" - }, - "Name": "Sozinho (Hitmakers Classic Mix)", - "genre": { - "Name": "Latin" - } - }, - "224": { - "Composer": null, - "album": { - "Title": "Sozinho Remix Ao Vivo" - }, - "Name": "Sozinho (Hitmakers Classic Radio Edit)", - "genre": { - "Name": "Latin" - } - }, - "226": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Carolina", - "genre": { - "Name": "Latin" - } - }, - "228": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Vai Passar", - "genre": { - "Name": "Latin" - } - }, - "229": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Samba De Orly", - "genre": { - "Name": "Latin" - } - }, - "230": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Bye, Bye Brasil", - "genre": { - "Name": "Latin" - } - }, - "231": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Atras Da Porta", - "genre": { - "Name": "Latin" - } - }, - "232": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Tatuagem", - "genre": { - "Name": "Latin" - } - }, - "234": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Morena De Angola", - "genre": { - "Name": "Latin" - } - }, - "236": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "A Banda", - "genre": { - "Name": "Latin" - } - }, - "237": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Minha Historia", - "genre": { - "Name": "Latin" - } - }, - "239": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Brejo Da Cruz", - "genre": { - "Name": "Latin" - } - }, - "240": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Meu Caro Amigo", - "genre": { - "Name": "Latin" - } - }, - "241": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Geni E O Zepelim", - "genre": { - "Name": "Latin" - } - }, - "243": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Vai Trabalhar Vagabundo", - "genre": { - "Name": "Latin" - } - }, - "301": { - "Composer": "Da Gama/Toni Garrido", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "A Sombra Da Maldade", - "genre": { - "Name": "Reggae" - } - }, - "302": { - "Composer": "Da Gama/Lazao/Toni Garrido", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "A Estrada", - "genre": { - "Name": "Reggae" - } - }, - "303": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Falar A Verdade", - "genre": { - "Name": "Reggae" - } - }, - "304": { - "Composer": "Harry Lawes/Winston Foster-Vers", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Firmamento", - "genre": { - "Name": "Reggae" - } - }, - "305": { - "Composer": "Bino/Da Gama/Ras Bernardo", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Pensamento", - "genre": { - "Name": "Reggae" - } - }, - "306": { - "Composer": "Bino/Da Gamma/Lazao/Toni Garrido", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Realidade Virtual", - "genre": { - "Name": "Reggae" - } - }, - "307": { - "Composer": "Bino/Da Gama/Toni Garrido", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Doutor", - "genre": { - "Name": "Reggae" - } - }, - "308": { - "Composer": "Bino/Da Gama/Lazao/Ras Bernardo", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Na Frente Da TV", - "genre": { - "Name": "Reggae" - } - }, - "309": { - "Composer": "Cidade Negra", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "Downtown", - "genre": { - "Name": "Reggae" - } - }, - "311": { - "Composer": "Bernardo Vilhena/Da Gama/Lazao", - "album": { - "Title": "Cidade Negra - Hits" - }, - "Name": "A Cor Do Sol", - "genre": { - "Name": "Reggae" - } - }, - "337": { - "Composer": "J B Lenoir/Willie Dixon", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "You Shook Me", - "genre": { - "Name": "Rock" - } - }, - "338": { - "Composer": "Willie Dixon", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "I Can't Quit You Baby", - "genre": { - "Name": "Rock" - } - }, - "339": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Communication Breakdown", - "genre": { - "Name": "Rock" - } - }, - "340": { - "Composer": "Jimmy Page", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Dazed and Confused", - "genre": { - "Name": "Rock" - } - }, - "341": { - "Composer": "Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "The Girl I Love She Got Long Black Wavy Hair", - "genre": { - "Name": "Rock" - } - }, - "342": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "What is and Should Never Be", - "genre": { - "Name": "Rock" - } - }, - "343": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Communication Breakdown(2)", - "genre": { - "Name": "Rock" - } - }, - "344": { - "Composer": "Jimmy Page/Robert Johnson/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Travelling Riverside Blues", - "genre": { - "Name": "Rock" - } - }, - "345": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Whole Lotta Love", - "genre": { - "Name": "Rock" - } - }, - "346": { - "Composer": "Bob Cochran/Sharon Sheeley", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Somethin' Else", - "genre": { - "Name": "Rock" - } - }, - "347": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "Communication Breakdown(3)", - "genre": { - "Name": "Rock" - } - }, - "348": { - "Composer": "Willie Dixon", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "I Can't Quit You Baby(2)", - "genre": { - "Name": "Rock" - } - }, - "349": { - "Composer": "J B Lenoir/Willie Dixon", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "You Shook Me(2)", - "genre": { - "Name": "Rock" - } - }, - "350": { - "Composer": "Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "Name": "How Many More Times", - "genre": { - "Name": "Rock" - } - }, - "351": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Debra Kadabra", - "genre": { - "Name": "Rock" - } - }, - "352": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Carolina Hard-Core Ecstasy", - "genre": { - "Name": "Rock" - } - }, - "353": { - "Composer": "Don Van Vliet", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Sam With The Showing Scalp Flat Top", - "genre": { - "Name": "Rock" - } - }, - "354": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Poofter's Froth Wyoming Plans Ahead", - "genre": { - "Name": "Rock" - } - }, - "355": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "200 Years Old", - "genre": { - "Name": "Rock" - } - }, - "356": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Cucamonga", - "genre": { - "Name": "Rock" - } - }, - "357": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Advance Romance", - "genre": { - "Name": "Rock" - } - }, - "358": { - "Composer": "Don Van Vliet", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Man With The Woman Head", - "genre": { - "Name": "Rock" - } - }, - "359": { - "Composer": "Frank Zappa", - "album": { - "Title": "Bongo Fury" - }, - "Name": "Muffin Man", - "genre": { - "Name": "Rock" - } - }, - "360": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Vai-Vai 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "361": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "X-9 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "362": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Gavioes 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "363": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Nene 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "364": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Rosas De Ouro 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "365": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Mocidade Alegre 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "366": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Camisa Verde 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "367": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Leandro De Itaquera 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "368": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Tucuruvi 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "369": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Aguia De Ouro 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "370": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Ipiranga 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "371": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Morro Da Casa Verde 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "372": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Perola Negra 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "373": { - "Composer": null, - "album": { - "Title": "Carnaval 2001" - }, - "Name": "Sao Lucas 2001", - "genre": { - "Name": "Soundtrack" - } - }, - "374": { - "Composer": "Marcos Valle", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Guanabara", - "genre": { - "Name": "Latin" - } - }, - "375": { - "Composer": "Jorge Ben", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Mas Que Nada", - "genre": { - "Name": "Latin" - } - }, - "377": { - "Composer": "Donato/Gilberto Gil", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "A Paz", - "genre": { - "Name": "Latin" - } - }, - "378": { - "Composer": "Antonio Carlos Jobim", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Wave (Vou te Contar)", - "genre": { - "Name": "Latin" - } - }, - "381": { - "Composer": "Jorge Vercilo/Jota Maranhao", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Pode Parar", - "genre": { - "Name": "Latin" - } - }, - "382": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Menino do Rio", - "genre": { - "Name": "Latin" - } - }, - "383": { - "Composer": "Caetano Veloso", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Ando Meio Desligado", - "genre": { - "Name": "Latin" - } - }, - "385": { - "Composer": "Nando Reis", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "All Star", - "genre": { - "Name": "Latin" - } - }, - "386": { - "Composer": "Alexandre Brazil/Pedro Luis/Rodrigo Cabelo", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Menina Bonita", - "genre": { - "Name": "Latin" - } - }, - "390": { - "Composer": "Alba Carvalho/Fernando Porto", - "album": { - "Title": "Chill: Brazil (Disc 1)" - }, - "Name": "Sambassim (dj patife remix)", - "genre": { - "Name": "Latin" - } - }, - "408": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Free Speech For The Dumb", - "genre": { - "Name": "Metal" - } - }, - "409": { - "Composer": "Harris/Tatler", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "It's Electric", - "genre": { - "Name": "Metal" - } - }, - "410": { - "Composer": "Black Sabbath", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Sabbra Cadabra", - "genre": { - "Name": "Metal" - } - }, - "411": { - "Composer": "Seger", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Turn The Page", - "genre": { - "Name": "Metal" - } - }, - "412": { - "Composer": "Danzig", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Die Die My Darling", - "genre": { - "Name": "Metal" - } - }, - "413": { - "Composer": "Cave", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Loverman", - "genre": { - "Name": "Metal" - } - }, - "414": { - "Composer": "Diamond/Shermann", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Mercyful Fate", - "genre": { - "Name": "Metal" - } - }, - "415": { - "Composer": "A.Bouchard/J.Bouchard/S.Pearlman", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Astronomy", - "genre": { - "Name": "Metal" - } - }, - "416": { - "Composer": "Traditional", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Whiskey In The Jar", - "genre": { - "Name": "Metal" - } - }, - "417": { - "Composer": "Collins/Van Zandt", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "Tuesday's Gone", - "genre": { - "Name": "Metal" - } - }, - "418": { - "Composer": "Molaney/Morris/Roberts/Wainwright", - "album": { - "Title": "Garage Inc. (Disc 1)" - }, - "Name": "The More I See", - "genre": { - "Name": "Metal" - } - }, - "419": { - "Composer": "Roger Taylor", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "A Kind Of Magic", - "genre": { - "Name": "Rock" - } - }, - "420": { - "Composer": "Queen & David Bowie", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Under Pressure", - "genre": { - "Name": "Rock" - } - }, - "421": { - "Composer": "Roger Taylor", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Radio GA GA", - "genre": { - "Name": "Rock" - } - }, - "422": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "I Want It All", - "genre": { - "Name": "Rock" - } - }, - "423": { - "Composer": "John Deacon", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "I Want To Break Free", - "genre": { - "Name": "Rock" - } - }, - "424": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Innuendo", - "genre": { - "Name": "Rock" - } - }, - "425": { - "Composer": "Freddie Mercury", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "It's A Hard Life", - "genre": { - "Name": "Rock" - } - }, - "426": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Breakthru", - "genre": { - "Name": "Rock" - } - }, - "427": { - "Composer": "Brian May", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Who Wants To Live Forever", - "genre": { - "Name": "Rock" - } - }, - "428": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Headlong", - "genre": { - "Name": "Rock" - } - }, - "429": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "The Miracle", - "genre": { - "Name": "Rock" - } - }, - "430": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "I'm Going Slightly Mad", - "genre": { - "Name": "Rock" - } - }, - "431": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "The Invisible Man", - "genre": { - "Name": "Rock" - } - }, - "432": { - "Composer": "Brian May", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Hammer To Fall", - "genre": { - "Name": "Rock" - } - }, - "433": { - "Composer": "Freddie Mercury & John Deacon", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "Friends Will Be Friends", - "genre": { - "Name": "Rock" - } - }, - "434": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "The Show Must Go On", - "genre": { - "Name": "Rock" - } - }, - "435": { - "Composer": "Queen", - "album": { - "Title": "Greatest Hits II" - }, - "Name": "One Vision", - "genre": { - "Name": "Rock" - } - }, - "436": { - "Composer": "Paul Stanley, B. Ezrin", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Detroit Rock City", - "genre": { - "Name": "Rock" - } - }, - "437": { - "Composer": "Paul Stanley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Black Diamond", - "genre": { - "Name": "Rock" - } - }, - "438": { - "Composer": "Paul Stanley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Hard Luck Woman", - "genre": { - "Name": "Rock" - } - }, - "439": { - "Composer": "Paul Stanley, Vincent Poncia", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Sure Know Something", - "genre": { - "Name": "Rock" - } - }, - "440": { - "Composer": "Paul Stanley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Love Gun", - "genre": { - "Name": "Rock" - } - }, - "441": { - "Composer": "Gene Simmons", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Deuce", - "genre": { - "Name": "Rock" - } - }, - "442": { - "Composer": "Gene Simmons, S. Coronel", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Goin' Blind", - "genre": { - "Name": "Rock" - } - }, - "443": { - "Composer": "Ace Frehley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Shock Me", - "genre": { - "Name": "Rock" - } - }, - "444": { - "Composer": "Paul Stanley, B. Ezrin, K. Fowley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Do You Love Me", - "genre": { - "Name": "Rock" - } - }, - "445": { - "Composer": "Gene Simmons, S. Coronel", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "She", - "genre": { - "Name": "Rock" - } - }, - "446": { - "Composer": "Paul Stanley, Vincent Poncia, Desmond Child", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "I Was Made For Loving You", - "genre": { - "Name": "Rock" - } - }, - "447": { - "Composer": "Paul Stanley, Gene Simmons, B. Ezrin", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Shout It Out Loud", - "genre": { - "Name": "Rock" - } - }, - "448": { - "Composer": "Paul Stanley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "God Of Thunder", - "genre": { - "Name": "Rock" - } - }, - "449": { - "Composer": "Gene Simmons", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Calling Dr. Love", - "genre": { - "Name": "Rock" - } - }, - "450": { - "Composer": "S. Penridge, Bob Ezrin, Peter Criss", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Beth", - "genre": { - "Name": "Rock" - } - }, - "451": { - "Composer": "Paul Stanley, Gene Simmons", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Strutter", - "genre": { - "Name": "Rock" - } - }, - "452": { - "Composer": "Paul Stanley, Gene Simmons", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Rock And Roll All Nite", - "genre": { - "Name": "Rock" - } - }, - "453": { - "Composer": "Ace Frehley", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Cold Gin", - "genre": { - "Name": "Rock" - } - }, - "454": { - "Composer": "Gene Simmons", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "Plaster Caster", - "genre": { - "Name": "Rock" - } - }, - "455": { - "Composer": "Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin", - "album": { - "Title": "Greatest Kiss" - }, - "Name": "God Gave Rock 'n' Roll To You", - "genre": { - "Name": "Rock" - } - }, - "456": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Heart of the Night", - "genre": { - "Name": "Jazz" - } - }, - "457": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "De La Luz", - "genre": { - "Name": "Jazz" - } - }, - "458": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Westwood Moon", - "genre": { - "Name": "Jazz" - } - }, - "459": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Midnight", - "genre": { - "Name": "Jazz" - } - }, - "460": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Playtime", - "genre": { - "Name": "Jazz" - } - }, - "461": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Surrender", - "genre": { - "Name": "Jazz" - } - }, - "462": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Valentino's", - "genre": { - "Name": "Jazz" - } - }, - "463": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Believe", - "genre": { - "Name": "Jazz" - } - }, - "464": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "As We Sleep", - "genre": { - "Name": "Jazz" - } - }, - "465": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "When Evening Falls", - "genre": { - "Name": "Jazz" - } - }, - "466": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "J Squared", - "genre": { - "Name": "Jazz" - } - }, - "467": { - "Composer": null, - "album": { - "Title": "Heart of the Night" - }, - "Name": "Best Thing", - "genre": { - "Name": "Jazz" - } - }, - "468": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Maria", - "genre": { - "Name": "Alternative & Punk" - } - }, - "469": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Poprocks And Coke", - "genre": { - "Name": "Alternative & Punk" - } - }, - "470": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Longview", - "genre": { - "Name": "Alternative & Punk" - } - }, - "471": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Welcome To Paradise", - "genre": { - "Name": "Alternative & Punk" - } - }, - "472": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Basket Case", - "genre": { - "Name": "Alternative & Punk" - } - }, - "473": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "When I Come Around", - "genre": { - "Name": "Alternative & Punk" - } - }, - "474": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "She", - "genre": { - "Name": "Alternative & Punk" - } - }, - "475": { - "Composer": "Mike Dirnt -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "J.A.R. (Jason Andrew Relva)", - "genre": { - "Name": "Alternative & Punk" - } - }, - "476": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Geek Stink Breath", - "genre": { - "Name": "Alternative & Punk" - } - }, - "477": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Brain Stew", - "genre": { - "Name": "Alternative & Punk" - } - }, - "478": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Jaded", - "genre": { - "Name": "Alternative & Punk" - } - }, - "479": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Walking Contradiction", - "genre": { - "Name": "Alternative & Punk" - } - }, - "480": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Stuck With Me", - "genre": { - "Name": "Alternative & Punk" - } - }, - "481": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Hitchin' A Ride", - "genre": { - "Name": "Alternative & Punk" - } - }, - "482": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Good Riddance (Time Of Your Life)", - "genre": { - "Name": "Alternative & Punk" - } - }, - "483": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Redundant", - "genre": { - "Name": "Alternative & Punk" - } - }, - "484": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Nice Guys Finish Last", - "genre": { - "Name": "Alternative & Punk" - } - }, - "485": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Minority", - "genre": { - "Name": "Alternative & Punk" - } - }, - "486": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Warning", - "genre": { - "Name": "Alternative & Punk" - } - }, - "487": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Waiting", - "genre": { - "Name": "Alternative & Punk" - } - }, - "488": { - "Composer": "Billie Joe Armstrong -Words Green Day -Music", - "album": { - "Title": "International Superhits" - }, - "Name": "Macy's Day Parade", - "genre": { - "Name": "Alternative & Punk" - } - }, - "489": { - "Composer": "David Coverdale", - "album": { - "Title": "Into The Light" - }, - "Name": "Into The Light", - "genre": { - "Name": "Rock" - } - }, - "490": { - "Composer": "David Coverdale", - "album": { - "Title": "Into The Light" - }, - "Name": "River Song", - "genre": { - "Name": "Rock" - } - }, - "491": { - "Composer": "David Coverdale", - "album": { - "Title": "Into The Light" - }, - "Name": "She Give Me ...", - "genre": { - "Name": "Rock" - } - }, - "492": { - "Composer": "David Coverdale", - "album": { - "Title": "Into The Light" - }, - "Name": "Don't You Cry", - "genre": { - "Name": "Rock" - } - }, - "493": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "Title": "Into The Light" - }, - "Name": "Love Is Blind", - "genre": { - "Name": "Rock" - } - }, - "494": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "Title": "Into The Light" - }, - "Name": "Slave", - "genre": { - "Name": "Rock" - } - }, - "495": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "album": { - "Title": "Into The Light" - }, - "Name": "Cry For Love", - "genre": { - "Name": "Rock" - } - }, - "496": { - "Composer": "Bossi/David Coverdale/Earl Slick", - "album": { - "Title": "Into The Light" - }, - "Name": "Living On Love", - "genre": { - "Name": "Rock" - } - }, - "497": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "Title": "Into The Light" - }, - "Name": "Midnight Blue", - "genre": { - "Name": "Rock" - } - }, - "498": { - "Composer": "Adrian Vanderberg/David Coverdale", - "album": { - "Title": "Into The Light" - }, - "Name": "Too Many Tears", - "genre": { - "Name": "Rock" - } - }, - "499": { - "Composer": "David Coverdale/Earl Slick", - "album": { - "Title": "Into The Light" - }, - "Name": "Don't Lie To Me", - "genre": { - "Name": "Rock" - } - }, - "500": { - "Composer": "David Coverdale", - "album": { - "Title": "Into The Light" - }, - "Name": "Wherever You May Go", - "genre": { - "Name": "Rock" - } - }, - "501": { - "Composer": "Gonzaga Jr.", - "album": { - "Title": "Meus Momentos" - }, - "Name": "Grito De Alerta", - "genre": { - "Name": "Latin" - } - }, - "505": { - "Composer": "Gonzaga Jr/Gonzaguinha", - "album": { - "Title": "Meus Momentos" - }, - "Name": "Sangrando", - "genre": { - "Name": "Latin" - } - }, - "507": { - "Composer": "Gonzaga Jr.", - "album": { - "Title": "Meus Momentos" - }, - "Name": "Lindo Lago Do Amor", - "genre": { - "Name": "Latin" - } - }, - "509": { - "Composer": "Gonzaga Jr.", - "album": { - "Title": "Meus Momentos" - }, - "Name": "Com A Perna No Mundo", - "genre": { - "Name": "Latin" - } - }, - "512": { - "Composer": "Gonzaga Jr", - "album": { - "Title": "Meus Momentos" - }, - "Name": "Comportamento Geral", - "genre": { - "Name": "Latin" - } - }, - "514": { - "Composer": "Gonzaguinha", - "album": { - "Title": "Meus Momentos" - }, - "Name": "Espere Por Mim, Morena", - "genre": { - "Name": "Latin" - } - }, - "515": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Meia-Lua Inteira", - "genre": { - "Name": "Latin" - } - }, - "516": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Voce e Linda", - "genre": { - "Name": "Latin" - } - }, - "517": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Um Indio", - "genre": { - "Name": "Latin" - } - }, - "518": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Podres Poderes", - "genre": { - "Name": "Latin" - } - }, - "519": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Voce Nao Entende Nada - Cotidiano", - "genre": { - "Name": "Latin" - } - }, - "520": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "O Estrangeiro", - "genre": { - "Name": "Latin" - } - }, - "521": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Menino Do Rio", - "genre": { - "Name": "Latin" - } - }, - "522": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Qualquer Coisa", - "genre": { - "Name": "Latin" - } - }, - "523": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Sampa", - "genre": { - "Name": "Latin" - } - }, - "524": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Queixa", - "genre": { - "Name": "Latin" - } - }, - "525": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "O Leaozinho", - "genre": { - "Name": "Latin" - } - }, - "526": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Fora Da Ordem", - "genre": { - "Name": "Latin" - } - }, - "527": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Terra", - "genre": { - "Name": "Latin" - } - }, - "528": { - "Composer": null, - "album": { - "Title": "Minha Historia" - }, - "Name": "Alegria, Alegria", - "genre": { - "Name": "Latin" - } - }, - "543": { - "Composer": "Coverdale/Lord/Paice", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Burn", - "genre": { - "Name": "Rock" - } - }, - "544": { - "Composer": "Coverdale", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Stormbringer", - "genre": { - "Name": "Rock" - } - }, - "545": { - "Composer": "Coverdale/Hughes/Lord/Paice", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Gypsy", - "genre": { - "Name": "Rock" - } - }, - "546": { - "Composer": "Coverdale", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Lady Double Dealer", - "genre": { - "Name": "Rock" - } - }, - "547": { - "Composer": "Coverdale", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Mistreated", - "genre": { - "Name": "Rock" - } - }, - "548": { - "Composer": "Gillan/Glover/Lord/Paice", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "Smoke On The Water", - "genre": { - "Name": "Rock" - } - }, - "549": { - "Composer": "Coverdale/Lord/Paice", - "album": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "Name": "You Fool No One", - "genre": { - "Name": "Rock" - } - }, - "550": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Custard Pie", - "genre": { - "Name": "Rock" - } - }, - "551": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "The Rover", - "genre": { - "Name": "Rock" - } - }, - "552": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "In My Time Of Dying", - "genre": { - "Name": "Rock" - } - }, - "553": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Houses Of The Holy", - "genre": { - "Name": "Rock" - } - }, - "554": { - "Composer": "John Paul Jones", - "album": { - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Trampled Under Foot", - "genre": { - "Name": "Rock" - } - }, - "555": { - "Composer": "John Bonham", - "album": { - "Title": "Physical Graffiti [Disc 1]" - }, - "Name": "Kashmir", - "genre": { - "Name": "Rock" - } - }, - "556": { - "Composer": "Guga/Marquinho Lessa/Tuninho Professor", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Imperatriz", - "genre": { - "Name": "Latin" - } - }, - "557": { - "Composer": "Caruso/Cleber/Deo/Osmar", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Beija-Flor", - "genre": { - "Name": "Latin" - } - }, - "558": { - "Composer": "Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Viradouro", - "genre": { - "Name": "Latin" - } - }, - "559": { - "Composer": "Domenil/J. Brito/Joaozinho/Rap, Marcelo Do", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Mocidade", - "genre": { - "Name": "Latin" - } - }, - "560": { - "Composer": "Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Unidos Da Tijuca", - "genre": { - "Name": "Latin" - } - }, - "561": { - "Composer": "Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Salgueiro", - "genre": { - "Name": "Latin" - } - }, - "565": { - "Composer": "Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Portela", - "genre": { - "Name": "Latin" - } - }, - "566": { - "Composer": "Gule/Jorge 101/Lequinho/Luiz Piao", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Caprichosos", - "genre": { - "Name": "Latin" - } - }, - "569": { - "Composer": "Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som", - "album": { - "Title": "Sambas De Enredo 2001" - }, - "Name": "Tuiuti", - "genre": { - "Name": "Latin" - } - }, - "570": { - "Composer": "Santana", - "album": { - "Title": "Supernatural" - }, - "Name": "(Da Le) Yaleo", - "genre": { - "Name": "Rock" - } - }, - "571": { - "Composer": "Carlos Santana & Dave Matthews", - "album": { - "Title": "Supernatural" - }, - "Name": "Love Of My Life", - "genre": { - "Name": "Rock" - } - }, - "572": { - "Composer": "E. Shrody", - "album": { - "Title": "Supernatural" - }, - "Name": "Put Your Lights On", - "genre": { - "Name": "Rock" - } - }, - "573": { - "Composer": "I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo", - "album": { - "Title": "Supernatural" - }, - "Name": "Africa Bamba", - "genre": { - "Name": "Rock" - } - }, - "574": { - "Composer": "M. Itaal Shur & Rob Thomas", - "album": { - "Title": "Supernatural" - }, - "Name": "Smooth", - "genre": { - "Name": "Rock" - } - }, - "575": { - "Composer": "L. Hill", - "album": { - "Title": "Supernatural" - }, - "Name": "Do You Like The Way", - "genre": { - "Name": "Rock" - } - }, - "576": { - "Composer": "W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow", - "album": { - "Title": "Supernatural" - }, - "Name": "Maria Maria", - "genre": { - "Name": "Rock" - } - }, - "577": { - "Composer": "R. Taha, Carlos Santana & T. Lindsay", - "album": { - "Title": "Supernatural" - }, - "Name": "Migra", - "genre": { - "Name": "Rock" - } - }, - "578": { - "Composer": "F. Olivera", - "album": { - "Title": "Supernatural" - }, - "Name": "Corazon Espinado", - "genre": { - "Name": "Rock" - } - }, - "579": { - "Composer": "Eale-Eye Cherry, M. Simpson, J. King & M. Nishita", - "album": { - "Title": "Supernatural" - }, - "Name": "Wishing It Was", - "genre": { - "Name": "Rock" - } - }, - "580": { - "Composer": "Carlos Santana & KC Porter", - "album": { - "Title": "Supernatural" - }, - "Name": "El Farol", - "genre": { - "Name": "Rock" - } - }, - "581": { - "Composer": "KC Porter & JB Eckl", - "album": { - "Title": "Supernatural" - }, - "Name": "Primavera", - "genre": { - "Name": "Rock" - } - }, - "582": { - "Composer": "Carlos Santana & C. Thompson", - "album": { - "Title": "Supernatural" - }, - "Name": "The Calling", - "genre": { - "Name": "Rock" - } - }, - "584": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Manuel", - "genre": { - "Name": "Latin" - } - }, - "586": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Um Contrato Com Deus", - "genre": { - "Name": "Latin" - } - }, - "587": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Um Jantar Pra Dois", - "genre": { - "Name": "Latin" - } - }, - "589": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Um Love", - "genre": { - "Name": "Latin" - } - }, - "590": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Seis Da Tarde", - "genre": { - "Name": "Latin" - } - }, - "591": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Baixo Rio", - "genre": { - "Name": "Latin" - } - }, - "592": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Sombras Do Meu Destino", - "genre": { - "Name": "Latin" - } - }, - "593": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Do You Have Other Loves?", - "genre": { - "Name": "Latin" - } - }, - "594": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "Agora Que O Dia Acordou", - "genre": { - "Name": "Latin" - } - }, - "596": { - "Composer": null, - "album": { - "Title": "The Best of Ed Motta" - }, - "Name": "A Rua", - "genre": { - "Name": "Latin" - } - }, - "597": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Now's The Time", - "genre": { - "Name": "Jazz" - } - }, - "598": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Jeru", - "genre": { - "Name": "Jazz" - } - }, - "599": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Compulsion", - "genre": { - "Name": "Jazz" - } - }, - "600": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Tempus Fugit", - "genre": { - "Name": "Jazz" - } - }, - "601": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Walkin'", - "genre": { - "Name": "Jazz" - } - }, - "602": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "'Round Midnight", - "genre": { - "Name": "Jazz" - } - }, - "603": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Bye Bye Blackbird", - "genre": { - "Name": "Jazz" - } - }, - "604": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "New Rhumba", - "genre": { - "Name": "Jazz" - } - }, - "605": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Generique", - "genre": { - "Name": "Jazz" - } - }, - "606": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Summertime", - "genre": { - "Name": "Jazz" - } - }, - "607": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "So What", - "genre": { - "Name": "Jazz" - } - }, - "608": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "The Pan Piper", - "genre": { - "Name": "Jazz" - } - }, - "609": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "Name": "Someday My Prince Will Come", - "genre": { - "Name": "Jazz" - } - }, - "610": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "My Funny Valentine (Live)", - "genre": { - "Name": "Jazz" - } - }, - "611": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "E.S.P.", - "genre": { - "Name": "Jazz" - } - }, - "612": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Nefertiti", - "genre": { - "Name": "Jazz" - } - }, - "613": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Petits Machins (Little Stuff)", - "genre": { - "Name": "Jazz" - } - }, - "614": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Miles Runs The Voodoo Down", - "genre": { - "Name": "Jazz" - } - }, - "615": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Little Church (Live)", - "genre": { - "Name": "Jazz" - } - }, - "616": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Black Satin", - "genre": { - "Name": "Jazz" - } - }, - "617": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Jean Pierre (Live)", - "genre": { - "Name": "Jazz" - } - }, - "618": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Time After Time", - "genre": { - "Name": "Jazz" - } - }, - "619": { - "Composer": "Miles Davis", - "album": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "Name": "Portia", - "genre": { - "Name": "Jazz" - } - }, - "620": { - "Composer": "Blackmore/Gillan/Glover/Lord/Paice", - "album": { - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "Space Truckin'", - "genre": { - "Name": "Rock" - } - }, - "621": { - "Composer": "Gillan/Glover/Lord/Nix - Blackmore/Paice", - "album": { - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "Going Down / Highway Star", - "genre": { - "Name": "Rock" - } - }, - "622": { - "Composer": "Blackmore/Coverdale", - "album": { - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "Mistreated (Alternate Version)", - "genre": { - "Name": "Rock" - } - }, - "623": { - "Composer": "Blackmore/Coverdale/Lord/Paice", - "album": { - "Title": "The Final Concerts (Disc 2)" - }, - "Name": "You Fool No One (Alternate Version)", - "genre": { - "Name": "Rock" - } - }, - "624": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Jeepers Creepers", - "genre": { - "Name": "Jazz" - } - }, - "625": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Blue Rythm Fantasy", - "genre": { - "Name": "Jazz" - } - }, - "626": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Drum Boogie", - "genre": { - "Name": "Jazz" - } - }, - "627": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Let Me Off Uptown", - "genre": { - "Name": "Jazz" - } - }, - "628": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Leave Us Leap", - "genre": { - "Name": "Jazz" - } - }, - "629": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Opus No.1", - "genre": { - "Name": "Jazz" - } - }, - "630": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Boogie Blues", - "genre": { - "Name": "Jazz" - } - }, - "631": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "How High The Moon", - "genre": { - "Name": "Jazz" - } - }, - "632": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Disc Jockey Jump", - "genre": { - "Name": "Jazz" - } - }, - "633": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Up An' Atom", - "genre": { - "Name": "Jazz" - } - }, - "634": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Bop Boogie", - "genre": { - "Name": "Jazz" - } - }, - "635": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Lemon Drop", - "genre": { - "Name": "Jazz" - } - }, - "636": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Coronation Drop", - "genre": { - "Name": "Jazz" - } - }, - "637": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Overtime", - "genre": { - "Name": "Jazz" - } - }, - "638": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Imagination", - "genre": { - "Name": "Jazz" - } - }, - "639": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Don't Take Your Love From Me", - "genre": { - "Name": "Jazz" - } - }, - "640": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Midget", - "genre": { - "Name": "Jazz" - } - }, - "641": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "I'm Coming Virginia", - "genre": { - "Name": "Jazz" - } - }, - "642": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Payin' Them Dues Blues", - "genre": { - "Name": "Jazz" - } - }, - "643": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Jungle Drums", - "genre": { - "Name": "Jazz" - } - }, - "644": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Showcase", - "genre": { - "Name": "Jazz" - } - }, - "645": { - "Composer": null, - "album": { - "Title": "Up An' Atom" - }, - "Name": "Swedish Schnapps", - "genre": { - "Name": "Jazz" - } - }, - "664": { - "Composer": null, - "album": { - "Title": "Vozes do MPB" - }, - "Name": "Marina (Dorival Caymmi)", - "genre": { - "Name": "Latin" - } - }, - "665": { - "Composer": null, - "album": { - "Title": "Vozes do MPB" - }, - "Name": "Aquarela (Toquinho)", - "genre": { - "Name": "Latin" - } - }, - "667": { - "Composer": null, - "album": { - "Title": "Vozes do MPB" - }, - "Name": "Dona (Roupa Nova)", - "genre": { - "Name": "Latin" - } - }, - "670": { - "Composer": null, - "album": { - "Title": "Vozes do MPB" - }, - "Name": "Romaria (Renato Teixeira)", - "genre": { - "Name": "Latin" - } - }, - "672": { - "Composer": null, - "album": { - "Title": "Vozes do MPB" - }, - "Name": "Wave (Os Cariocas)", - "genre": { - "Name": "Latin" - } - }, - "673": { - "Composer": null, - "album": { - "Title": "Vozes do MPB" - }, - "Name": "Garota de Ipanema (Dick Farney)", - "genre": { - "Name": "Latin" - } - }, - "675": { - "Composer": "Hawkins-Lewis-Broadwater", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Susie Q", - "genre": { - "Name": "Rock" - } - }, - "676": { - "Composer": "Jay Hawkins", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "I Put A Spell On You", - "genre": { - "Name": "Rock" - } - }, - "677": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Proud Mary", - "genre": { - "Name": "Rock" - } - }, - "678": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Bad Moon Rising", - "genre": { - "Name": "Rock" - } - }, - "679": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Lodi", - "genre": { - "Name": "Rock" - } - }, - "680": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Green River", - "genre": { - "Name": "Rock" - } - }, - "681": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Commotion", - "genre": { - "Name": "Rock" - } - }, - "682": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Down On The Corner", - "genre": { - "Name": "Rock" - } - }, - "683": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Fortunate Son", - "genre": { - "Name": "Rock" - } - }, - "684": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Travelin' Band", - "genre": { - "Name": "Rock" - } - }, - "685": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Who'll Stop The Rain", - "genre": { - "Name": "Rock" - } - }, - "686": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Up Around The Bend", - "genre": { - "Name": "Rock" - } - }, - "687": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Run Through The Jungle", - "genre": { - "Name": "Rock" - } - }, - "688": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Lookin' Out My Back Door", - "genre": { - "Name": "Rock" - } - }, - "689": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Long As I Can See The Light", - "genre": { - "Name": "Rock" - } - }, - "690": { - "Composer": "Whitfield-Strong", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "I Heard It Through The Grapevine", - "genre": { - "Name": "Rock" - } - }, - "691": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Have You Ever Seen The Rain?", - "genre": { - "Name": "Rock" - } - }, - "692": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Hey Tonight", - "genre": { - "Name": "Rock" - } - }, - "693": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Sweet Hitch-Hiker", - "genre": { - "Name": "Rock" - } - }, - "694": { - "Composer": "J. C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 1" - }, - "Name": "Someday Never Comes", - "genre": { - "Name": "Rock" - } - }, - "695": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Walking On The Water", - "genre": { - "Name": "Rock" - } - }, - "696": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Suzie-Q, Pt. 2", - "genre": { - "Name": "Rock" - } - }, - "697": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Born On The Bayou", - "genre": { - "Name": "Rock" - } - }, - "698": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Good Golly Miss Molly", - "genre": { - "Name": "Rock" - } - }, - "699": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Tombstone Shadow", - "genre": { - "Name": "Rock" - } - }, - "700": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Wrote A Song For Everyone", - "genre": { - "Name": "Rock" - } - }, - "701": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Night Time Is The Right Time", - "genre": { - "Name": "Rock" - } - }, - "702": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Cotton Fields", - "genre": { - "Name": "Rock" - } - }, - "703": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "It Came Out Of The Sky", - "genre": { - "Name": "Rock" - } - }, - "704": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Don't Look Now", - "genre": { - "Name": "Rock" - } - }, - "705": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "The Midnight Special", - "genre": { - "Name": "Rock" - } - }, - "706": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Before You Accuse Me", - "genre": { - "Name": "Rock" - } - }, - "707": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "My Baby Left Me", - "genre": { - "Name": "Rock" - } - }, - "708": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Pagan Baby", - "genre": { - "Name": "Rock" - } - }, - "709": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "(Wish I Could) Hideaway", - "genre": { - "Name": "Rock" - } - }, - "710": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "It's Just A Thought", - "genre": { - "Name": "Rock" - } - }, - "711": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Molina", - "genre": { - "Name": "Rock" - } - }, - "712": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Born To Move", - "genre": { - "Name": "Rock" - } - }, - "713": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Lookin' For A Reason", - "genre": { - "Name": "Rock" - } - }, - "714": { - "Composer": "J.C. Fogerty", - "album": { - "Title": "Chronicle, Vol. 2" - }, - "Name": "Hello Mary Lou", - "genre": { - "Name": "Rock" - } - }, - "745": { - "Composer": "Bolin/Coverdale/Paice", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "Comin' Home", - "genre": { - "Name": "Rock" - } - }, - "746": { - "Composer": "Cook/Coverdale", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "Lady Luck", - "genre": { - "Name": "Rock" - } - }, - "747": { - "Composer": "Bolin/Hughes", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "Gettin' Tighter", - "genre": { - "Name": "Rock" - } - }, - "748": { - "Composer": "Bolin/Coverdale", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "Dealer", - "genre": { - "Name": "Rock" - } - }, - "749": { - "Composer": "Bolin/Coverdale", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "I Need Love", - "genre": { - "Name": "Rock" - } - }, - "750": { - "Composer": "Bolin/Coverdale", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "Drifter", - "genre": { - "Name": "Rock" - } - }, - "751": { - "Composer": "Bolin/Coverdale", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "Love Child", - "genre": { - "Name": "Rock" - } - }, - "752": { - "Composer": "Bolin/Hughes/Lord", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "This Time Around / Owed to 'G' [Instrumental]", - "genre": { - "Name": "Rock" - } - }, - "753": { - "Composer": "Coverdale/Hughes", - "album": { - "Title": "Come Taste The Band" - }, - "Name": "You Keep On Moving", - "genre": { - "Name": "Rock" - } - }, - "754": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Speed King", - "genre": { - "Name": "Rock" - } - }, - "755": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Bloodsucker", - "genre": { - "Name": "Rock" - } - }, - "756": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Child In Time", - "genre": { - "Name": "Rock" - } - }, - "757": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Flight Of The Rat", - "genre": { - "Name": "Rock" - } - }, - "758": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Into The Fire", - "genre": { - "Name": "Rock" - } - }, - "759": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Living Wreck", - "genre": { - "Name": "Rock" - } - }, - "760": { - "Composer": "Blackmore, Gillan, Glover, Lord, Paice", - "album": { - "Title": "Deep Purple In Rock" - }, - "Name": "Hard Lovin' Man", - "genre": { - "Name": "Rock" - } - }, - "761": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "Fireball", - "genre": { - "Name": "Rock" - } - }, - "762": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "No No No", - "genre": { - "Name": "Rock" - } - }, - "763": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "Strange Kind Of Woman", - "genre": { - "Name": "Rock" - } - }, - "764": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "Anyone's Daughter", - "genre": { - "Name": "Rock" - } - }, - "765": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "The Mule", - "genre": { - "Name": "Rock" - } - }, - "766": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "Fools", - "genre": { - "Name": "Rock" - } - }, - "767": { - "Composer": "Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Fireball" - }, - "Name": "No One Came", - "genre": { - "Name": "Rock" - } - }, - "768": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Knocking At Your Back Door", - "genre": { - "Name": "Rock" - } - }, - "769": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Bad Attitude", - "genre": { - "Name": "Rock" - } - }, - "770": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Child In Time (Son Of Aleric - Instrumental)", - "genre": { - "Name": "Rock" - } - }, - "771": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Nobody's Home", - "genre": { - "Name": "Rock" - } - }, - "772": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Black Night", - "genre": { - "Name": "Rock" - } - }, - "773": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Perfect Strangers", - "genre": { - "Name": "Rock" - } - }, - "774": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "The Unwritten Law", - "genre": { - "Name": "Rock" - } - }, - "775": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Call Of The Wild", - "genre": { - "Name": "Rock" - } - }, - "776": { - "Composer": "South", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Hush", - "genre": { - "Name": "Rock" - } - }, - "777": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Smoke On The Water", - "genre": { - "Name": "Rock" - } - }, - "778": { - "Composer": "Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice", - "album": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "Name": "Space Trucking", - "genre": { - "Name": "Rock" - } - }, - "779": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Highway Star", - "genre": { - "Name": "Rock" - } - }, - "780": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Maybe I'm A Leo", - "genre": { - "Name": "Rock" - } - }, - "781": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Pictures Of Home", - "genre": { - "Name": "Rock" - } - }, - "782": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Never Before", - "genre": { - "Name": "Rock" - } - }, - "783": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Smoke On The Water", - "genre": { - "Name": "Rock" - } - }, - "784": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Lazy", - "genre": { - "Name": "Rock" - } - }, - "785": { - "Composer": "Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover", - "album": { - "Title": "Machine Head" - }, - "Name": "Space Truckin'", - "genre": { - "Name": "Rock" - } - }, - "786": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Vavoom : Ted The Mechanic", - "genre": { - "Name": "Rock" - } - }, - "787": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Loosen My Strings", - "genre": { - "Name": "Rock" - } - }, - "788": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Soon Forgotten", - "genre": { - "Name": "Rock" - } - }, - "789": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Sometimes I Feel Like Screaming", - "genre": { - "Name": "Rock" - } - }, - "790": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Cascades : I'm Not Your Lover", - "genre": { - "Name": "Rock" - } - }, - "791": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "The Aviator", - "genre": { - "Name": "Rock" - } - }, - "792": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Rosa's Cantina", - "genre": { - "Name": "Rock" - } - }, - "793": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "A Castle Full Of Rascals", - "genre": { - "Name": "Rock" - } - }, - "794": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "A Touch Away", - "genre": { - "Name": "Rock" - } - }, - "795": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Hey Cisco", - "genre": { - "Name": "Rock" - } - }, - "796": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "Somebody Stole My Guitar", - "genre": { - "Name": "Rock" - } - }, - "797": { - "Composer": "Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice", - "album": { - "Title": "Purpendicular" - }, - "Name": "The Purpendicular Waltz", - "genre": { - "Name": "Rock" - } - }, - "798": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "King Of Dreams", - "genre": { - "Name": "Rock" - } - }, - "799": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "The Cut Runs Deep", - "genre": { - "Name": "Rock" - } - }, - "800": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Fire In The Basement", - "genre": { - "Name": "Rock" - } - }, - "801": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Truth Hurts", - "genre": { - "Name": "Rock" - } - }, - "802": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Breakfast In Bed", - "genre": { - "Name": "Rock" - } - }, - "803": { - "Composer": "Blackmore, Glover, Turner", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Love Conquers All", - "genre": { - "Name": "Rock" - } - }, - "804": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Fortuneteller", - "genre": { - "Name": "Rock" - } - }, - "805": { - "Composer": "Turner, Held, Greenwood", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Too Much Is Not Enough", - "genre": { - "Name": "Rock" - } - }, - "806": { - "Composer": "Blackmore, Glover, Turner, Lord, Paice", - "album": { - "Title": "Slaves And Masters" - }, - "Name": "Wicked Ways", - "genre": { - "Name": "Rock" - } - }, - "807": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "Stormbringer", - "genre": { - "Name": "Rock" - } - }, - "808": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "Love Don't Mean a Thing", - "genre": { - "Name": "Rock" - } - }, - "809": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord", - "album": { - "Title": "Stormbringer" - }, - "Name": "Holy Man", - "genre": { - "Name": "Rock" - } - }, - "810": { - "Composer": "D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord", - "album": { - "Title": "Stormbringer" - }, - "Name": "Hold On", - "genre": { - "Name": "Rock" - } - }, - "811": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "Lady Double Dealer", - "genre": { - "Name": "Rock" - } - }, - "812": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "You Can't Do it Right (With the One You Love)", - "genre": { - "Name": "Rock" - } - }, - "813": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "High Ball Shooter", - "genre": { - "Name": "Rock" - } - }, - "814": { - "Composer": "D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "The Gypsy", - "genre": { - "Name": "Rock" - } - }, - "815": { - "Composer": "D.Coverdale/R.Blackmore/Ritchie Blackmore", - "album": { - "Title": "Stormbringer" - }, - "Name": "Soldier Of Fortune", - "genre": { - "Name": "Rock" - } - }, - "816": { - "Composer": "ian paice/jon lord", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "The Battle Rages On", - "genre": { - "Name": "Rock" - } - }, - "817": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Lick It Up", - "genre": { - "Name": "Rock" - } - }, - "818": { - "Composer": "jon lord/roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Anya", - "genre": { - "Name": "Rock" - } - }, - "819": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Talk About Love", - "genre": { - "Name": "Rock" - } - }, - "820": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Time To Kill", - "genre": { - "Name": "Rock" - } - }, - "821": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Ramshackle Man", - "genre": { - "Name": "Rock" - } - }, - "822": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "A Twist In The Tail", - "genre": { - "Name": "Rock" - } - }, - "823": { - "Composer": "jon lord/roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Nasty Piece Of Work", - "genre": { - "Name": "Rock" - } - }, - "824": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "Solitaire", - "genre": { - "Name": "Rock" - } - }, - "825": { - "Composer": "roger glover", - "album": { - "Title": "The Battle Rages On" - }, - "Name": "One Man's Meat", - "genre": { - "Name": "Rock" - } - }, - "826": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Pour Some Sugar On Me", - "genre": { - "Name": "Rock" - } - }, - "827": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Photograph", - "genre": { - "Name": "Rock" - } - }, - "828": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Love Bites", - "genre": { - "Name": "Rock" - } - }, - "829": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Let's Get Rocked", - "genre": { - "Name": "Rock" - } - }, - "830": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Two Steps Behind [Acoustic Version]", - "genre": { - "Name": "Rock" - } - }, - "831": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Animal", - "genre": { - "Name": "Rock" - } - }, - "832": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Heaven Is", - "genre": { - "Name": "Rock" - } - }, - "833": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Rocket", - "genre": { - "Name": "Rock" - } - }, - "834": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "When Love & Hate Collide", - "genre": { - "Name": "Rock" - } - }, - "835": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Action", - "genre": { - "Name": "Rock" - } - }, - "836": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Make Love Like A Man", - "genre": { - "Name": "Rock" - } - }, - "837": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Armageddon It", - "genre": { - "Name": "Rock" - } - }, - "838": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Have You Ever Needed Someone So Bad", - "genre": { - "Name": "Rock" - } - }, - "839": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Rock Of Ages", - "genre": { - "Name": "Rock" - } - }, - "840": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Hysteria", - "genre": { - "Name": "Rock" - } - }, - "841": { - "Composer": null, - "album": { - "Title": "Vault: Def Leppard's Greatest Hits" - }, - "Name": "Bringin' On The Heartbreak", - "genre": { - "Name": "Rock" - } - }, - "842": { - "Composer": "Jim Beard", - "album": { - "Title": "Outbreak" - }, - "Name": "Roll Call", - "genre": { - "Name": "Jazz" - } - }, - "843": { - "Composer": "John Scofield, Robert Aries, Milton Chambers and Gary Grainger", - "album": { - "Title": "Outbreak" - }, - "Name": "Otay", - "genre": { - "Name": "Jazz" - } - }, - "844": { - "Composer": "Jim Beard", - "album": { - "Title": "Outbreak" - }, - "Name": "Groovus Interruptus", - "genre": { - "Name": "Jazz" - } - }, - "845": { - "Composer": "Jon Herington", - "album": { - "Title": "Outbreak" - }, - "Name": "Paris On Mine", - "genre": { - "Name": "Jazz" - } - }, - "846": { - "Composer": "Sylvester Stewart", - "album": { - "Title": "Outbreak" - }, - "Name": "In Time", - "genre": { - "Name": "Jazz" - } - }, - "847": { - "Composer": "Dean Brown, Dennis Chambers & Jim Beard", - "album": { - "Title": "Outbreak" - }, - "Name": "Plan B", - "genre": { - "Name": "Jazz" - } - }, - "848": { - "Composer": "Jim Beard & Jon Herington", - "album": { - "Title": "Outbreak" - }, - "Name": "Outbreak", - "genre": { - "Name": "Jazz" - } - }, - "849": { - "Composer": "John Scofield", - "album": { - "Title": "Outbreak" - }, - "Name": "Baltimore, DC", - "genre": { - "Name": "Jazz" - } - }, - "850": { - "Composer": "James Brown & Bobby Byrd", - "album": { - "Title": "Outbreak" - }, - "Name": "Talkin Loud and Saying Nothin", - "genre": { - "Name": "Jazz" - } - }, - "852": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Meu Bem-Querer", - "genre": { - "Name": "Latin" - } - }, - "853": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Cigano", - "genre": { - "Name": "Latin" - } - }, - "854": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Boa Noite", - "genre": { - "Name": "Latin" - } - }, - "855": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Fato Consumado", - "genre": { - "Name": "Latin" - } - }, - "858": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Esquinas", - "genre": { - "Name": "Latin" - } - }, - "859": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Se...", - "genre": { - "Name": "Latin" - } - }, - "860": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Eu Te Devoro", - "genre": { - "Name": "Latin" - } - }, - "862": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Acelerou", - "genre": { - "Name": "Latin" - } - }, - "863": { - "Composer": null, - "album": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "Name": "Um Amor Puro", - "genre": { - "Name": "Latin" - } - }, - "864": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Samurai", - "genre": { - "Name": "Latin" - } - }, - "865": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Nem Um Dia", - "genre": { - "Name": "Latin" - } - }, - "866": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Oceano", - "genre": { - "Name": "Latin" - } - }, - "868": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Serrado", - "genre": { - "Name": "Latin" - } - }, - "869": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Flor De Lis", - "genre": { - "Name": "Latin" - } - }, - "871": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Azul", - "genre": { - "Name": "Latin" - } - }, - "872": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Seduzir", - "genre": { - "Name": "Latin" - } - }, - "873": { - "Composer": "Djavan - Gabriel, O Pensador", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "A Carta", - "genre": { - "Name": "Latin" - } - }, - "874": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Sina", - "genre": { - "Name": "Latin" - } - }, - "875": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Acelerou", - "genre": { - "Name": "Latin" - } - }, - "876": { - "Composer": "Djavan", - "album": { - "Title": "Djavan Ao Vivo - Vol. 1" - }, - "Name": "Um Amor Puro", - "genre": { - "Name": "Latin" - } - }, - "891": { - "Composer": "Clapton/Gordon", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Layla", - "genre": { - "Name": "Blues" - } - }, - "892": { - "Composer": "Clapton/Harrison", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Badge", - "genre": { - "Name": "Blues" - } - }, - "893": { - "Composer": "Bruce/Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "I Feel Free", - "genre": { - "Name": "Blues" - } - }, - "894": { - "Composer": "Bruce/Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Sunshine Of Your Love", - "genre": { - "Name": "Blues" - } - }, - "895": { - "Composer": "Clapton/Robert Johnson Arr: Eric Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Crossroads", - "genre": { - "Name": "Blues" - } - }, - "896": { - "Composer": "Clapton/Collins/Pappalardi", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Strange Brew", - "genre": { - "Name": "Blues" - } - }, - "897": { - "Composer": "Bruce/Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "White Room", - "genre": { - "Name": "Blues" - } - }, - "898": { - "Composer": "Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Bell Bottom Blues", - "genre": { - "Name": "Blues" - } - }, - "899": { - "Composer": "Cale/Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Cocaine", - "genre": { - "Name": "Blues" - } - }, - "900": { - "Composer": "Marley", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "I Shot The Sheriff", - "genre": { - "Name": "Blues" - } - }, - "901": { - "Composer": "Clapton/J. J. Cale", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "After Midnight", - "genre": { - "Name": "Blues" - } - }, - "902": { - "Composer": "Clapton/Trad. Arr. Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Swing Low Sweet Chariot", - "genre": { - "Name": "Blues" - } - }, - "903": { - "Composer": "Clapton/Levy", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Lay Down Sally", - "genre": { - "Name": "Blues" - } - }, - "904": { - "Composer": "Clapton/Dylan", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Knockin On Heavens Door", - "genre": { - "Name": "Blues" - } - }, - "905": { - "Composer": "Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Wonderful Tonight", - "genre": { - "Name": "Blues" - } - }, - "906": { - "Composer": "Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Let It Grow", - "genre": { - "Name": "Blues" - } - }, - "907": { - "Composer": "Clapton/F.eldman/Linn", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "Promises", - "genre": { - "Name": "Blues" - } - }, - "908": { - "Composer": "Clapton", - "album": { - "Title": "The Cream Of Clapton" - }, - "Name": "I Can't Stand It", - "genre": { - "Name": "Blues" - } - }, - "909": { - "Composer": "Eric Clapton", - "album": { - "Title": "Unplugged" - }, - "Name": "Signe", - "genre": { - "Name": "Blues" - } - }, - "910": { - "Composer": "Eugene McDaniel", - "album": { - "Title": "Unplugged" - }, - "Name": "Before You Accuse Me", - "genre": { - "Name": "Blues" - } - }, - "911": { - "Composer": "Big Bill Broonzy", - "album": { - "Title": "Unplugged" - }, - "Name": "Hey Hey", - "genre": { - "Name": "Blues" - } - }, - "912": { - "Composer": "Eric Clapton, Will Jennings", - "album": { - "Title": "Unplugged" - }, - "Name": "Tears In Heaven", - "genre": { - "Name": "Blues" - } - }, - "913": { - "Composer": "Eric Clapton", - "album": { - "Title": "Unplugged" - }, - "Name": "Lonely Stranger", - "genre": { - "Name": "Blues" - } - }, - "914": { - "Composer": "Jimmy Cox", - "album": { - "Title": "Unplugged" - }, - "Name": "Nobody Knows You When You're Down & Out", - "genre": { - "Name": "Blues" - } - }, - "915": { - "Composer": "Eric Clapton, Jim Gordon", - "album": { - "Title": "Unplugged" - }, - "Name": "Layla", - "genre": { - "Name": "Blues" - } - }, - "916": { - "Composer": "Jerry Lynn Williams", - "album": { - "Title": "Unplugged" - }, - "Name": "Running On Faith", - "genre": { - "Name": "Blues" - } - }, - "917": { - "Composer": "Robert Johnson", - "album": { - "Title": "Unplugged" - }, - "Name": "Walkin' Blues", - "genre": { - "Name": "Blues" - } - }, - "918": { - "Composer": "Traditional", - "album": { - "Title": "Unplugged" - }, - "Name": "Alberta", - "genre": { - "Name": "Blues" - } - }, - "919": { - "Composer": "Jesse Fuller", - "album": { - "Title": "Unplugged" - }, - "Name": "San Francisco Bay Blues", - "genre": { - "Name": "Blues" - } - }, - "920": { - "Composer": "Robert Johnson", - "album": { - "Title": "Unplugged" - }, - "Name": "Malted Milk", - "genre": { - "Name": "Blues" - } - }, - "921": { - "Composer": "Eric Clapton, Robert Cray", - "album": { - "Title": "Unplugged" - }, - "Name": "Old Love", - "genre": { - "Name": "Blues" - } - }, - "922": { - "Composer": "McKinley Morgenfield (Muddy Waters)", - "album": { - "Title": "Unplugged" - }, - "Name": "Rollin' And Tumblin'", - "genre": { - "Name": "Blues" - } - }, - "923": { - "Composer": "Jon Hudson/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Collision", - "genre": { - "Name": "Alternative & Punk" - } - }, - "924": { - "Composer": "Jon Hudson/Mike Bordin/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Stripsearch", - "genre": { - "Name": "Alternative & Punk" - } - }, - "925": { - "Composer": "Bill Gould/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Last Cup Of Sorrow", - "genre": { - "Name": "Alternative & Punk" - } - }, - "926": { - "Composer": "Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Naked In Front Of The Computer", - "genre": { - "Name": "Alternative & Punk" - } - }, - "927": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Helpless", - "genre": { - "Name": "Alternative & Punk" - } - }, - "928": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Mouth To Mouth", - "genre": { - "Name": "Alternative & Punk" - } - }, - "929": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Ashes To Ashes", - "genre": { - "Name": "Alternative & Punk" - } - }, - "930": { - "Composer": "Bill Gould/Mike Bordin/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "She Loves Me Not", - "genre": { - "Name": "Alternative & Punk" - } - }, - "931": { - "Composer": "Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Got That Feeling", - "genre": { - "Name": "Alternative & Punk" - } - }, - "932": { - "Composer": "Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Paths Of Glory", - "genre": { - "Name": "Alternative & Punk" - } - }, - "933": { - "Composer": "Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Home Sick Home", - "genre": { - "Name": "Alternative & Punk" - } - }, - "934": { - "Composer": "Bill Gould/Mike Patton", - "album": { - "Title": "Album Of The Year" - }, - "Name": "Pristina", - "genre": { - "Name": "Alternative & Punk" - } - }, - "935": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Land Of Sunshine", - "genre": { - "Name": "Alternative & Punk" - } - }, - "936": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Caffeine", - "genre": { - "Name": "Alternative & Punk" - } - }, - "937": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Midlife Crisis", - "genre": { - "Name": "Alternative & Punk" - } - }, - "938": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "RV", - "genre": { - "Name": "Alternative & Punk" - } - }, - "939": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Smaller And Smaller", - "genre": { - "Name": "Alternative & Punk" - } - }, - "940": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Everything's Ruined", - "genre": { - "Name": "Alternative & Punk" - } - }, - "941": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Malpractice", - "genre": { - "Name": "Alternative & Punk" - } - }, - "942": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Kindergarten", - "genre": { - "Name": "Alternative & Punk" - } - }, - "943": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Be Aggressive", - "genre": { - "Name": "Alternative & Punk" - } - }, - "944": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "A Small Victory", - "genre": { - "Name": "Alternative & Punk" - } - }, - "945": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Crack Hitler", - "genre": { - "Name": "Alternative & Punk" - } - }, - "946": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Jizzlobber", - "genre": { - "Name": "Alternative & Punk" - } - }, - "947": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Midnight Cowboy", - "genre": { - "Name": "Alternative & Punk" - } - }, - "948": { - "Composer": null, - "album": { - "Title": "Angel Dust" - }, - "Name": "Easy", - "genre": { - "Name": "Alternative & Punk" - } - }, - "949": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Get Out", - "genre": { - "Name": "Rock" - } - }, - "950": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Ricochet", - "genre": { - "Name": "Rock" - } - }, - "951": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Evidence", - "genre": { - "Name": "Rock" - } - }, - "952": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "The Gentle Art Of Making Enemies", - "genre": { - "Name": "Rock" - } - }, - "953": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Star A.D.", - "genre": { - "Name": "Rock" - } - }, - "954": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Cuckoo For Caca", - "genre": { - "Name": "Rock" - } - }, - "955": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Caralho Voador", - "genre": { - "Name": "Rock" - } - }, - "956": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Ugly In The Morning", - "genre": { - "Name": "Rock" - } - }, - "957": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Digging The Grave", - "genre": { - "Name": "Rock" - } - }, - "958": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Take This Bottle", - "genre": { - "Name": "Rock" - } - }, - "959": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton, Trey Spruance", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "King For A Day", - "genre": { - "Name": "Rock" - } - }, - "960": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "What A Day", - "genre": { - "Name": "Rock" - } - }, - "961": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "The Last To Know", - "genre": { - "Name": "Rock" - } - }, - "962": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Just A Man", - "genre": { - "Name": "Rock" - } - }, - "963": { - "Composer": "Mike Bordin, Billy Gould, Mike Patton", - "album": { - "Title": "King For A Day Fool For A Lifetime" - }, - "Name": "Absolute Zero", - "genre": { - "Name": "Rock" - } - }, - "964": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "From Out Of Nowhere", - "genre": { - "Name": "Alternative & Punk" - } - }, - "965": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Epic", - "genre": { - "Name": "Alternative & Punk" - } - }, - "966": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Falling To Pieces", - "genre": { - "Name": "Alternative & Punk" - } - }, - "967": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Surprise! You're Dead!", - "genre": { - "Name": "Alternative & Punk" - } - }, - "968": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Zombie Eaters", - "genre": { - "Name": "Alternative & Punk" - } - }, - "969": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "The Real Thing", - "genre": { - "Name": "Alternative & Punk" - } - }, - "970": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Underwater Love", - "genre": { - "Name": "Alternative & Punk" - } - }, - "971": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "The Morning After", - "genre": { - "Name": "Alternative & Punk" - } - }, - "972": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Woodpecker From Mars", - "genre": { - "Name": "Alternative & Punk" - } - }, - "973": { - "Composer": "Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne", - "album": { - "Title": "The Real Thing" - }, - "Name": "War Pigs", - "genre": { - "Name": "Alternative & Punk" - } - }, - "974": { - "Composer": "Faith No More", - "album": { - "Title": "The Real Thing" - }, - "Name": "Edge Of The World", - "genre": { - "Name": "Alternative & Punk" - } - }, - "975": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Deixa Entrar", - "genre": { - "Name": "Latin" - } - }, - "976": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Falamansa Song", - "genre": { - "Name": "Latin" - } - }, - "977": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Xote Dos Milagres", - "genre": { - "Name": "Latin" - } - }, - "981": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Zeca Violeiro", - "genre": { - "Name": "Latin" - } - }, - "982": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Avisa", - "genre": { - "Name": "Latin" - } - }, - "983": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Principiando/Decolagem", - "genre": { - "Name": "Latin" - } - }, - "984": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Asas", - "genre": { - "Name": "Latin" - } - }, - "985": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Medo De Escuro", - "genre": { - "Name": "Latin" - } - }, - "987": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Minha Gata", - "genre": { - "Name": "Latin" - } - }, - "988": { - "Composer": null, - "album": { - "Title": "Deixa Entrar" - }, - "Name": "Desaforo", - "genre": { - "Name": "Latin" - } - }, - "989": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "In Your Honor", - "genre": { - "Name": "Rock" - } - }, - "990": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "No Way Back", - "genre": { - "Name": "Rock" - } - }, - "991": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Best Of You", - "genre": { - "Name": "Rock" - } - }, - "992": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "DOA", - "genre": { - "Name": "Rock" - } - }, - "993": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Hell", - "genre": { - "Name": "Rock" - } - }, - "994": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "The Last Song", - "genre": { - "Name": "Rock" - } - }, - "995": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Free Me", - "genre": { - "Name": "Rock" - } - }, - "996": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "Resolve", - "genre": { - "Name": "Rock" - } - }, - "997": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "The Deepest Blues Are Black", - "genre": { - "Name": "Rock" - } - }, - "998": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett", - "album": { - "Title": "In Your Honor [Disc 1]" - }, - "Name": "End Over End", - "genre": { - "Name": "Rock" - } - }, - "999": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Still", - "genre": { - "Name": "Rock" - } - }, - "1000": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "What If I Do?", - "genre": { - "Name": "Rock" - } - }, - "1001": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Miracle", - "genre": { - "Name": "Rock" - } - }, - "1002": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Another Round", - "genre": { - "Name": "Rock" - } - }, - "1003": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Friend Of A Friend", - "genre": { - "Name": "Rock" - } - }, - "1004": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Over And Out", - "genre": { - "Name": "Rock" - } - }, - "1005": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "On The Mend", - "genre": { - "Name": "Rock" - } - }, - "1006": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Virginia Moon", - "genre": { - "Name": "Rock" - } - }, - "1007": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Cold Day In The Sun", - "genre": { - "Name": "Rock" - } - }, - "1008": { - "Composer": "Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS", - "album": { - "Title": "In Your Honor [Disc 2]" - }, - "Name": "Razor", - "genre": { - "Name": "Rock" - } - }, - "1009": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "All My Life", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1010": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Low", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1011": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Have It All", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1012": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Times Like These", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1013": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Disenchanted Lullaby", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1014": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Tired Of You", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1015": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Halo", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1016": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Lonely As You", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1017": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Overdrive", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1018": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Burn Away", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1019": { - "Composer": "Foo Fighters", - "album": { - "Title": "One By One" - }, - "Name": "Come Back", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1020": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Doll", - "genre": { - "Name": "Rock" - } - }, - "1021": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Monkey Wrench", - "genre": { - "Name": "Rock" - } - }, - "1022": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Hey, Johnny Park!", - "genre": { - "Name": "Rock" - } - }, - "1023": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "My Poor Brain", - "genre": { - "Name": "Rock" - } - }, - "1024": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Wind Up", - "genre": { - "Name": "Rock" - } - }, - "1025": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Up In Arms", - "genre": { - "Name": "Rock" - } - }, - "1026": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "My Hero", - "genre": { - "Name": "Rock" - } - }, - "1027": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "See You", - "genre": { - "Name": "Rock" - } - }, - "1028": { - "Composer": "Dave Grohl", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Enough Space", - "genre": { - "Name": "Rock" - } - }, - "1029": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "February Stars", - "genre": { - "Name": "Rock" - } - }, - "1030": { - "Composer": "Dave Grohl", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Everlong", - "genre": { - "Name": "Rock" - } - }, - "1031": { - "Composer": "Dave Grohl", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "Walking After You", - "genre": { - "Name": "Rock" - } - }, - "1032": { - "Composer": "Dave, Taylor, Nate, Chris", - "album": { - "Title": "The Colour And The Shape" - }, - "Name": "New Way Home", - "genre": { - "Name": "Rock" - } - }, - "1034": { - "Composer": "berthold kaempfert/charles singleton/eddie snyder", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Strangers In The Night", - "genre": { - "Name": "Easy Listening" - } - }, - "1035": { - "Composer": "fred ebb/john kander", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "New York, New York", - "genre": { - "Name": "Easy Listening" - } - }, - "1036": { - "Composer": "cole porter", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "I Get A Kick Out Of You", - "genre": { - "Name": "Easy Listening" - } - }, - "1037": { - "Composer": "carson c. parks", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Something Stupid", - "genre": { - "Name": "Easy Listening" - } - }, - "1038": { - "Composer": "henry mancini/johnny mercer", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Moon River", - "genre": { - "Name": "Easy Listening" - } - }, - "1039": { - "Composer": "carl sigman/gilbert becaud/pierre leroyer", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "What Now My Love", - "genre": { - "Name": "Easy Listening" - } - }, - "1040": { - "Composer": "hans bradtke/heinz meier/johnny mercer", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Summer Love", - "genre": { - "Name": "Easy Listening" - } - }, - "1041": { - "Composer": "orlando murden/ronald miller", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "For Once In My Life", - "genre": { - "Name": "Easy Listening" - } - }, - "1042": { - "Composer": "jimmy van heusen/sammy cahn", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Love And Marriage", - "genre": { - "Name": "Easy Listening" - } - }, - "1043": { - "Composer": "george gershwin/ira gershwin", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "They Can't Take That Away From Me", - "genre": { - "Name": "Easy Listening" - } - }, - "1044": { - "Composer": "jimmy van heusen/sammy cahn", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "My Kind Of Town", - "genre": { - "Name": "Easy Listening" - } - }, - "1045": { - "Composer": "bart howard", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Fly Me To The Moon", - "genre": { - "Name": "Easy Listening" - } - }, - "1046": { - "Composer": "cole porter", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "I've Got You Under My Skin", - "genre": { - "Name": "Easy Listening" - } - }, - "1047": { - "Composer": "carolyn leigh/cy coleman", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "The Best Is Yet To Come", - "genre": { - "Name": "Easy Listening" - } - }, - "1048": { - "Composer": "ervin drake", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "It Was A Very Good Year", - "genre": { - "Name": "Easy Listening" - } - }, - "1049": { - "Composer": "jimmy van heusen/sammy cahn", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Come Fly With Me", - "genre": { - "Name": "Easy Listening" - } - }, - "1050": { - "Composer": "dean kay thompson/kelly gordon", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "That's Life", - "genre": { - "Name": "Easy Listening" - } - }, - "1051": { - "Composer": "antonio carlos jobim/norman gimbel/vinicius de moraes", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "The Girl From Ipanema", - "genre": { - "Name": "Easy Listening" - } - }, - "1052": { - "Composer": "lorenz hart/richard rodgers", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "The Lady Is A Tramp", - "genre": { - "Name": "Easy Listening" - } - }, - "1053": { - "Composer": "jim croce", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Bad, Bad Leroy Brown", - "genre": { - "Name": "Easy Listening" - } - }, - "1054": { - "Composer": "bert brecht/kurt weill/marc blitzstein", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Mack The Knife", - "genre": { - "Name": "Easy Listening" - } - }, - "1055": { - "Composer": "rod mckuen", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "Loves Been Good To Me", - "genre": { - "Name": "Easy Listening" - } - }, - "1056": { - "Composer": "alan bergman/marilyn bergman/peggy lipton jones/quincy jones", - "album": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - }, - "Name": "L.A. Is My Lady", - "genre": { - "Name": "Easy Listening" - } - }, - "1057": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Entrando Na Sua (Intro)", - "genre": { - "Name": "Latin" - } - }, - "1058": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Nervosa", - "genre": { - "Name": "Latin" - } - }, - "1059": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Funk De Bamba (Com Fernanda Abreu)", - "genre": { - "Name": "Latin" - } - }, - "1063": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Funk Hum", - "genre": { - "Name": "Latin" - } - }, - "1064": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Forty Days (Com DJ Hum)", - "genre": { - "Name": "Latin" - } - }, - "1065": { - "Composer": "Emerson Villani", - "album": { - "Title": "Roda De Funk" - }, - "Name": "Balada Da Paula", - "genre": { - "Name": "Latin" - } - }, - "1066": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Dujji", - "genre": { - "Name": "Latin" - } - }, - "1067": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Meu Guarda-Chuva", - "genre": { - "Name": "Latin" - } - }, - "1069": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Whistle Stop", - "genre": { - "Name": "Latin" - } - }, - "1070": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "16 Toneladas", - "genre": { - "Name": "Latin" - } - }, - "1071": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Divirta-Se (Saindo Da Sua)", - "genre": { - "Name": "Latin" - } - }, - "1072": { - "Composer": null, - "album": { - "Title": "Roda De Funk" - }, - "Name": "Forty Days Instrumental", - "genre": { - "Name": "Latin" - } - }, - "1088": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Palco (Live)", - "genre": { - "Name": "Latin" - } - }, - "1089": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Is This Love (Live)", - "genre": { - "Name": "Latin" - } - }, - "1090": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Stir It Up (Live)", - "genre": { - "Name": "Latin" - } - }, - "1091": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Refavela (Live)", - "genre": { - "Name": "Latin" - } - }, - "1092": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Vendedor De Caranguejo (Live)", - "genre": { - "Name": "Latin" - } - }, - "1093": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Quanta (Live)", - "genre": { - "Name": "Latin" - } - }, - "1094": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Estrela (Live)", - "genre": { - "Name": "Latin" - } - }, - "1095": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Pela Internet (Live)", - "genre": { - "Name": "Latin" - } - }, - "1098": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Copacabana (Live)", - "genre": { - "Name": "Latin" - } - }, - "1099": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "A Novidade (Live)", - "genre": { - "Name": "Latin" - } - }, - "1100": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "Ghandi (Live)", - "genre": { - "Name": "Latin" - } - }, - "1101": { - "Composer": null, - "album": { - "Title": "Quanta Gente Veio Ver (Live)" - }, - "Name": "De Ouro E Marfim (Live)", - "genre": { - "Name": "Latin" - } - }, - "1105": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "A Novidade", - "genre": { - "Name": "Latin" - } - }, - "1106": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Tenho Sede", - "genre": { - "Name": "Latin" - } - }, - "1107": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Refazenda", - "genre": { - "Name": "Latin" - } - }, - "1108": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Realce", - "genre": { - "Name": "Latin" - } - }, - "1111": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "A Paz", - "genre": { - "Name": "Latin" - } - }, - "1112": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Beira Mar", - "genre": { - "Name": "Latin" - } - }, - "1113": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Sampa", - "genre": { - "Name": "Latin" - } - }, - "1115": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Tempo Rei", - "genre": { - "Name": "Latin" - } - }, - "1116": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Expresso 2222", - "genre": { - "Name": "Latin" - } - }, - "1118": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Palco", - "genre": { - "Name": "Latin" - } - }, - "1119": { - "Composer": "Gilberto Gil", - "album": { - "Title": "Unplugged" - }, - "Name": "Toda Menina Baiana", - "genre": { - "Name": "Latin" - } - }, - "1121": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "Straight Out Of Line", - "genre": { - "Name": "Metal" - } - }, - "1122": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "Faceless", - "genre": { - "Name": "Metal" - } - }, - "1123": { - "Composer": "Sully Erna; Tony Rombola", - "album": { - "Title": "Faceless" - }, - "Name": "Changes", - "genre": { - "Name": "Metal" - } - }, - "1124": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "Make Me Believe", - "genre": { - "Name": "Metal" - } - }, - "1125": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "I Stand Alone", - "genre": { - "Name": "Metal" - } - }, - "1126": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "Re-Align", - "genre": { - "Name": "Metal" - } - }, - "1127": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "I Fucking Hate You", - "genre": { - "Name": "Metal" - } - }, - "1128": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "Releasing The Demons", - "genre": { - "Name": "Metal" - } - }, - "1129": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "Dead And Broken", - "genre": { - "Name": "Metal" - } - }, - "1130": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "I Am", - "genre": { - "Name": "Metal" - } - }, - "1131": { - "Composer": "Sully Erna", - "album": { - "Title": "Faceless" - }, - "Name": "The Awakening", - "genre": { - "Name": "Metal" - } - }, - "1132": { - "Composer": "Sully Erna; Tony Rombola", - "album": { - "Title": "Faceless" - }, - "Name": "Serenity", - "genre": { - "Name": "Metal" - } - }, - "1134": { - "Composer": "Billie Joe Armstrong/Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "Jesus Of Suburbia / City Of The Damned / I Don't Care / Dearly Beloved / Tales Of Another Broken Home", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1137": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "Are We The Waiting", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1138": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "St. Jimmy", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1139": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "Give Me Novacaine", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1140": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "She's A Rebel", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1141": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "Extraordinary Girl", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1142": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "Letterbomb", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1145": { - "Composer": "Green Day", - "album": { - "Title": "American Idiot" - }, - "Name": "Whatsername", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1146": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Welcome to the Jungle", - "genre": { - "Name": "Rock" - } - }, - "1147": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "It's So Easy", - "genre": { - "Name": "Rock" - } - }, - "1148": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Nightrain", - "genre": { - "Name": "Rock" - } - }, - "1149": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Out Ta Get Me", - "genre": { - "Name": "Rock" - } - }, - "1150": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Mr. Brownstone", - "genre": { - "Name": "Rock" - } - }, - "1151": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Paradise City", - "genre": { - "Name": "Rock" - } - }, - "1152": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "My Michelle", - "genre": { - "Name": "Rock" - } - }, - "1153": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Think About You", - "genre": { - "Name": "Rock" - } - }, - "1154": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Sweet Child O' Mine", - "genre": { - "Name": "Rock" - } - }, - "1155": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "You're Crazy", - "genre": { - "Name": "Rock" - } - }, - "1156": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Anything Goes", - "genre": { - "Name": "Rock" - } - }, - "1157": { - "Composer": null, - "album": { - "Title": "Appetite for Destruction" - }, - "Name": "Rocket Queen", - "genre": { - "Name": "Rock" - } - }, - "1158": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Right Next Door to Hell", - "genre": { - "Name": "Rock" - } - }, - "1159": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Dust N' Bones", - "genre": { - "Name": "Rock" - } - }, - "1160": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Live and Let Die", - "genre": { - "Name": "Rock" - } - }, - "1161": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Don't Cry (Original)", - "genre": { - "Name": "Rock" - } - }, - "1162": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Perfect Crime", - "genre": { - "Name": "Rock" - } - }, - "1163": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "You Ain't the First", - "genre": { - "Name": "Rock" - } - }, - "1164": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Bad Obsession", - "genre": { - "Name": "Rock" - } - }, - "1165": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Back off Bitch", - "genre": { - "Name": "Rock" - } - }, - "1166": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Double Talkin' Jive", - "genre": { - "Name": "Rock" - } - }, - "1167": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "November Rain", - "genre": { - "Name": "Rock" - } - }, - "1168": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "The Garden", - "genre": { - "Name": "Rock" - } - }, - "1169": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Garden of Eden", - "genre": { - "Name": "Rock" - } - }, - "1170": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Don't Damn Me", - "genre": { - "Name": "Rock" - } - }, - "1171": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Bad Apples", - "genre": { - "Name": "Rock" - } - }, - "1172": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Dead Horse", - "genre": { - "Name": "Rock" - } - }, - "1173": { - "Composer": null, - "album": { - "Title": "Use Your Illusion I" - }, - "Name": "Coma", - "genre": { - "Name": "Rock" - } - }, - "1174": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Civil War", - "genre": { - "Name": "Metal" - } - }, - "1175": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "14 Years", - "genre": { - "Name": "Metal" - } - }, - "1176": { - "Composer": "Billy/Del James/W. Axl Rose/West Arkeen", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Yesterdays", - "genre": { - "Name": "Metal" - } - }, - "1177": { - "Composer": "Bob Dylan", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Knockin' On Heaven's Door", - "genre": { - "Name": "Metal" - } - }, - "1178": { - "Composer": "Duff McKagan/Slash/W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Get In The Ring", - "genre": { - "Name": "Metal" - } - }, - "1179": { - "Composer": "W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Shotgun Blues", - "genre": { - "Name": "Metal" - } - }, - "1180": { - "Composer": "W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Breakdown", - "genre": { - "Name": "Metal" - } - }, - "1181": { - "Composer": "Izzy Stradlin'", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Pretty Tied Up", - "genre": { - "Name": "Metal" - } - }, - "1182": { - "Composer": "Slash/W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Locomotive", - "genre": { - "Name": "Metal" - } - }, - "1183": { - "Composer": "Duff McKagan", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "So Fine", - "genre": { - "Name": "Metal" - } - }, - "1184": { - "Composer": "W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Estranged", - "genre": { - "Name": "Metal" - } - }, - "1185": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "You Could Be Mine", - "genre": { - "Name": "Metal" - } - }, - "1186": { - "Composer": "Izzy Stradlin'/W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "Don't Cry", - "genre": { - "Name": "Metal" - } - }, - "1187": { - "Composer": "W. Axl Rose", - "album": { - "Title": "Use Your Illusion II" - }, - "Name": "My World", - "genre": { - "Name": "Metal" - } - }, - "1188": { - "Composer": "Richard Bull", - "album": { - "Title": "Blue Moods" - }, - "Name": "Colibri", - "genre": { - "Name": "Jazz" - } - }, - "1189": { - "Composer": "R. Carless", - "album": { - "Title": "Blue Moods" - }, - "Name": "Love Is The Colour", - "genre": { - "Name": "Jazz" - } - }, - "1190": { - "Composer": "Patrick Claher/Richard Bull", - "album": { - "Title": "Blue Moods" - }, - "Name": "Magnetic Ocean", - "genre": { - "Name": "Jazz" - } - }, - "1191": { - "Composer": "Richard Bull", - "album": { - "Title": "Blue Moods" - }, - "Name": "Deep Waters", - "genre": { - "Name": "Jazz" - } - }, - "1192": { - "Composer": "Kevin Robinson/Richard Bull", - "album": { - "Title": "Blue Moods" - }, - "Name": "L'Arc En Ciel De Miles", - "genre": { - "Name": "Jazz" - } - }, - "1193": { - "Composer": "Kevin Robinson", - "album": { - "Title": "Blue Moods" - }, - "Name": "Gypsy", - "genre": { - "Name": "Jazz" - } - }, - "1194": { - "Composer": "Jean Paul Maunick", - "album": { - "Title": "Blue Moods" - }, - "Name": "Journey Into Sunlight", - "genre": { - "Name": "Jazz" - } - }, - "1195": { - "Composer": "Graham Harvey", - "album": { - "Title": "Blue Moods" - }, - "Name": "Sunchild", - "genre": { - "Name": "Jazz" - } - }, - "1196": { - "Composer": "Maxton Gig Beesley Jnr.", - "album": { - "Title": "Blue Moods" - }, - "Name": "Millenium", - "genre": { - "Name": "Jazz" - } - }, - "1197": { - "Composer": "Fayyaz Virgi/Richard Bull", - "album": { - "Title": "Blue Moods" - }, - "Name": "Thinking 'Bout Tomorrow", - "genre": { - "Name": "Jazz" - } - }, - "1198": { - "Composer": "Julian Crampton", - "album": { - "Title": "Blue Moods" - }, - "Name": "Jacob's Ladder", - "genre": { - "Name": "Jazz" - } - }, - "1199": { - "Composer": "G Harvey/R Hope-Taylor", - "album": { - "Title": "Blue Moods" - }, - "Name": "She Wears Black", - "genre": { - "Name": "Jazz" - } - }, - "1200": { - "Composer": "Jean Paul Maunick", - "album": { - "Title": "Blue Moods" - }, - "Name": "Dark Side Of The Cog", - "genre": { - "Name": "Jazz" - } - }, - "1201": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "Different World", - "genre": { - "Name": "Rock" - } - }, - "1202": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "These Colours Don't Run", - "genre": { - "Name": "Rock" - } - }, - "1203": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "Brighter Than a Thousand Suns", - "genre": { - "Name": "Rock" - } - }, - "1204": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "The Pilgrim", - "genre": { - "Name": "Rock" - } - }, - "1205": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "The Longest Day", - "genre": { - "Name": "Rock" - } - }, - "1206": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "Out of the Shadows", - "genre": { - "Name": "Rock" - } - }, - "1207": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "The Reincarnation of Benjamin Breeg", - "genre": { - "Name": "Rock" - } - }, - "1208": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "For the Greater Good of God", - "genre": { - "Name": "Rock" - } - }, - "1209": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "Lord of Light", - "genre": { - "Name": "Rock" - } - }, - "1210": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "The Legacy", - "genre": { - "Name": "Rock" - } - }, - "1211": { - "Composer": null, - "album": { - "Title": "A Matter of Life and Death" - }, - "Name": "Hallowed Be Thy Name (Live) [Non Album Bonus Track]", - "genre": { - "Name": "Rock" - } - }, - "1212": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Metal" - } - }, - "1213": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal" - } - }, - "1214": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Prowler", - "genre": { - "Name": "Metal" - } - }, - "1215": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Transylvania", - "genre": { - "Name": "Metal" - } - }, - "1216": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Remember Tomorrow", - "genre": { - "Name": "Metal" - } - }, - "1217": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Where Eagles Dare", - "genre": { - "Name": "Metal" - } - }, - "1218": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Metal" - } - }, - "1219": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Running Free", - "genre": { - "Name": "Metal" - } - }, - "1220": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Run To The Hilss", - "genre": { - "Name": "Metal" - } - }, - "1221": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "Title": "A Real Dead One" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal" - } - }, - "1222": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Metal" - } - }, - "1223": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Dead One" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Metal" - } - }, - "1224": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "Title": "A Real Live One" - }, - "Name": "Be Quick Or Be Dead", - "genre": { - "Name": "Metal" - } - }, - "1225": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "From Here To Eternity", - "genre": { - "Name": "Metal" - } - }, - "1226": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "Can I Play With Madness", - "genre": { - "Name": "Metal" - } - }, - "1227": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "Title": "A Real Live One" - }, - "Name": "Wasting Love", - "genre": { - "Name": "Metal" - } - }, - "1228": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "Tailgunner", - "genre": { - "Name": "Metal" - } - }, - "1229": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Metal" - } - }, - "1230": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "Afraid To Shoot Strangers", - "genre": { - "Name": "Metal" - } - }, - "1231": { - "Composer": "Bruce Dickinson", - "album": { - "Title": "A Real Live One" - }, - "Name": "Bring Your Daughter... To The Slaughter", - "genre": { - "Name": "Metal" - } - }, - "1232": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "Heaven Can Wait", - "genre": { - "Name": "Metal" - } - }, - "1233": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "The Clairvoyant", - "genre": { - "Name": "Metal" - } - }, - "1234": { - "Composer": "Steve Harris", - "album": { - "Title": "A Real Live One" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Metal" - } - }, - "1235": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "The Wicker Man", - "genre": { - "Name": "Rock" - } - }, - "1236": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "Ghost Of The Navigator", - "genre": { - "Name": "Rock" - } - }, - "1237": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "Brave New World", - "genre": { - "Name": "Rock" - } - }, - "1238": { - "Composer": "Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "Blood Brothers", - "genre": { - "Name": "Rock" - } - }, - "1239": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "The Mercenary", - "genre": { - "Name": "Rock" - } - }, - "1240": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "Dream Of Mirrors", - "genre": { - "Name": "Rock" - } - }, - "1241": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "The Fallen Angel", - "genre": { - "Name": "Rock" - } - }, - "1242": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "The Nomad", - "genre": { - "Name": "Rock" - } - }, - "1243": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "Out Of The Silent Planet", - "genre": { - "Name": "Rock" - } - }, - "1244": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "Brave New World" - }, - "Name": "The Thin Line Between Love & Hate", - "genre": { - "Name": "Rock" - } - }, - "1245": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Wildest Dreams", - "genre": { - "Name": "Heavy Metal" - } - }, - "1246": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Rainmaker", - "genre": { - "Name": "Heavy Metal" - } - }, - "1247": { - "Composer": "Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "No More Lies", - "genre": { - "Name": "Heavy Metal" - } - }, - "1248": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Montsegur", - "genre": { - "Name": "Heavy Metal" - } - }, - "1249": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Dance Of Death", - "genre": { - "Name": "Heavy Metal" - } - }, - "1250": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Gates Of Tomorrow", - "genre": { - "Name": "Heavy Metal" - } - }, - "1251": { - "Composer": "Adrian Smith/Bruce Dickinson/Nicko McBrain", - "album": { - "Title": "Dance Of Death" - }, - "Name": "New Frontier", - "genre": { - "Name": "Heavy Metal" - } - }, - "1252": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Paschendale", - "genre": { - "Name": "Heavy Metal" - } - }, - "1253": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Face In The Sand", - "genre": { - "Name": "Heavy Metal" - } - }, - "1254": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Age Of Innocence", - "genre": { - "Name": "Heavy Metal" - } - }, - "1255": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "Title": "Dance Of Death" - }, - "Name": "Journeyman", - "genre": { - "Name": "Heavy Metal" - } - }, - "1256": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Be Quick Or Be Dead", - "genre": { - "Name": "Rock" - } - }, - "1257": { - "Composer": "Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "From Here To Eternity", - "genre": { - "Name": "Rock" - } - }, - "1258": { - "Composer": "Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Afraid To Shoot Strangers", - "genre": { - "Name": "Rock" - } - }, - "1259": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Fear Is The Key", - "genre": { - "Name": "Rock" - } - }, - "1260": { - "Composer": "Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Childhood's End", - "genre": { - "Name": "Rock" - } - }, - "1261": { - "Composer": "Bruce Dickinson/Janick Gers", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Wasting Love", - "genre": { - "Name": "Rock" - } - }, - "1262": { - "Composer": "Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "The Fugitive", - "genre": { - "Name": "Rock" - } - }, - "1263": { - "Composer": "Bruce Dickinson/David Murray", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Chains Of Misery", - "genre": { - "Name": "Rock" - } - }, - "1264": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "The Apparition", - "genre": { - "Name": "Rock" - } - }, - "1265": { - "Composer": "Bruce Dickinson/David Murray", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Judas Be My Guide", - "genre": { - "Name": "Rock" - } - }, - "1266": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Weekend Warrior", - "genre": { - "Name": "Rock" - } - }, - "1267": { - "Composer": "Steve Harris", - "album": { - "Title": "Fear Of The Dark" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Rock" - } - }, - "1268": { - "Composer": "Steve Harris", - "album": { - "Title": "Iron Maiden" - }, - "Name": "01 - Prowler", - "genre": { - "Name": "Blues" - } - }, - "1269": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "Title": "Iron Maiden" - }, - "Name": "02 - Sanctuary", - "genre": { - "Name": "Blues" - } - }, - "1272": { - "Composer": "Steve Harris", - "album": { - "Title": "Iron Maiden" - }, - "Name": "05 - Phantom of the Opera", - "genre": { - "Name": "Blues" - } - }, - "1273": { - "Composer": "Steve Harris", - "album": { - "Title": "Iron Maiden" - }, - "Name": "06 - Transylvania", - "genre": { - "Name": "Blues" - } - }, - "1274": { - "Composer": "Steve Harris", - "album": { - "Title": "Iron Maiden" - }, - "Name": "07 - Strange World", - "genre": { - "Name": "Blues" - } - }, - "1275": { - "Composer": "Murray Dave", - "album": { - "Title": "Iron Maiden" - }, - "Name": "08 - Charlotte the Harlot", - "genre": { - "Name": "Blues" - } - }, - "1276": { - "Composer": "Steve Harris", - "album": { - "Title": "Iron Maiden" - }, - "Name": "09 - Iron Maiden", - "genre": { - "Name": "Blues" - } - }, - "1277": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "The Ides Of March", - "genre": { - "Name": "Heavy Metal" - } - }, - "1278": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Heavy Metal" - } - }, - "1279": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Murders In The Rue Morgue", - "genre": { - "Name": "Heavy Metal" - } - }, - "1280": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Another Life", - "genre": { - "Name": "Heavy Metal" - } - }, - "1281": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Genghis Khan", - "genre": { - "Name": "Heavy Metal" - } - }, - "1283": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Killers", - "genre": { - "Name": "Heavy Metal" - } - }, - "1284": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Prodigal Son", - "genre": { - "Name": "Heavy Metal" - } - }, - "1285": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Purgatory", - "genre": { - "Name": "Heavy Metal" - } - }, - "1286": { - "Composer": "Steve Harris", - "album": { - "Title": "Killers" - }, - "Name": "Drifter", - "genre": { - "Name": "Heavy Metal" - } - }, - "1287": { - "Composer": null, - "album": { - "Title": "Live After Death" - }, - "Name": "Intro- Churchill S Speech", - "genre": { - "Name": "Heavy Metal" - } - }, - "1288": { - "Composer": null, - "album": { - "Title": "Live After Death" - }, - "Name": "Aces High", - "genre": { - "Name": "Heavy Metal" - } - }, - "1289": { - "Composer": "Smith/Dickinson", - "album": { - "Title": "Live After Death" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal" - } - }, - "1290": { - "Composer": "Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal" - } - }, - "1291": { - "Composer": "Dickinson", - "album": { - "Title": "Live After Death" - }, - "Name": "Revelations", - "genre": { - "Name": "Metal" - } - }, - "1292": { - "Composer": "Smith/Dickinson", - "album": { - "Title": "Live After Death" - }, - "Name": "Flight Of Icarus", - "genre": { - "Name": "Metal" - } - }, - "1293": { - "Composer": null, - "album": { - "Title": "Live After Death" - }, - "Name": "Rime Of The Ancient Mariner", - "genre": { - "Name": "Metal" - } - }, - "1294": { - "Composer": null, - "album": { - "Title": "Live After Death" - }, - "Name": "Powerslave", - "genre": { - "Name": "Metal" - } - }, - "1295": { - "Composer": "Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Metal" - } - }, - "1296": { - "Composer": "Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Metal" - } - }, - "1297": { - "Composer": "Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Metal" - } - }, - "1298": { - "Composer": "Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Run To The Hills", - "genre": { - "Name": "Metal" - } - }, - "1299": { - "Composer": "Harris/Di Anno", - "album": { - "Title": "Live After Death" - }, - "Name": "Running Free", - "genre": { - "Name": "Metal" - } - }, - "1300": { - "Composer": "Steve Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Heavy Metal" - } - }, - "1301": { - "Composer": null, - "album": { - "Title": "Live After Death" - }, - "Name": "Acacia Avenue", - "genre": { - "Name": "Heavy Metal" - } - }, - "1302": { - "Composer": "Steve Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Children Of The Damned", - "genre": { - "Name": "Heavy Metal" - } - }, - "1303": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Die With Your Boots On", - "genre": { - "Name": "Heavy Metal" - } - }, - "1304": { - "Composer": "Steve Harris", - "album": { - "Title": "Live After Death" - }, - "Name": "Phantom Of The Opera", - "genre": { - "Name": "Heavy Metal" - } - }, - "1305": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Be Quick Or Be Dead", - "genre": { - "Name": "Rock" - } - }, - "1306": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Rock" - } - }, - "1307": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Rock" - } - }, - "1308": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "From Here To Eternity", - "genre": { - "Name": "Rock" - } - }, - "1309": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Can I Play With Madness", - "genre": { - "Name": "Rock" - } - }, - "1310": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Wasting Love", - "genre": { - "Name": "Rock" - } - }, - "1311": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Tailgunner", - "genre": { - "Name": "Rock" - } - }, - "1312": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Rock" - } - }, - "1313": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Afraid To Shoot Strangers", - "genre": { - "Name": "Rock" - } - }, - "1314": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Rock" - } - }, - "1315": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Bring Your Daughter... To The Slaughter...", - "genre": { - "Name": "Rock" - } - }, - "1316": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "The Clairvoyant", - "genre": { - "Name": "Rock" - } - }, - "1317": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Heaven Can Wait", - "genre": { - "Name": "Rock" - } - }, - "1318": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Run To The Hills", - "genre": { - "Name": "Rock" - } - }, - "1319": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Rock" - } - }, - "1320": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Rock" - } - }, - "1321": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Rock" - } - }, - "1322": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "The Trooper", - "genre": { - "Name": "Rock" - } - }, - "1323": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Rock" - } - }, - "1324": { - "Composer": null, - "album": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "Name": "Running Free", - "genre": { - "Name": "Rock" - } - }, - "1325": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Tailgunner", - "genre": { - "Name": "Metal" - } - }, - "1326": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Holy Smoke", - "genre": { - "Name": "Metal" - } - }, - "1327": { - "Composer": "Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "No Prayer For The Dying", - "genre": { - "Name": "Metal" - } - }, - "1328": { - "Composer": "Bruce Dickinson/David Murray", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Public Enema Number One", - "genre": { - "Name": "Metal" - } - }, - "1329": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Fates Warning", - "genre": { - "Name": "Metal" - } - }, - "1330": { - "Composer": "Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "The Assassin", - "genre": { - "Name": "Metal" - } - }, - "1331": { - "Composer": "Bruce Dickinson/Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Run Silent Run Deep", - "genre": { - "Name": "Metal" - } - }, - "1332": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Hooks In You", - "genre": { - "Name": "Metal" - } - }, - "1333": { - "Composer": "Bruce Dickinson", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Bring Your Daughter... ...To The Slaughter", - "genre": { - "Name": "Metal" - } - }, - "1334": { - "Composer": "Steve Harris", - "album": { - "Title": "No Prayer For The Dying" - }, - "Name": "Mother Russia", - "genre": { - "Name": "Metal" - } - }, - "1335": { - "Composer": "Steve Harris", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Where Eagles Dare", - "genre": { - "Name": "Metal" - } - }, - "1336": { - "Composer": "Bruce Dickinson", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Revelations", - "genre": { - "Name": "Metal" - } - }, - "1337": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Flight Of The Icarus", - "genre": { - "Name": "Metal" - } - }, - "1338": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Die With Your Boots On", - "genre": { - "Name": "Metal" - } - }, - "1339": { - "Composer": "Steve Harris", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal" - } - }, - "1340": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Still Life", - "genre": { - "Name": "Metal" - } - }, - "1341": { - "Composer": "Steve Harris", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Quest For Fire", - "genre": { - "Name": "Metal" - } - }, - "1342": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "Sun And Steel", - "genre": { - "Name": "Metal" - } - }, - "1343": { - "Composer": "Steve Harris", - "album": { - "Title": "Piece Of Mind" - }, - "Name": "To Tame A Land", - "genre": { - "Name": "Metal" - } - }, - "1344": { - "Composer": "Harris", - "album": { - "Title": "Powerslave" - }, - "Name": "Aces High", - "genre": { - "Name": "Metal" - } - }, - "1345": { - "Composer": "Smith/Dickinson", - "album": { - "Title": "Powerslave" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal" - } - }, - "1346": { - "Composer": "Steve Harris", - "album": { - "Title": "Powerslave" - }, - "Name": "Losfer Words", - "genre": { - "Name": "Metal" - } - }, - "1347": { - "Composer": "Dickinson", - "album": { - "Title": "Powerslave" - }, - "Name": "Flash of The Blade", - "genre": { - "Name": "Metal" - } - }, - "1348": { - "Composer": "Steve Harris", - "album": { - "Title": "Powerslave" - }, - "Name": "Duelists", - "genre": { - "Name": "Metal" - } - }, - "1349": { - "Composer": "Dickinson/Smith", - "album": { - "Title": "Powerslave" - }, - "Name": "Back in the Village", - "genre": { - "Name": "Metal" - } - }, - "1350": { - "Composer": "Dickinson", - "album": { - "Title": "Powerslave" - }, - "Name": "Powerslave", - "genre": { - "Name": "Metal" - } - }, - "1351": { - "Composer": "Harris", - "album": { - "Title": "Powerslave" - }, - "Name": "Rime of the Ancient Mariner", - "genre": { - "Name": "Metal" - } - }, - "1352": { - "Composer": null, - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "Intro", - "genre": { - "Name": "Metal" - } - }, - "1353": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "The Wicker Man", - "genre": { - "Name": "Metal" - } - }, - "1354": { - "Composer": "Bruce Dickinson/Janick Gers/Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "Ghost Of The Navigator", - "genre": { - "Name": "Metal" - } - }, - "1355": { - "Composer": "Bruce Dickinson/David Murray/Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "Brave New World", - "genre": { - "Name": "Metal" - } - }, - "1356": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Metal" - } - }, - "1357": { - "Composer": "Adrian Smith/Bruce Dickinson", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "2 Minutes To Midnight", - "genre": { - "Name": "Metal" - } - }, - "1358": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "Blood Brothers", - "genre": { - "Name": "Metal" - } - }, - "1359": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "Sign Of The Cross", - "genre": { - "Name": "Metal" - } - }, - "1360": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "The Mercenary", - "genre": { - "Name": "Metal" - } - }, - "1361": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD1]" - }, - "Name": "The Trooper", - "genre": { - "Name": "Metal" - } - }, - "1362": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "Dream Of Mirrors", - "genre": { - "Name": "Rock" - } - }, - "1363": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "The Clansman", - "genre": { - "Name": "Rock" - } - }, - "1364": { - "Composer": "Adrian Smith/Bruce Dickinson/Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Metal" - } - }, - "1365": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "Fear Of The Dark", - "genre": { - "Name": "Rock" - } - }, - "1366": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Rock" - } - }, - "1367": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Rock" - } - }, - "1368": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Rock" - } - }, - "1369": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Rock" - } - }, - "1370": { - "Composer": "Steve Harris", - "album": { - "Title": "Rock In Rio [CD2]" - }, - "Name": "Run To The Hills", - "genre": { - "Name": "Rock" - } - }, - "1371": { - "Composer": "Adrian Smith; Bruce Dickinson", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Moonchild", - "genre": { - "Name": "Metal" - } - }, - "1372": { - "Composer": "Steve Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Infinite Dreams", - "genre": { - "Name": "Metal" - } - }, - "1373": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Can I Play With Madness", - "genre": { - "Name": "Metal" - } - }, - "1374": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "The Evil That Men Do", - "genre": { - "Name": "Metal" - } - }, - "1375": { - "Composer": "Steve Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Seventh Son of a Seventh Son", - "genre": { - "Name": "Metal" - } - }, - "1376": { - "Composer": "Dave Murray; Steve Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "The Prophecy", - "genre": { - "Name": "Metal" - } - }, - "1377": { - "Composer": "Adrian Smith; Bruce Dickinson; Steve Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "The Clairvoyant", - "genre": { - "Name": "Metal" - } - }, - "1378": { - "Composer": "Bruce Dickinson; Harris", - "album": { - "Title": "Seventh Son of a Seventh Son" - }, - "Name": "Only the Good Die Young", - "genre": { - "Name": "Metal" - } - }, - "1379": { - "Composer": "Steve Harris", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "Caught Somewhere in Time", - "genre": { - "Name": "Metal" - } - }, - "1380": { - "Composer": "Adrian Smith", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "Wasted Years", - "genre": { - "Name": "Metal" - } - }, - "1381": { - "Composer": "Adrian Smith", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "Sea of Madness", - "genre": { - "Name": "Metal" - } - }, - "1382": { - "Composer": "Steve Harris", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "Heaven Can Wait", - "genre": { - "Name": "Metal" - } - }, - "1383": { - "Composer": "Adrian Smith", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "Stranger in a Strange Land", - "genre": { - "Name": "Metal" - } - }, - "1384": { - "Composer": "Steve Harris", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "Alexander the Great", - "genre": { - "Name": "Metal" - } - }, - "1385": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "De Ja Vu", - "genre": { - "Name": "Metal" - } - }, - "1386": { - "Composer": "Steve Harris", - "album": { - "Title": "Somewhere in Time" - }, - "Name": "The Loneliness of the Long Dis", - "genre": { - "Name": "Metal" - } - }, - "1387": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "22 Acacia Avenue", - "genre": { - "Name": "Metal" - } - }, - "1388": { - "Composer": "Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "Children of the Damned", - "genre": { - "Name": "Metal" - } - }, - "1389": { - "Composer": "Adrian Smith/Clive Burr/Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "Gangland", - "genre": { - "Name": "Metal" - } - }, - "1390": { - "Composer": "Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "Hallowed Be Thy Name", - "genre": { - "Name": "Metal" - } - }, - "1391": { - "Composer": "Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "Invaders", - "genre": { - "Name": "Metal" - } - }, - "1392": { - "Composer": "Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "Run to the Hills", - "genre": { - "Name": "Metal" - } - }, - "1393": { - "Composer": "Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "The Number Of The Beast", - "genre": { - "Name": "Rock" - } - }, - "1394": { - "Composer": "Adrian Smith/Steve Harris", - "album": { - "Title": "The Number of The Beast" - }, - "Name": "The Prisoner", - "genre": { - "Name": "Metal" - } - }, - "1395": { - "Composer": "Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "Sign Of The Cross", - "genre": { - "Name": "Rock" - } - }, - "1396": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "Lord Of The Flies", - "genre": { - "Name": "Rock" - } - }, - "1397": { - "Composer": "Blaze Bayley/Janick Gers", - "album": { - "Title": "The X Factor" - }, - "Name": "Man On The Edge", - "genre": { - "Name": "Rock" - } - }, - "1398": { - "Composer": "Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "Fortunes Of War", - "genre": { - "Name": "Rock" - } - }, - "1399": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "Look For The Truth", - "genre": { - "Name": "Rock" - } - }, - "1400": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "The Aftermath", - "genre": { - "Name": "Rock" - } - }, - "1401": { - "Composer": "Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "Judgement Of Heaven", - "genre": { - "Name": "Rock" - } - }, - "1402": { - "Composer": "Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "Blood On The World's Hands", - "genre": { - "Name": "Rock" - } - }, - "1403": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "The Edge Of Darkness", - "genre": { - "Name": "Rock" - } - }, - "1404": { - "Composer": "Blaze Bayley/Janick Gers/Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "2 A.M.", - "genre": { - "Name": "Rock" - } - }, - "1405": { - "Composer": "Janick Gers/Steve Harris", - "album": { - "Title": "The X Factor" - }, - "Name": "The Unbeliever", - "genre": { - "Name": "Rock" - } - }, - "1406": { - "Composer": "Blaze Bayley/Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "Futureal", - "genre": { - "Name": "Rock" - } - }, - "1407": { - "Composer": "Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "The Angel And The Gambler", - "genre": { - "Name": "Rock" - } - }, - "1408": { - "Composer": "David Murray/Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "Lightning Strikes Twice", - "genre": { - "Name": "Rock" - } - }, - "1409": { - "Composer": "Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "The Clansman", - "genre": { - "Name": "Rock" - } - }, - "1410": { - "Composer": "Blaze Bayley/David Murray/Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "When Two Worlds Collide", - "genre": { - "Name": "Rock" - } - }, - "1411": { - "Composer": "Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "The Educated Fool", - "genre": { - "Name": "Rock" - } - }, - "1412": { - "Composer": "Steve Harris", - "album": { - "Title": "Virtual XI" - }, - "Name": "Don't Look To The Eyes Of A Stranger", - "genre": { - "Name": "Rock" - } - }, - "1413": { - "Composer": "Blaze Bayley/Janick Gers", - "album": { - "Title": "Virtual XI" - }, - "Name": "Como Estais Amigos", - "genre": { - "Name": "Rock" - } - }, - "1414": { - "Composer": "James Brown/Johnny Terry", - "album": { - "Title": "Sex Machine" - }, - "Name": "Please Please Please", - "genre": { - "Name": "R&B/Soul" - } - }, - "1415": { - "Composer": "Lowman Pauling", - "album": { - "Title": "Sex Machine" - }, - "Name": "Think", - "genre": { - "Name": "R&B/Soul" - } - }, - "1416": { - "Composer": "Jimmy Forrest/Lewis C. Simpkins/Oscar Washington", - "album": { - "Title": "Sex Machine" - }, - "Name": "Night Train", - "genre": { - "Name": "R&B/Soul" - } - }, - "1417": { - "Composer": "Ted Wright", - "album": { - "Title": "Sex Machine" - }, - "Name": "Out Of Sight", - "genre": { - "Name": "R&B/Soul" - } - }, - "1418": { - "Composer": "James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Papa's Got A Brand New Bag Pt.1", - "genre": { - "Name": "R&B/Soul" - } - }, - "1419": { - "Composer": "James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "I Got You (I Feel Good)", - "genre": { - "Name": "R&B/Soul" - } - }, - "1420": { - "Composer": "Betty Newsome/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "It's A Man's Man's Man's World", - "genre": { - "Name": "R&B/Soul" - } - }, - "1421": { - "Composer": "Alfred Ellis/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Cold Sweat", - "genre": { - "Name": "R&B/Soul" - } - }, - "1422": { - "Composer": "Alfred Ellis/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Say It Loud, I'm Black And I'm Proud Pt.1", - "genre": { - "Name": "R&B/Soul" - } - }, - "1423": { - "Composer": "Bobby Byrd/James Brown/Ron Lenhoff", - "album": { - "Title": "Sex Machine" - }, - "Name": "Get Up (I Feel Like Being A) Sex Machine", - "genre": { - "Name": "R&B/Soul" - } - }, - "1424": { - "Composer": "Addie William Jones/Nat Jones", - "album": { - "Title": "Sex Machine" - }, - "Name": "Hey America", - "genre": { - "Name": "R&B/Soul" - } - }, - "1425": { - "Composer": "Charles Bobbitt/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Make It Funky Pt.1", - "genre": { - "Name": "R&B/Soul" - } - }, - "1426": { - "Composer": "Charles Bobbitt/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "I'm A Greedy Man Pt.1", - "genre": { - "Name": "R&B/Soul" - } - }, - "1427": { - "Composer": "Fred Wesley/James Brown/Joseph Mims", - "album": { - "Title": "Sex Machine" - }, - "Name": "Get On The Good Foot", - "genre": { - "Name": "R&B/Soul" - } - }, - "1428": { - "Composer": "Deanna Brown/Deidra Jenkins/Yamma Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Get Up Offa That Thing", - "genre": { - "Name": "R&B/Soul" - } - }, - "1429": { - "Composer": "Brad Shapiro/George Jackson/Robert Miller/Walter Shaw", - "album": { - "Title": "Sex Machine" - }, - "Name": "It's Too Funky In Here", - "genre": { - "Name": "R&B/Soul" - } - }, - "1430": { - "Composer": "Charlie Midnight/Dan Hartman", - "album": { - "Title": "Sex Machine" - }, - "Name": "Living In America", - "genre": { - "Name": "R&B/Soul" - } - }, - "1431": { - "Composer": "Full Force/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "I'm Real", - "genre": { - "Name": "R&B/Soul" - } - }, - "1432": { - "Composer": "Fred Wesley/James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Hot Pants Pt.1", - "genre": { - "Name": "R&B/Soul" - } - }, - "1433": { - "Composer": "James Brown", - "album": { - "Title": "Sex Machine" - }, - "Name": "Soul Power (Live)", - "genre": { - "Name": "R&B/Soul" - } - }, - "1434": { - "Composer": "Jay Kay/Kay, Jay", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "When You Gonna Learn (Digeridoo)", - "genre": { - "Name": "Rock" - } - }, - "1435": { - "Composer": "Smith, Toby", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Too Young To Die", - "genre": { - "Name": "Rock" - } - }, - "1436": { - "Composer": "Smith, Toby", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Hooked Up", - "genre": { - "Name": "Rock" - } - }, - "1437": { - "Composer": "Gelder, Nick van", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "If I Like It, I Do It", - "genre": { - "Name": "Rock" - } - }, - "1438": { - "Composer": "Smith, Toby", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Music Of The Wind", - "genre": { - "Name": "Rock" - } - }, - "1439": { - "Composer": "Smith, Toby", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Emergency On Planet Earth", - "genre": { - "Name": "Rock" - } - }, - "1440": { - "Composer": "Jay Kay/Kay, Jay", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Whatever It Is, I Just Can't Stop", - "genre": { - "Name": "Rock" - } - }, - "1441": { - "Composer": "Smith, Toby", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Blow Your Mind", - "genre": { - "Name": "Rock" - } - }, - "1442": { - "Composer": "Smith, Toby", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Revolution 1993", - "genre": { - "Name": "Rock" - } - }, - "1443": { - "Composer": "Buchanan, Wallis", - "album": { - "Title": "Emergency On Planet Earth" - }, - "Name": "Didgin' Out", - "genre": { - "Name": "Rock" - } - }, - "1444": { - "Composer": "Jay Kay", - "album": { - "Title": "Synkronized" - }, - "Name": "Canned Heat", - "genre": { - "Name": "R&B/Soul" - } - }, - "1445": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "Planet Home", - "genre": { - "Name": "R&B/Soul" - } - }, - "1446": { - "Composer": "Jay Kay", - "album": { - "Title": "Synkronized" - }, - "Name": "Black Capricorn Day", - "genre": { - "Name": "R&B/Soul" - } - }, - "1447": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "Soul Education", - "genre": { - "Name": "R&B/Soul" - } - }, - "1448": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "Failling", - "genre": { - "Name": "R&B/Soul" - } - }, - "1449": { - "Composer": "Derrick McKenzie/Jay Kay/Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "Destitute Illusions", - "genre": { - "Name": "R&B/Soul" - } - }, - "1450": { - "Composer": "Jay Kay", - "album": { - "Title": "Synkronized" - }, - "Name": "Supersonic", - "genre": { - "Name": "R&B/Soul" - } - }, - "1451": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "Butterfly", - "genre": { - "Name": "R&B/Soul" - } - }, - "1452": { - "Composer": "Jay Kay", - "album": { - "Title": "Synkronized" - }, - "Name": "Were Do We Go From Here", - "genre": { - "Name": "R&B/Soul" - } - }, - "1453": { - "Composer": "Jay Kay/Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "King For A Day", - "genre": { - "Name": "R&B/Soul" - } - }, - "1454": { - "Composer": "Toby Smith", - "album": { - "Title": "Synkronized" - }, - "Name": "Deeper Underground", - "genre": { - "Name": "R&B/Soul" - } - }, - "1455": { - "Composer": "Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Just Another Story", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1456": { - "Composer": "Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Stillness In Time", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1457": { - "Composer": "Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Half The Man", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1458": { - "Composer": "Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Light Years", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1459": { - "Composer": "Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Manifest Destiny", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1460": { - "Composer": "Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "The Kids", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1461": { - "Composer": "Stuard Zender/Toby Smith", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Mr. Moon", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1462": { - "Composer": "Stuart Zender", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Scam", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1463": { - "Composer": "Toby Smith/Wallis Buchanan", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Journey To Arnhemland", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1464": { - "Composer": "J. Kay/Jay Kay", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Morning Glory", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1465": { - "Composer": "J. Kay/Jay Kay", - "album": { - "Title": "The Return Of The Space Cowboy" - }, - "Name": "Space Cowboy", - "genre": { - "Name": "Electronica/Dance" - } - }, - "1466": { - "Composer": "C. Cester/C. Muncey", - "album": { - "Title": "Get Born" - }, - "Name": "Last Chance", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1467": { - "Composer": "C. Muncey/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Are You Gonna Be My Girl", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1468": { - "Composer": "C. Cester/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Rollover D.J.", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1469": { - "Composer": "N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Look What You've Done", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1470": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Get What You Need", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1471": { - "Composer": "C. Cester/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Move On", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1472": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Radio Song", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1473": { - "Composer": "C. Cester/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Get Me Outta Here", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1474": { - "Composer": "C. Cester/C. Muncey/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Cold Hard Bitch", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1475": { - "Composer": "C. Muncey/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Come Around Again", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1476": { - "Composer": "C. Muncey/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Take It Or Leave It", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1477": { - "Composer": "C. Cester/N. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Lazy Gun", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1478": { - "Composer": "C. Cester", - "album": { - "Title": "Get Born" - }, - "Name": "Timothy", - "genre": { - "Name": "Alternative & Punk" - } - }, - "1479": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Foxy Lady", - "genre": { - "Name": "Rock" - } - }, - "1480": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Manic Depression", - "genre": { - "Name": "Rock" - } - }, - "1481": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Red House", - "genre": { - "Name": "Rock" - } - }, - "1482": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Can You See Me", - "genre": { - "Name": "Rock" - } - }, - "1483": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Love Or Confusion", - "genre": { - "Name": "Rock" - } - }, - "1484": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "I Don't Live Today", - "genre": { - "Name": "Rock" - } - }, - "1485": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "May This Be Love", - "genre": { - "Name": "Rock" - } - }, - "1486": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Fire", - "genre": { - "Name": "Rock" - } - }, - "1487": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Third Stone From The Sun", - "genre": { - "Name": "Rock" - } - }, - "1488": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Remember", - "genre": { - "Name": "Rock" - } - }, - "1489": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Are You Experienced?", - "genre": { - "Name": "Rock" - } - }, - "1490": { - "Composer": "Billy Roberts", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Hey Joe", - "genre": { - "Name": "Rock" - } - }, - "1491": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Stone Free", - "genre": { - "Name": "Rock" - } - }, - "1492": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Purple Haze", - "genre": { - "Name": "Rock" - } - }, - "1493": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "51st Anniversary", - "genre": { - "Name": "Rock" - } - }, - "1494": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "The Wind Cries Mary", - "genre": { - "Name": "Rock" - } - }, - "1495": { - "Composer": "Jimi Hendrix", - "album": { - "Title": "Are You Experienced?" - }, - "Name": "Highway Chile", - "genre": { - "Name": "Rock" - } - }, - "1496": { - "Composer": null, - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Surfing with the Alien", - "genre": { - "Name": "Rock" - } - }, - "1497": { - "Composer": null, - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Ice 9", - "genre": { - "Name": "Rock" - } - }, - "1498": { - "Composer": null, - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Crushing Day", - "genre": { - "Name": "Rock" - } - }, - "1499": { - "Composer": null, - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Always With Me, Always With You", - "genre": { - "Name": "Rock" - } - }, - "1500": { - "Composer": null, - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Satch Boogie", - "genre": { - "Name": "Rock" - } - }, - "1501": { - "Composer": "J. Satriani", - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Hill of the Skull", - "genre": { - "Name": "Rock" - } - }, - "1502": { - "Composer": null, - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Circles", - "genre": { - "Name": "Rock" - } - }, - "1503": { - "Composer": "J. Satriani", - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Lords of Karma", - "genre": { - "Name": "Rock" - } - }, - "1504": { - "Composer": "J. Satriani", - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Midnight", - "genre": { - "Name": "Rock" - } - }, - "1505": { - "Composer": "J. Satriani", - "album": { - "Title": "Surfing with the Alien (Remastered)" - }, - "Name": "Echo", - "genre": { - "Name": "Rock" - } - }, - "1506": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Engenho De Dentro", - "genre": { - "Name": "Latin" - } - }, - "1507": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Alcohol", - "genre": { - "Name": "Latin" - } - }, - "1508": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Mama Africa", - "genre": { - "Name": "Latin" - } - }, - "1509": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Salve Simpatia", - "genre": { - "Name": "Latin" - } - }, - "1513": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Charles Anjo 45", - "genre": { - "Name": "Latin" - } - }, - "1516": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Que Maravilha", - "genre": { - "Name": "Latin" - } - }, - "1517": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Santa Clara Clareou", - "genre": { - "Name": "Latin" - } - }, - "1518": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Filho Maravilha", - "genre": { - "Name": "Latin" - } - }, - "1519": { - "Composer": null, - "album": { - "Title": "Jorge Ben Jor 25 Anos" - }, - "Name": "Taj Mahal", - "genre": { - "Name": "Latin" - } - }, - "1520": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "Rapidamente", - "genre": { - "Name": "Latin" - } - }, - "1521": { - "Composer": "Hyldon", - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "As Dores do Mundo", - "genre": { - "Name": "Latin" - } - }, - "1522": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "Vou Pra Ai", - "genre": { - "Name": "Latin" - } - }, - "1523": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "My Brother", - "genre": { - "Name": "Latin" - } - }, - "1528": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "A Tarde", - "genre": { - "Name": "Latin" - } - }, - "1529": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "Always Be All Right", - "genre": { - "Name": "Latin" - } - }, - "1530": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "Sem Sentido", - "genre": { - "Name": "Latin" - } - }, - "1531": { - "Composer": null, - "album": { - "Title": "Jota Quest-1995" - }, - "Name": "Onibusfobia", - "genre": { - "Name": "Latin" - } - }, - "1546": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "The Green Manalishi", - "genre": { - "Name": "Metal" - } - }, - "1547": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Living After Midnight", - "genre": { - "Name": "Metal" - } - }, - "1548": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Breaking The Law (Live)", - "genre": { - "Name": "Metal" - } - }, - "1549": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Hot Rockin'", - "genre": { - "Name": "Metal" - } - }, - "1550": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Heading Out To The Highway (Live)", - "genre": { - "Name": "Metal" - } - }, - "1551": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "The Hellion", - "genre": { - "Name": "Metal" - } - }, - "1552": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Electric Eye", - "genre": { - "Name": "Metal" - } - }, - "1553": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "You've Got Another Thing Comin'", - "genre": { - "Name": "Metal" - } - }, - "1554": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Turbo Lover", - "genre": { - "Name": "Metal" - } - }, - "1555": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Freewheel Burning", - "genre": { - "Name": "Metal" - } - }, - "1556": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Some Heads Are Gonna Roll", - "genre": { - "Name": "Metal" - } - }, - "1557": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Metal Meltdown", - "genre": { - "Name": "Metal" - } - }, - "1558": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Ram It Down", - "genre": { - "Name": "Metal" - } - }, - "1559": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Diamonds And Rust (Live)", - "genre": { - "Name": "Metal" - } - }, - "1560": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Victim Of Change (Live)", - "genre": { - "Name": "Metal" - } - }, - "1561": { - "Composer": null, - "album": { - "Title": "Living After Midnight" - }, - "Name": "Tyrant (Live)", - "genre": { - "Name": "Metal" - } - }, - "1562": { - "Composer": "Paul Stanley, Ace Frehley", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Comin' Home", - "genre": { - "Name": "Rock" - } - }, - "1563": { - "Composer": "Gene Simmons", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Plaster Caster", - "genre": { - "Name": "Rock" - } - }, - "1564": { - "Composer": "Gene Simmons, Stephen Coronel", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Goin' Blind", - "genre": { - "Name": "Rock" - } - }, - "1565": { - "Composer": "Paul Stanley, Bob Ezrin, Kim Fowley", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Do You Love Me", - "genre": { - "Name": "Rock" - } - }, - "1566": { - "Composer": "Gene Simmons", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Domino", - "genre": { - "Name": "Rock" - } - }, - "1567": { - "Composer": "Paul Stanley, Vincent Poncia", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Sure Know Something", - "genre": { - "Name": "Rock" - } - }, - "1568": { - "Composer": "Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "A World Without Heroes", - "genre": { - "Name": "Rock" - } - }, - "1569": { - "Composer": "Paul Stanley, Ace Frehley", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Rock Bottom", - "genre": { - "Name": "Rock" - } - }, - "1570": { - "Composer": "Gene Simmons", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "See You Tonight", - "genre": { - "Name": "Rock" - } - }, - "1571": { - "Composer": "Paul Stanley", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "I Still Love You", - "genre": { - "Name": "Rock" - } - }, - "1572": { - "Composer": "Paul Stanley, Vincent Cusano", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Every Time I Look At You", - "genre": { - "Name": "Rock" - } - }, - "1573": { - "Composer": "Mick Jagger, Keith Richard", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "2,000 Man", - "genre": { - "Name": "Rock" - } - }, - "1574": { - "Composer": "Peter Criss, Stan Penridge, Bob Ezrin", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Beth", - "genre": { - "Name": "Rock" - } - }, - "1575": { - "Composer": "Gene Simmons", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Nothin' To Lose", - "genre": { - "Name": "Rock" - } - }, - "1576": { - "Composer": "Paul Stanley, Gene Simmons", - "album": { - "Title": "Unplugged [Live]" - }, - "Name": "Rock And Roll All Nite", - "genre": { - "Name": "Rock" - } - }, - "1577": { - "Composer": "Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Immigrant Song", - "genre": { - "Name": "Rock" - } - }, - "1578": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Heartbreaker", - "genre": { - "Name": "Rock" - } - }, - "1579": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Since I've Been Loving You", - "genre": { - "Name": "Rock" - } - }, - "1580": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Black Dog", - "genre": { - "Name": "Rock" - } - }, - "1581": { - "Composer": "Jimmy Page/Led Zeppelin", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Dazed And Confused", - "genre": { - "Name": "Rock" - } - }, - "1582": { - "Composer": "Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Stairway To Heaven", - "genre": { - "Name": "Rock" - } - }, - "1583": { - "Composer": "Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Going To California", - "genre": { - "Name": "Rock" - } - }, - "1584": { - "Composer": "Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "That's The Way", - "genre": { - "Name": "Rock" - } - }, - "1585": { - "Composer": "Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Whole Lotta Love (Medley)", - "genre": { - "Name": "Rock" - } - }, - "1586": { - "Composer": "Robert Plant", - "album": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "Name": "Thank You", - "genre": { - "Name": "Rock" - } - }, - "1587": { - "Composer": "Ben E.King/James Bethea", - "album": { - "Title": "Coda" - }, - "Name": "We're Gonna Groove", - "genre": { - "Name": "Rock" - } - }, - "1588": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Coda" - }, - "Name": "Poor Tom", - "genre": { - "Name": "Rock" - } - }, - "1589": { - "Composer": "Willie Dixon", - "album": { - "Title": "Coda" - }, - "Name": "I Can't Quit You Baby", - "genre": { - "Name": "Rock" - } - }, - "1590": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Coda" - }, - "Name": "Walter's Walk", - "genre": { - "Name": "Rock" - } - }, - "1591": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Coda" - }, - "Name": "Ozone Baby", - "genre": { - "Name": "Rock" - } - }, - "1592": { - "Composer": "Jimmy Page, Robert Plant, John Bonham, John Paul Jones", - "album": { - "Title": "Coda" - }, - "Name": "Darlene", - "genre": { - "Name": "Rock" - } - }, - "1593": { - "Composer": "John Bonham", - "album": { - "Title": "Coda" - }, - "Name": "Bonzo's Montreux", - "genre": { - "Name": "Rock" - } - }, - "1594": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Coda" - }, - "Name": "Wearing And Tearing", - "genre": { - "Name": "Rock" - } - }, - "1595": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "The Song Remains The Same", - "genre": { - "Name": "Rock" - } - }, - "1596": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "The Rain Song", - "genre": { - "Name": "Rock" - } - }, - "1597": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "Over The Hills And Far Away", - "genre": { - "Name": "Rock" - } - }, - "1598": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "The Crunge", - "genre": { - "Name": "Rock" - } - }, - "1599": { - "Composer": "Jimmy Page/Jimmy Page & Robert Plant/Robert Plant", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "Dancing Days", - "genre": { - "Name": "Rock" - } - }, - "1600": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "D'Yer Mak'er", - "genre": { - "Name": "Rock" - } - }, - "1601": { - "Composer": "John Paul Jones", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "No Quarter", - "genre": { - "Name": "Rock" - } - }, - "1602": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "Title": "Houses Of The Holy" - }, - "Name": "The Ocean", - "genre": { - "Name": "Rock" - } - }, - "1603": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "In The Evening", - "genre": { - "Name": "Rock" - } - }, - "1604": { - "Composer": "John Paul Jones & Robert Plant", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "South Bound Saurez", - "genre": { - "Name": "Rock" - } - }, - "1605": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "Fool In The Rain", - "genre": { - "Name": "Rock" - } - }, - "1606": { - "Composer": "Jimmy Page & Robert Plant", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "Hot Dog", - "genre": { - "Name": "Rock" - } - }, - "1607": { - "Composer": "John Paul Jones, Jimmy Page & Robert Plant", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "Carouselambra", - "genre": { - "Name": "Rock" - } - }, - "1608": { - "Composer": "Robert Plant & John Paul Jones", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "All My Love", - "genre": { - "Name": "Rock" - } - }, - "1609": { - "Composer": "Jimmy Page, Robert Plant & John Paul Jones", - "album": { - "Title": "In Through The Out Door" - }, - "Name": "I'm Gonna Crawl", - "genre": { - "Name": "Rock" - } - }, - "1610": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "Title": "IV" - }, - "Name": "Black Dog", - "genre": { - "Name": "Rock" - } - }, - "1611": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "Title": "IV" - }, - "Name": "Rock & Roll", - "genre": { - "Name": "Rock" - } - }, - "1612": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "IV" - }, - "Name": "The Battle Of Evermore", - "genre": { - "Name": "Rock" - } - }, - "1613": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "IV" - }, - "Name": "Stairway To Heaven", - "genre": { - "Name": "Rock" - } - }, - "1614": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "Title": "IV" - }, - "Name": "Misty Mountain Hop", - "genre": { - "Name": "Rock" - } - }, - "1615": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "IV" - }, - "Name": "Four Sticks", - "genre": { - "Name": "Rock" - } - }, - "1616": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "IV" - }, - "Name": "Going To California", - "genre": { - "Name": "Rock" - } - }, - "1617": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie", - "album": { - "Title": "IV" - }, - "Name": "When The Levee Breaks", - "genre": { - "Name": "Rock" - } - }, - "1618": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "Good Times Bad Times", - "genre": { - "Name": "Rock" - } - }, - "1619": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "Babe I'm Gonna Leave You", - "genre": { - "Name": "Rock" - } - }, - "1620": { - "Composer": "J. B. Lenoir/Willie Dixon", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "You Shook Me", - "genre": { - "Name": "Rock" - } - }, - "1621": { - "Composer": "Jimmy Page", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "Dazed and Confused", - "genre": { - "Name": "Rock" - } - }, - "1622": { - "Composer": "Jimmy Page/John Paul Jones", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "Your Time Is Gonna Come", - "genre": { - "Name": "Rock" - } - }, - "1623": { - "Composer": "Jimmy Page", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "Black Mountain Side", - "genre": { - "Name": "Rock" - } - }, - "1624": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "Communication Breakdown", - "genre": { - "Name": "Rock" - } - }, - "1625": { - "Composer": "Willie Dixon", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "I Can't Quit You Baby", - "genre": { - "Name": "Rock" - } - }, - "1626": { - "Composer": "Jimmy Page/John Bonham/John Paul Jones", - "album": { - "Title": "Led Zeppelin I" - }, - "Name": "How Many More Times", - "genre": { - "Name": "Rock" - } - }, - "1627": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Whole Lotta Love", - "genre": { - "Name": "Rock" - } - }, - "1628": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "What Is And What Should Never Be", - "genre": { - "Name": "Rock" - } - }, - "1629": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "The Lemon Song", - "genre": { - "Name": "Rock" - } - }, - "1630": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Thank You", - "genre": { - "Name": "Rock" - } - }, - "1631": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones, John Bonham", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Heartbreaker", - "genre": { - "Name": "Rock" - } - }, - "1632": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Living Loving Maid (She's Just A Woman)", - "genre": { - "Name": "Rock" - } - }, - "1633": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Ramble On", - "genre": { - "Name": "Rock" - } - }, - "1634": { - "Composer": "John Bonham, John Paul Jones, Jimmy Page", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Moby Dick", - "genre": { - "Name": "Rock" - } - }, - "1635": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin II" - }, - "Name": "Bring It On Home", - "genre": { - "Name": "Rock" - } - }, - "1636": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Immigrant Song", - "genre": { - "Name": "Rock" - } - }, - "1637": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Friends", - "genre": { - "Name": "Rock" - } - }, - "1638": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Celebration Day", - "genre": { - "Name": "Rock" - } - }, - "1639": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Since I've Been Loving You", - "genre": { - "Name": "Rock" - } - }, - "1640": { - "Composer": "Jimmy Page, Robert Plant, John Bonham", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Out On The Tiles", - "genre": { - "Name": "Rock" - } - }, - "1641": { - "Composer": "Traditional", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Gallows Pole", - "genre": { - "Name": "Rock" - } - }, - "1642": { - "Composer": "Jimmy Page", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Tangerine", - "genre": { - "Name": "Rock" - } - }, - "1643": { - "Composer": "Jimmy Page, Robert Plant", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "That's The Way", - "genre": { - "Name": "Rock" - } - }, - "1644": { - "Composer": "Jimmy Page, Robert Plant, John Paul Jones", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Bron-Y-Aur Stomp", - "genre": { - "Name": "Rock" - } - }, - "1645": { - "Composer": "Traditional", - "album": { - "Title": "Led Zeppelin III" - }, - "Name": "Hats Off To (Roy) Harper", - "genre": { - "Name": "Rock" - } - }, - "1646": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "In The Light", - "genre": { - "Name": "Rock" - } - }, - "1647": { - "Composer": "Jimmy Page", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Bron-Yr-Aur", - "genre": { - "Name": "Rock" - } - }, - "1648": { - "Composer": "Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Down By The Seaside", - "genre": { - "Name": "Rock" - } - }, - "1649": { - "Composer": "Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Ten Years Gone", - "genre": { - "Name": "Rock" - } - }, - "1650": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Night Flight", - "genre": { - "Name": "Rock" - } - }, - "1651": { - "Composer": "Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "The Wanton Song", - "genre": { - "Name": "Rock" - } - }, - "1652": { - "Composer": "Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Boogie With Stu", - "genre": { - "Name": "Rock" - } - }, - "1653": { - "Composer": "Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Black Country Woman", - "genre": { - "Name": "Rock" - } - }, - "1654": { - "Composer": "Robert Plant", - "album": { - "Title": "Physical Graffiti [Disc 2]" - }, - "Name": "Sick Again", - "genre": { - "Name": "Rock" - } - }, - "1655": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Presence" - }, - "Name": "Achilles Last Stand", - "genre": { - "Name": "Rock" - } - }, - "1656": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Presence" - }, - "Name": "For Your Life", - "genre": { - "Name": "Rock" - } - }, - "1657": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "Title": "Presence" - }, - "Name": "Royal Orleans", - "genre": { - "Name": "Rock" - } - }, - "1658": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Presence" - }, - "Name": "Nobody's Fault But Mine", - "genre": { - "Name": "Rock" - } - }, - "1659": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Presence" - }, - "Name": "Candy Store Rock", - "genre": { - "Name": "Rock" - } - }, - "1660": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Presence" - }, - "Name": "Hots On For Nowhere", - "genre": { - "Name": "Rock" - } - }, - "1661": { - "Composer": "Jimmy Page/Robert Plant", - "album": { - "Title": "Presence" - }, - "Name": "Tea For One", - "genre": { - "Name": "Rock" - } - }, - "1662": { - "Composer": "John Bonham/John Paul Jones/Robert Plant", - "album": { - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Rock & Roll", - "genre": { - "Name": "Rock" - } - }, - "1663": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Celebration Day", - "genre": { - "Name": "Rock" - } - }, - "1664": { - "Composer": "Robert Plant", - "album": { - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "The Song Remains The Same", - "genre": { - "Name": "Rock" - } - }, - "1665": { - "Composer": "Robert Plant", - "album": { - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Rain Song", - "genre": { - "Name": "Rock" - } - }, - "1666": { - "Composer": "Jimmy Page", - "album": { - "Title": "The Song Remains The Same (Disc 1)" - }, - "Name": "Dazed And Confused", - "genre": { - "Name": "Rock" - } - }, - "1667": { - "Composer": "John Paul Jones/Robert Plant", - "album": { - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "No Quarter", - "genre": { - "Name": "Rock" - } - }, - "1668": { - "Composer": "Robert Plant", - "album": { - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "Stairway To Heaven", - "genre": { - "Name": "Rock" - } - }, - "1669": { - "Composer": "John Bonham/John Paul Jones", - "album": { - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "Moby Dick", - "genre": { - "Name": "Rock" - } - }, - "1670": { - "Composer": "John Bonham/John Paul Jones/Robert Plant/Willie Dixon", - "album": { - "Title": "The Song Remains The Same (Disc 2)" - }, - "Name": "Whole Lotta Love", - "genre": { - "Name": "Rock" - } - }, - "1702": { - "Composer": "Craig Ross/Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Are You Gonna Go My Way", - "genre": { - "Name": "Rock" - } - }, - "1703": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Fly Away", - "genre": { - "Name": "Rock" - } - }, - "1704": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Rock And Roll Is Dead", - "genre": { - "Name": "Rock" - } - }, - "1705": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Again", - "genre": { - "Name": "Rock" - } - }, - "1706": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "It Ain't Over 'Til It's Over", - "genre": { - "Name": "Rock" - } - }, - "1707": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Can't Get You Off My Mind", - "genre": { - "Name": "Rock" - } - }, - "1708": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Mr. Cab Driver", - "genre": { - "Name": "Rock" - } - }, - "1709": { - "Composer": "B. Cummings/G. Peterson/M.J. Kale/R. Bachman", - "album": { - "Title": "Greatest Hits" - }, - "Name": "American Woman", - "genre": { - "Name": "Rock" - } - }, - "1710": { - "Composer": "Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Stand By My Woman", - "genre": { - "Name": "Rock" - } - }, - "1711": { - "Composer": "Lenny Kravitz/Slash", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Always On The Run", - "genre": { - "Name": "Rock" - } - }, - "1712": { - "Composer": "Gerry DeVeaux/Terry Britten", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Heaven Help", - "genre": { - "Name": "Rock" - } - }, - "1713": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "I Belong To You", - "genre": { - "Name": "Rock" - } - }, - "1714": { - "Composer": "Henry Hirsch/Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Believe", - "genre": { - "Name": "Rock" - } - }, - "1715": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Let Love Rule", - "genre": { - "Name": "Rock" - } - }, - "1716": { - "Composer": "Lenny Kravitz", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Black Velveteen", - "genre": { - "Name": "Rock" - } - }, - "1745": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Pseudo Silk Kimono", - "genre": { - "Name": "Rock" - } - }, - "1746": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Kayleigh", - "genre": { - "Name": "Rock" - } - }, - "1747": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Lavender", - "genre": { - "Name": "Rock" - } - }, - "1748": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel", - "genre": { - "Name": "Rock" - } - }, - "1749": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Heart Of Lothian: Wide Boy / Curtain Call", - "genre": { - "Name": "Rock" - } - }, - "1750": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Waterhole (Expresso Bongo)", - "genre": { - "Name": "Rock" - } - }, - "1751": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Lords Of The Backstage", - "genre": { - "Name": "Rock" - } - }, - "1752": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold", - "genre": { - "Name": "Rock" - } - }, - "1753": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "Childhoods End?", - "genre": { - "Name": "Rock" - } - }, - "1754": { - "Composer": "Kelly, Mosley, Rothery, Trewaves", - "album": { - "Title": "Misplaced Childhood" - }, - "Name": "White Feather", - "genre": { - "Name": "Rock" - } - }, - "1755": { - "Composer": "Carlinhos Brown", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Arrepio", - "genre": { - "Name": "Latin" - } - }, - "1756": { - "Composer": "Carlinhos Brown", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Magamalabares", - "genre": { - "Name": "Latin" - } - }, - "1757": { - "Composer": "Morais", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Chuva No Brejo", - "genre": { - "Name": "Latin" - } - }, - "1759": { - "Composer": "Lulu Santos", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Tempos Modernos", - "genre": { - "Name": "Latin" - } - }, - "1762": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Panis Et Circenses", - "genre": { - "Name": "Latin" - } - }, - "1763": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "De Noite Na Cama", - "genre": { - "Name": "Latin" - } - }, - "1764": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Beija Eu", - "genre": { - "Name": "Latin" - } - }, - "1765": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Give Me Love", - "genre": { - "Name": "Latin" - } - }, - "1766": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Ainda Lembro", - "genre": { - "Name": "Latin" - } - }, - "1769": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Ao Meu Redor", - "genre": { - "Name": "Latin" - } - }, - "1770": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Bem Leve", - "genre": { - "Name": "Latin" - } - }, - "1771": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "Segue O Seco", - "genre": { - "Name": "Latin" - } - }, - "1772": { - "Composer": "Caetano Veloso e Gilberto Gil", - "album": { - "Title": "Barulhinho Bom" - }, - "Name": "O Xote Das Meninas", - "genre": { - "Name": "Latin" - } - }, - "1773": { - "Composer": null, - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Wherever I Lay My Hat", - "genre": { - "Name": "R&B/Soul" - } - }, - "1774": { - "Composer": null, - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Get My Hands On Some Lovin'", - "genre": { - "Name": "R&B/Soul" - } - }, - "1775": { - "Composer": "William \"Mickey\" Stevenson", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "No Good Without You", - "genre": { - "Name": "R&B/Soul" - } - }, - "1776": { - "Composer": "Brian Holland/Eddie Holland/Lamont Dozier", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "You've Been A Long Time Coming", - "genre": { - "Name": "R&B/Soul" - } - }, - "1777": { - "Composer": "Robert Rogers/Warren \"Pete\" Moore/William \"Mickey\" Stevenson", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "When I Had Your Love", - "genre": { - "Name": "R&B/Soul" - } - }, - "1778": { - "Composer": "Allen Story/George Gordy/Robert Gordy", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "You're What's Happening (In The World Today)", - "genre": { - "Name": "R&B/Soul" - } - }, - "1779": { - "Composer": "Ivy Hunter/Stevie Wonder", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Loving You Is Sweeter Than Ever", - "genre": { - "Name": "R&B/Soul" - } - }, - "1780": { - "Composer": "Smokey Robinson/Warren \"Pete\" Moore", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "It's A Bitter Pill To Swallow", - "genre": { - "Name": "R&B/Soul" - } - }, - "1781": { - "Composer": "Ivy Hunter/William \"Mickey\" Stevenson", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Seek And You Shall Find", - "genre": { - "Name": "R&B/Soul" - } - }, - "1782": { - "Composer": "Barrett Strong/Norman Whitfield", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Gonna Keep On Tryin' Till I Win Your Love", - "genre": { - "Name": "R&B/Soul" - } - }, - "1783": { - "Composer": "Barrett Strong/Norman Whitfield", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Gonna Give Her All The Love I've Got", - "genre": { - "Name": "R&B/Soul" - } - }, - "1784": { - "Composer": "Barrett Strong/Norman Whitfield/Roger Penzabene", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "I Wish It Would Rain", - "genre": { - "Name": "R&B/Soul" - } - }, - "1785": { - "Composer": "Dick Holler", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Abraham, Martin And John", - "genre": { - "Name": "R&B/Soul" - } - }, - "1786": { - "Composer": "Al Cleveland/Marvin Gaye/Renaldo Benson", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Save The Children", - "genre": { - "Name": "R&B/Soul" - } - }, - "1787": { - "Composer": "Marvin Gaye", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "You Sure Love To Ball", - "genre": { - "Name": "R&B/Soul" - } - }, - "1788": { - "Composer": "Marvin Gaye", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Ego Tripping Out", - "genre": { - "Name": "R&B/Soul" - } - }, - "1789": { - "Composer": "Marvin Gaye", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Praise", - "genre": { - "Name": "R&B/Soul" - } - }, - "1790": { - "Composer": "Marvin Gaye", - "album": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - }, - "Name": "Heavy Love Affair", - "genre": { - "Name": "R&B/Soul" - } - }, - "1791": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Down Under", - "genre": { - "Name": "Rock" - } - }, - "1792": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Overkill", - "genre": { - "Name": "Rock" - } - }, - "1793": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Be Good Johnny", - "genre": { - "Name": "Rock" - } - }, - "1794": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Everything I Need", - "genre": { - "Name": "Rock" - } - }, - "1795": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Down by the Sea", - "genre": { - "Name": "Rock" - } - }, - "1796": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Who Can It Be Now?", - "genre": { - "Name": "Rock" - } - }, - "1797": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "It's a Mistake", - "genre": { - "Name": "Rock" - } - }, - "1798": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Dr. Heckyll & Mr. Jive", - "genre": { - "Name": "Rock" - } - }, - "1799": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "Shakes and Ladders", - "genre": { - "Name": "Rock" - } - }, - "1800": { - "Composer": null, - "album": { - "Title": "The Best Of Men At Work" - }, - "Name": "No Sign of Yesterday", - "genre": { - "Name": "Rock" - } - }, - "1801": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "Title": "Black Album" - }, - "Name": "Enter Sandman", - "genre": { - "Name": "Metal" - } - }, - "1802": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "Sad But True", - "genre": { - "Name": "Metal" - } - }, - "1803": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "Holier Than Thou", - "genre": { - "Name": "Metal" - } - }, - "1804": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "Title": "Black Album" - }, - "Name": "The Unforgiven", - "genre": { - "Name": "Metal" - } - }, - "1805": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "Wherever I May Roam", - "genre": { - "Name": "Metal" - } - }, - "1806": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "Don't Tread On Me", - "genre": { - "Name": "Metal" - } - }, - "1807": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "Title": "Black Album" - }, - "Name": "Through The Never", - "genre": { - "Name": "Metal" - } - }, - "1808": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "Nothing Else Matters", - "genre": { - "Name": "Metal" - } - }, - "1809": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "Title": "Black Album" - }, - "Name": "Of Wolf And Man", - "genre": { - "Name": "Metal" - } - }, - "1810": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "The God That Failed", - "genre": { - "Name": "Metal" - } - }, - "1811": { - "Composer": "James Hetfield, Lars Ulrich and Jason Newsted", - "album": { - "Title": "Black Album" - }, - "Name": "My Friend Of Misery", - "genre": { - "Name": "Metal" - } - }, - "1812": { - "Composer": "Ulrich", - "album": { - "Title": "Black Album" - }, - "Name": "The Struggle Within", - "genre": { - "Name": "Metal" - } - }, - "1813": { - "Composer": "Harris/Tatler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Helpless", - "genre": { - "Name": "Metal" - } - }, - "1814": { - "Composer": "Holocaust", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "The Small Hours", - "genre": { - "Name": "Metal" - } - }, - "1815": { - "Composer": "Killing Joke", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "The Wait", - "genre": { - "Name": "Metal" - } - }, - "1816": { - "Composer": "Bourge/Phillips/Shelley", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Crash Course In Brain Surgery", - "genre": { - "Name": "Metal" - } - }, - "1817": { - "Composer": "Danzig", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Last Caress/Green Hell", - "genre": { - "Name": "Metal" - } - }, - "1818": { - "Composer": "Harris/Tatler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Am I Evil?", - "genre": { - "Name": "Metal" - } - }, - "1819": { - "Composer": "Jones/Sirotto/Smith", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Blitzkrieg", - "genre": { - "Name": "Metal" - } - }, - "1820": { - "Composer": "Bourge/Phillips/Shelley", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Breadfan", - "genre": { - "Name": "Metal" - } - }, - "1821": { - "Composer": "Harris/Tatler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "The Prince", - "genre": { - "Name": "Metal" - } - }, - "1822": { - "Composer": "Deacon/May/Mercury/Taylor", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Stone Cold Crazy", - "genre": { - "Name": "Metal" - } - }, - "1823": { - "Composer": "Culmer/Exalt", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "So What", - "genre": { - "Name": "Metal" - } - }, - "1824": { - "Composer": "Sweet Savage", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Killing Time", - "genre": { - "Name": "Metal" - } - }, - "1825": { - "Composer": "Clarke/Kilmister/Tayler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Overkill", - "genre": { - "Name": "Metal" - } - }, - "1826": { - "Composer": "Clarke/Farren/Kilmister/Tayler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Damage Case", - "genre": { - "Name": "Metal" - } - }, - "1827": { - "Composer": "Clarke/Kilmister/Tayler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Stone Dead Forever", - "genre": { - "Name": "Metal" - } - }, - "1828": { - "Composer": "Clarke/Kilmister/Tayler", - "album": { - "Title": "Garage Inc. (Disc 2)" - }, - "Name": "Too Late Too Late", - "genre": { - "Name": "Metal" - } - }, - "1829": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Hit The Lights", - "genre": { - "Name": "Metal" - } - }, - "1830": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "The Four Horsemen", - "genre": { - "Name": "Metal" - } - }, - "1831": { - "Composer": "James Hetfield", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Motorbreath", - "genre": { - "Name": "Metal" - } - }, - "1832": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Jump In The Fire", - "genre": { - "Name": "Metal" - } - }, - "1833": { - "Composer": "Cliff Burton", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "(Anesthesia) Pulling Teeth", - "genre": { - "Name": "Metal" - } - }, - "1834": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Whiplash", - "genre": { - "Name": "Metal" - } - }, - "1835": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Phantom Lord", - "genre": { - "Name": "Metal" - } - }, - "1836": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "No Remorse", - "genre": { - "Name": "Metal" - } - }, - "1837": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Seek & Destroy", - "genre": { - "Name": "Metal" - } - }, - "1838": { - "Composer": "James Hetfield, Lars Ulrich, Dave Mustaine", - "album": { - "Title": "Kill 'Em All" - }, - "Name": "Metal Militia", - "genre": { - "Name": "Metal" - } - }, - "1839": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "Ain't My Bitch", - "genre": { - "Name": "Metal" - } - }, - "1840": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "2 X 4", - "genre": { - "Name": "Metal" - } - }, - "1841": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "The House Jack Built", - "genre": { - "Name": "Metal" - } - }, - "1842": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "Until It Sleeps", - "genre": { - "Name": "Metal" - } - }, - "1843": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "King Nothing", - "genre": { - "Name": "Metal" - } - }, - "1844": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "Hero Of The Day", - "genre": { - "Name": "Metal" - } - }, - "1845": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "Bleeding Me", - "genre": { - "Name": "Metal" - } - }, - "1846": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "Cure", - "genre": { - "Name": "Metal" - } - }, - "1847": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "Poor Twisted Me", - "genre": { - "Name": "Metal" - } - }, - "1848": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "Wasted My Hate", - "genre": { - "Name": "Metal" - } - }, - "1849": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "Mama Said", - "genre": { - "Name": "Metal" - } - }, - "1850": { - "Composer": "James Hetfield, Lars Ulrich, Kirk Hammett", - "album": { - "Title": "Load" - }, - "Name": "Thorn Within", - "genre": { - "Name": "Metal" - } - }, - "1851": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "Ronnie", - "genre": { - "Name": "Metal" - } - }, - "1852": { - "Composer": "James Hetfield, Lars Ulrich", - "album": { - "Title": "Load" - }, - "Name": "The Outlaw Torn", - "genre": { - "Name": "Metal" - } - }, - "1853": { - "Composer": "J.Hetfield/L.Ulrich", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Battery", - "genre": { - "Name": "Metal" - } - }, - "1854": { - "Composer": "K.Hammett", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Master Of Puppets", - "genre": { - "Name": "Metal" - } - }, - "1855": { - "Composer": "K.Hammett", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "The Thing That Should Not Be", - "genre": { - "Name": "Metal" - } - }, - "1856": { - "Composer": "K.Hammett", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Welcome Home (Sanitarium)", - "genre": { - "Name": "Metal" - } - }, - "1857": { - "Composer": "J.Hetfield/L.Ulrich", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Disposable Heroes", - "genre": { - "Name": "Metal" - } - }, - "1858": { - "Composer": "C.Burton", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Leper Messiah", - "genre": { - "Name": "Metal" - } - }, - "1859": { - "Composer": "K.Hammett", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Orion", - "genre": { - "Name": "Metal" - } - }, - "1860": { - "Composer": "K.Hammett", - "album": { - "Title": "Master Of Puppets" - }, - "Name": "Damage Inc.", - "genre": { - "Name": "Metal" - } - }, - "1861": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "Title": "ReLoad" - }, - "Name": "Fuel", - "genre": { - "Name": "Metal" - } - }, - "1862": { - "Composer": "Hetfield, Ulrich", - "album": { - "Title": "ReLoad" - }, - "Name": "The Memory Remains", - "genre": { - "Name": "Metal" - } - }, - "1863": { - "Composer": "Hetfield, Ulrich", - "album": { - "Title": "ReLoad" - }, - "Name": "Devil's Dance", - "genre": { - "Name": "Metal" - } - }, - "1864": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "Title": "ReLoad" - }, - "Name": "The Unforgiven II", - "genre": { - "Name": "Metal" - } - }, - "1865": { - "Composer": "Hetfield, Ulrich", - "album": { - "Title": "ReLoad" - }, - "Name": "Better Than You", - "genre": { - "Name": "Metal" - } - }, - "1866": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "Title": "ReLoad" - }, - "Name": "Slither", - "genre": { - "Name": "Metal" - } - }, - "1867": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "Title": "ReLoad" - }, - "Name": "Carpe Diem Baby", - "genre": { - "Name": "Metal" - } - }, - "1868": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "Title": "ReLoad" - }, - "Name": "Bad Seed", - "genre": { - "Name": "Metal" - } - }, - "1869": { - "Composer": "Hetfield, Ulrich, Newsted", - "album": { - "Title": "ReLoad" - }, - "Name": "Where The Wild Things Are", - "genre": { - "Name": "Metal" - } - }, - "1870": { - "Composer": "Hetfield, Ulrich", - "album": { - "Title": "ReLoad" - }, - "Name": "Prince Charming", - "genre": { - "Name": "Metal" - } - }, - "1871": { - "Composer": "Hetfield, Ulrich", - "album": { - "Title": "ReLoad" - }, - "Name": "Low Man's Lyric", - "genre": { - "Name": "Metal" - } - }, - "1872": { - "Composer": "Hetfield, Ulrich", - "album": { - "Title": "ReLoad" - }, - "Name": "Attitude", - "genre": { - "Name": "Metal" - } - }, - "1873": { - "Composer": "Hetfield, Ulrich, Hammett", - "album": { - "Title": "ReLoad" - }, - "Name": "Fixxxer", - "genre": { - "Name": "Metal" - } - }, - "1874": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "Fight Fire With Fire", - "genre": { - "Name": "Metal" - } - }, - "1875": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "Ride The Lightning", - "genre": { - "Name": "Metal" - } - }, - "1876": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "For Whom The Bell Tolls", - "genre": { - "Name": "Metal" - } - }, - "1877": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "Fade To Black", - "genre": { - "Name": "Metal" - } - }, - "1878": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "Trapped Under Ice", - "genre": { - "Name": "Metal" - } - }, - "1879": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "Escape", - "genre": { - "Name": "Metal" - } - }, - "1880": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "Creeping Death", - "genre": { - "Name": "Metal" - } - }, - "1881": { - "Composer": "Metallica", - "album": { - "Title": "Ride The Lightning" - }, - "Name": "The Call Of Ktulu", - "genre": { - "Name": "Metal" - } - }, - "1882": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Frantic", - "genre": { - "Name": "Metal" - } - }, - "1883": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "St. Anger", - "genre": { - "Name": "Metal" - } - }, - "1884": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Some Kind Of Monster", - "genre": { - "Name": "Metal" - } - }, - "1885": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Dirty Window", - "genre": { - "Name": "Metal" - } - }, - "1886": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Invisible Kid", - "genre": { - "Name": "Metal" - } - }, - "1887": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "My World", - "genre": { - "Name": "Metal" - } - }, - "1888": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Shoot Me Again", - "genre": { - "Name": "Metal" - } - }, - "1889": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Sweet Amber", - "genre": { - "Name": "Metal" - } - }, - "1890": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "The Unnamed Feeling", - "genre": { - "Name": "Metal" - } - }, - "1891": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "Purify", - "genre": { - "Name": "Metal" - } - }, - "1892": { - "Composer": "Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich", - "album": { - "Title": "St. Anger" - }, - "Name": "All Within My Hands", - "genre": { - "Name": "Metal" - } - }, - "1893": { - "Composer": "James Hetfield, Lars Ulrich & Jason Newsted", - "album": { - "Title": "...And Justice For All" - }, - "Name": "Blackened", - "genre": { - "Name": "Metal" - } - }, - "1894": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "album": { - "Title": "...And Justice For All" - }, - "Name": "...And Justice For All", - "genre": { - "Name": "Metal" - } - }, - "1895": { - "Composer": "James Hetfield, Lars Ulrich & Kirk Hammett", - "album": { - "Title": "...And Justice For All" - }, - "Name": "Eye Of The Beholder", - "genre": { - "Name": "Metal" - } - }, - "1896": { - "Composer": "James Hetfield & Lars Ulrich", - "album": { - "Title": "...And Justice For All" - }, - "Name": "One", - "genre": { - "Name": "Metal" - } - }, - "1897": { - "Composer": "James Hetfield and Lars Ulrich", - "album": { - "Title": "...And Justice For All" - }, - "Name": "The Shortest Straw", - "genre": { - "Name": "Metal" - } - }, - "1898": { - "Composer": "James Hetfield and Lars Ulrich", - "album": { - "Title": "...And Justice For All" - }, - "Name": "Harvester Of Sorrow", - "genre": { - "Name": "Metal" - } - }, - "1899": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "Title": "...And Justice For All" - }, - "Name": "The Frayed Ends Of Sanity", - "genre": { - "Name": "Metal" - } - }, - "1900": { - "Composer": "James Hetfield, Lars Ulrich and Cliff Burton", - "album": { - "Title": "...And Justice For All" - }, - "Name": "To Live Is To Die", - "genre": { - "Name": "Metal" - } - }, - "1901": { - "Composer": "James Hetfield, Lars Ulrich and Kirk Hammett", - "album": { - "Title": "...And Justice For All" - }, - "Name": "Dyers Eve", - "genre": { - "Name": "Metal" - } - }, - "1902": { - "Composer": "J. Carisi", - "album": { - "Title": "Miles Ahead" - }, - "Name": "Springsville", - "genre": { - "Name": "Jazz" - } - }, - "1903": { - "Composer": "L. Delibes", - "album": { - "Title": "Miles Ahead" - }, - "Name": "The Maids Of Cadiz", - "genre": { - "Name": "Jazz" - } - }, - "1904": { - "Composer": "Dave Brubeck", - "album": { - "Title": "Miles Ahead" - }, - "Name": "The Duke", - "genre": { - "Name": "Jazz" - } - }, - "1905": { - "Composer": "Ira Gershwin, Kurt Weill", - "album": { - "Title": "Miles Ahead" - }, - "Name": "My Ship", - "genre": { - "Name": "Jazz" - } - }, - "1906": { - "Composer": "Miles Davis, Gil Evans", - "album": { - "Title": "Miles Ahead" - }, - "Name": "Miles Ahead", - "genre": { - "Name": "Jazz" - } - }, - "1907": { - "Composer": "Gil Evans", - "album": { - "Title": "Miles Ahead" - }, - "Name": "Blues For Pablo", - "genre": { - "Name": "Jazz" - } - }, - "1908": { - "Composer": "A. Jamal", - "album": { - "Title": "Miles Ahead" - }, - "Name": "New Rhumba", - "genre": { - "Name": "Jazz" - } - }, - "1909": { - "Composer": "R. Troup, L. Worth", - "album": { - "Title": "Miles Ahead" - }, - "Name": "The Meaning Of The Blues", - "genre": { - "Name": "Jazz" - } - }, - "1910": { - "Composer": "J.J. Johnson", - "album": { - "Title": "Miles Ahead" - }, - "Name": "Lament", - "genre": { - "Name": "Jazz" - } - }, - "1911": { - "Composer": "H. Spina, J. Elliott", - "album": { - "Title": "Miles Ahead" - }, - "Name": "I Don't Wanna Be Kissed (By Anyone But You)", - "genre": { - "Name": "Jazz" - } - }, - "1912": { - "Composer": "J. Carisi", - "album": { - "Title": "Miles Ahead" - }, - "Name": "Springsville (Alternate Take)", - "genre": { - "Name": "Jazz" - } - }, - "1913": { - "Composer": "Gil Evans", - "album": { - "Title": "Miles Ahead" - }, - "Name": "Blues For Pablo (Alternate Take)", - "genre": { - "Name": "Jazz" - } - }, - "1914": { - "Composer": "J.J. Johnson/R. Troup, L. Worth", - "album": { - "Title": "Miles Ahead" - }, - "Name": "The Meaning Of The Blues/Lament (Alternate Take)", - "genre": { - "Name": "Jazz" - } - }, - "1915": { - "Composer": "H. Spina, J. Elliott", - "album": { - "Title": "Miles Ahead" - }, - "Name": "I Don't Wanna Be Kissed (By Anyone But You) (Alternate Take)", - "genre": { - "Name": "Jazz" - } - }, - "1917": { - "Composer": "Dolores Duran", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "A Noite Do Meu Bem", - "genre": { - "Name": "Latin" - } - }, - "1919": { - "Composer": "Folclore", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Cuitelinho", - "genre": { - "Name": "Latin" - } - }, - "1921": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Nos Bailes Da Vida", - "genre": { - "Name": "Latin" - } - }, - "1922": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Menestrel Das Alagoas", - "genre": { - "Name": "Latin" - } - }, - "1923": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Brasil", - "genre": { - "Name": "Latin" - } - }, - "1925": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Um Gosto De Sol", - "genre": { - "Name": "Latin" - } - }, - "1926": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Solar", - "genre": { - "Name": "Latin" - } - }, - "1928": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Milton Nascimento Ao Vivo" - }, - "Name": "Maria, Maria", - "genre": { - "Name": "Latin" - } - }, - "1929": { - "Composer": "Milton Nascimento, Caetano Veloso", - "album": { - "Title": "Minas" - }, - "Name": "Minas", - "genre": { - "Name": "Latin" - } - }, - "1931": { - "Composer": "Toninho Horta", - "album": { - "Title": "Minas" - }, - "Name": "Beijo Partido", - "genre": { - "Name": "Latin" - } - }, - "1934": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Minas" - }, - "Name": "Ponta de Areia", - "genre": { - "Name": "Latin" - } - }, - "1935": { - "Composer": "Milton Nascimento, Ronaldo Bastos", - "album": { - "Title": "Minas" - }, - "Name": "Trastevere", - "genre": { - "Name": "Latin" - } - }, - "1936": { - "Composer": "Milton Nascimento, Fernando Brant", - "album": { - "Title": "Minas" - }, - "Name": "Idolatrada", - "genre": { - "Name": "Latin" - } - }, - "1937": { - "Composer": "Milton Nascimento", - "album": { - "Title": "Minas" - }, - "Name": "Leila (Venha Ser Feliz)", - "genre": { - "Name": "Latin" - } - }, - "1938": { - "Composer": "Milton Nascimento, Caetano Veloso", - "album": { - "Title": "Minas" - }, - "Name": "Paula E Bebeto", - "genre": { - "Name": "Latin" - } - }, - "1939": { - "Composer": "Nelson Angelo", - "album": { - "Title": "Minas" - }, - "Name": "Simples", - "genre": { - "Name": "Latin" - } - }, - "1940": { - "Composer": "John Lennon, Paul McCartney", - "album": { - "Title": "Minas" - }, - "Name": "Norwegian Wood", - "genre": { - "Name": "Latin" - } - }, - "1986": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Intro", - "genre": { - "Name": "Rock" - } - }, - "1987": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "School", - "genre": { - "Name": "Rock" - } - }, - "1988": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Drain You", - "genre": { - "Name": "Rock" - } - }, - "1989": { - "Composer": "Nirvana", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Aneurysm", - "genre": { - "Name": "Rock" - } - }, - "1990": { - "Composer": "Nirvana", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Smells Like Teen Spirit", - "genre": { - "Name": "Rock" - } - }, - "1991": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Been A Son", - "genre": { - "Name": "Rock" - } - }, - "1992": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Lithium", - "genre": { - "Name": "Rock" - } - }, - "1993": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Sliver", - "genre": { - "Name": "Rock" - } - }, - "1994": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Spank Thru", - "genre": { - "Name": "Rock" - } - }, - "1995": { - "Composer": "Nirvana", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Scentless Apprentice", - "genre": { - "Name": "Rock" - } - }, - "1996": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Heart-Shaped Box", - "genre": { - "Name": "Rock" - } - }, - "1997": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Milk It", - "genre": { - "Name": "Rock" - } - }, - "1998": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Negative Creep", - "genre": { - "Name": "Rock" - } - }, - "1999": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Polly", - "genre": { - "Name": "Rock" - } - }, - "2000": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Breed", - "genre": { - "Name": "Rock" - } - }, - "2001": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Tourette's", - "genre": { - "Name": "Rock" - } - }, - "2002": { - "Composer": "Kurt Cobain", - "album": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "Name": "Blew", - "genre": { - "Name": "Rock" - } - }, - "2003": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Smells Like Teen Spirit", - "genre": { - "Name": "Rock" - } - }, - "2004": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "In Bloom", - "genre": { - "Name": "Rock" - } - }, - "2005": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Come As You Are", - "genre": { - "Name": "Rock" - } - }, - "2006": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Breed", - "genre": { - "Name": "Rock" - } - }, - "2007": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Lithium", - "genre": { - "Name": "Rock" - } - }, - "2008": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Polly", - "genre": { - "Name": "Rock" - } - }, - "2009": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Territorial Pissings", - "genre": { - "Name": "Rock" - } - }, - "2010": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Drain You", - "genre": { - "Name": "Rock" - } - }, - "2011": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Lounge Act", - "genre": { - "Name": "Rock" - } - }, - "2012": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Stay Away", - "genre": { - "Name": "Rock" - } - }, - "2013": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "On A Plain", - "genre": { - "Name": "Rock" - } - }, - "2014": { - "Composer": "Kurt Cobain", - "album": { - "Title": "Nevermind" - }, - "Name": "Something In The Way", - "genre": { - "Name": "Rock" - } - }, - "2030": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Requebra", - "genre": { - "Name": "Latin" - } - }, - "2032": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Olodum - Alegria Geral", - "genre": { - "Name": "Latin" - } - }, - "2035": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Todo Amor (Asas Da Liberdade)", - "genre": { - "Name": "Latin" - } - }, - "2038": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Cartao Postal", - "genre": { - "Name": "Latin" - } - }, - "2039": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Jeito Faceiro", - "genre": { - "Name": "Latin" - } - }, - "2040": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Revolta Olodum", - "genre": { - "Name": "Latin" - } - }, - "2042": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Protesto Do Olodum (Ao Vivo)", - "genre": { - "Name": "Latin" - } - }, - "2043": { - "Composer": null, - "album": { - "Title": "Olodum" - }, - "Name": "Olodum - Smile (Instrumental)", - "genre": { - "Name": "Latin" - } - }, - "2065": { - "Composer": "Fito Paez/Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Trac Trac", - "genre": { - "Name": "Latin" - } - }, - "2067": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Mensagen De Amor (2000)", - "genre": { - "Name": "Latin" - } - }, - "2068": { - "Composer": "Bahiano/Diego Blanco/Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Lourinha Bombril", - "genre": { - "Name": "Latin" - } - }, - "2069": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "La Bella Luna", - "genre": { - "Name": "Latin" - } - }, - "2070": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Busca Vida", - "genre": { - "Name": "Latin" - } - }, - "2071": { - "Composer": "Carlinhos Brown/Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Uma Brasileira", - "genre": { - "Name": "Latin" - } - }, - "2072": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Luis Inacio (300 Picaretas)", - "genre": { - "Name": "Latin" - } - }, - "2073": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Saber Amar", - "genre": { - "Name": "Latin" - } - }, - "2074": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "Ela Disse Adeus", - "genre": { - "Name": "Latin" - } - }, - "2075": { - "Composer": "Herbert Vianna", - "album": { - "Title": "Arquivo II" - }, - "Name": "O Amor Nao Sabe Esperar", - "genre": { - "Name": "Latin" - } - }, - "2079": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Cinema Mudo", - "genre": { - "Name": "Latin" - } - }, - "2080": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Alagados", - "genre": { - "Name": "Latin" - } - }, - "2081": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Lanterna Dos Afogados", - "genre": { - "Name": "Latin" - } - }, - "2083": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Vital E Sua Moto", - "genre": { - "Name": "Latin" - } - }, - "2084": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "O Beco", - "genre": { - "Name": "Latin" - } - }, - "2085": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Meu Erro", - "genre": { - "Name": "Latin" - } - }, - "2086": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Perplexo", - "genre": { - "Name": "Latin" - } - }, - "2087": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Me Liga", - "genre": { - "Name": "Latin" - } - }, - "2088": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Quase Um Segundo", - "genre": { - "Name": "Latin" - } - }, - "2089": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Selvagem", - "genre": { - "Name": "Latin" - } - }, - "2090": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "Romance Ideal", - "genre": { - "Name": "Latin" - } - }, - "2092": { - "Composer": null, - "album": { - "Title": "Arquivo Os Paralamas Do Sucesso" - }, - "Name": "SKA", - "genre": { - "Name": "Latin" - } - }, - "2093": { - "Composer": "O. Osbourne", - "album": { - "Title": "Bark at the Moon (Remastered)" - }, - "Name": "Bark at the Moon", - "genre": { - "Name": "Rock" - } - }, - "2094": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "album": { - "Title": "Blizzard of Ozz" - }, - "Name": "I Don't Know", - "genre": { - "Name": "Rock" - } - }, - "2095": { - "Composer": "B. Daisley, O. Osbourne & R. Rhoads", - "album": { - "Title": "Blizzard of Ozz" - }, - "Name": "Crazy Train", - "genre": { - "Name": "Rock" - } - }, - "2096": { - "Composer": "L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads", - "album": { - "Title": "Diary of a Madman (Remastered)" - }, - "Name": "Flying High Again", - "genre": { - "Name": "Rock" - } - }, - "2097": { - "Composer": "L. Kilmister, O. Osbourne & Z. Wylde", - "album": { - "Title": "No More Tears (Remastered)" - }, - "Name": "Mama, I'm Coming Home", - "genre": { - "Name": "Rock" - } - }, - "2098": { - "Composer": "J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde", - "album": { - "Title": "No More Tears (Remastered)" - }, - "Name": "No More Tears", - "genre": { - "Name": "Rock" - } - }, - "2099": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "I Don't Know", - "genre": { - "Name": "Metal" - } - }, - "2100": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Crazy Train", - "genre": { - "Name": "Metal" - } - }, - "2101": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Believer", - "genre": { - "Name": "Metal" - } - }, - "2102": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Mr. Crowley", - "genre": { - "Name": "Metal" - } - }, - "2103": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake", - "album": { - "Title": "Tribute" - }, - "Name": "Flying High Again", - "genre": { - "Name": "Metal" - } - }, - "2104": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Relvelation (Mother Earth)", - "genre": { - "Name": "Metal" - } - }, - "2105": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Steal Away (The Night)", - "genre": { - "Name": "Metal" - } - }, - "2106": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Suicide Solution (With Guitar Solo)", - "genre": { - "Name": "Metal" - } - }, - "2107": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "album": { - "Title": "Tribute" - }, - "Name": "Iron Man", - "genre": { - "Name": "Metal" - } - }, - "2108": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "album": { - "Title": "Tribute" - }, - "Name": "Children Of The Grave", - "genre": { - "Name": "Metal" - } - }, - "2109": { - "Composer": "A. F. Iommi, W. Ward, T. Butler, J. Osbourne", - "album": { - "Title": "Tribute" - }, - "Name": "Paranoid", - "genre": { - "Name": "Metal" - } - }, - "2110": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Goodbye To Romance", - "genre": { - "Name": "Metal" - } - }, - "2111": { - "Composer": "O. Osbourne, R. Daisley, R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "No Bone Movies", - "genre": { - "Name": "Metal" - } - }, - "2112": { - "Composer": "R. Rhoads", - "album": { - "Title": "Tribute" - }, - "Name": "Dee", - "genre": { - "Name": "Metal" - } - }, - "2113": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Shining In The Light", - "genre": { - "Name": "Rock" - } - }, - "2114": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "When The World Was Young", - "genre": { - "Name": "Rock" - } - }, - "2115": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Upon A Golden Horse", - "genre": { - "Name": "Rock" - } - }, - "2116": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Blue Train", - "genre": { - "Name": "Rock" - } - }, - "2117": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Please Read The Letter", - "genre": { - "Name": "Rock" - } - }, - "2118": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Most High", - "genre": { - "Name": "Rock" - } - }, - "2119": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Heart In Your Hand", - "genre": { - "Name": "Rock" - } - }, - "2120": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Walking Into Clarksdale", - "genre": { - "Name": "Rock" - } - }, - "2121": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Burning Up", - "genre": { - "Name": "Rock" - } - }, - "2122": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "When I Was A Child", - "genre": { - "Name": "Rock" - } - }, - "2123": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "House Of Love", - "genre": { - "Name": "Rock" - } - }, - "2124": { - "Composer": "Jimmy Page, Robert Plant, Charlie Jones, Michael Lee", - "album": { - "Title": "Walking Into Clarksdale" - }, - "Name": "Sons Of Freedom", - "genre": { - "Name": "Rock" - } - }, - "2125": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "United Colours", - "genre": { - "Name": "Soundtrack" - } - }, - "2126": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Slug", - "genre": { - "Name": "Soundtrack" - } - }, - "2127": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Your Blue Room", - "genre": { - "Name": "Soundtrack" - } - }, - "2128": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Always Forever Now", - "genre": { - "Name": "Soundtrack" - } - }, - "2129": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "A Different Kind Of Blue", - "genre": { - "Name": "Soundtrack" - } - }, - "2130": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Beach Sequence", - "genre": { - "Name": "Soundtrack" - } - }, - "2131": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Miss Sarajevo", - "genre": { - "Name": "Soundtrack" - } - }, - "2132": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Ito Okashi", - "genre": { - "Name": "Soundtrack" - } - }, - "2133": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "One Minute Warning", - "genre": { - "Name": "Soundtrack" - } - }, - "2134": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Corpse (These Chains Are Way Too Long)", - "genre": { - "Name": "Soundtrack" - } - }, - "2135": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Elvis Ate America", - "genre": { - "Name": "Soundtrack" - } - }, - "2136": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Plot 180", - "genre": { - "Name": "Soundtrack" - } - }, - "2137": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Theme From The Swan", - "genre": { - "Name": "Soundtrack" - } - }, - "2138": { - "Composer": "Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.", - "album": { - "Title": "Original Soundtracks 1" - }, - "Name": "Theme From Let's Go Native", - "genre": { - "Name": "Soundtrack" - } - }, - "2139": { - "Composer": "Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Wrathchild", - "genre": { - "Name": "Rock" - } - }, - "2140": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Killers", - "genre": { - "Name": "Rock" - } - }, - "2141": { - "Composer": "Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Prowler", - "genre": { - "Name": "Rock" - } - }, - "2142": { - "Composer": "Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Murders In The Rue Morgue", - "genre": { - "Name": "Rock" - } - }, - "2143": { - "Composer": "Greg Macainsh", - "album": { - "Title": "The Beast Live" - }, - "Name": "Women In Uniform", - "genre": { - "Name": "Rock" - } - }, - "2144": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Remember Tomorrow", - "genre": { - "Name": "Rock" - } - }, - "2145": { - "Composer": "David Murray/Paul Di'Anno/Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Sanctuary", - "genre": { - "Name": "Rock" - } - }, - "2146": { - "Composer": "Paul Di'Anno/Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Running Free", - "genre": { - "Name": "Rock" - } - }, - "2147": { - "Composer": "Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Phantom Of The Opera", - "genre": { - "Name": "Rock" - } - }, - "2148": { - "Composer": "Steve Harris", - "album": { - "Title": "The Beast Live" - }, - "Name": "Iron Maiden", - "genre": { - "Name": "Rock" - } - }, - "2149": { - "Composer": "Pearl Jam & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Corduroy", - "genre": { - "Name": "Rock" - } - }, - "2150": { - "Composer": "Eddie Vedder & Mike McCready", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Given To Fly", - "genre": { - "Name": "Rock" - } - }, - "2151": { - "Composer": "Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Hail, Hail", - "genre": { - "Name": "Rock" - } - }, - "2152": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Daughter", - "genre": { - "Name": "Rock" - } - }, - "2153": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "genre": { - "Name": "Rock" - } - }, - "2154": { - "Composer": "Pearl Jam", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Untitled", - "genre": { - "Name": "Rock" - } - }, - "2155": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "MFC", - "genre": { - "Name": "Rock" - } - }, - "2156": { - "Composer": "Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Go", - "genre": { - "Name": "Rock" - } - }, - "2157": { - "Composer": "Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Red Mosquito", - "genre": { - "Name": "Rock" - } - }, - "2158": { - "Composer": "Stone Gossard & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Even Flow", - "genre": { - "Name": "Rock" - } - }, - "2159": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Off He Goes", - "genre": { - "Name": "Rock" - } - }, - "2160": { - "Composer": "Jeff Ament & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Nothingman", - "genre": { - "Name": "Rock" - } - }, - "2161": { - "Composer": "Eddie Vedder & Stone Gossard", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Do The Evolution", - "genre": { - "Name": "Rock" - } - }, - "2162": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Better Man", - "genre": { - "Name": "Rock" - } - }, - "2163": { - "Composer": "Stone Gossard & Eddie Vedder", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "Black", - "genre": { - "Name": "Rock" - } - }, - "2164": { - "Composer": "Neil Young", - "album": { - "Title": "Live On Two Legs [Live]" - }, - "Name": "F*Ckin' Up", - "genre": { - "Name": "Rock" - } - }, - "2165": { - "Composer": "Stone Gossard", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Life Wasted", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2166": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Pearl Jam" - }, - "Name": "World Wide Suicide", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2167": { - "Composer": "Mike McCready & Stone Gossard", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Comatose", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2168": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Severed Hand", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2169": { - "Composer": "Mike McCready", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Marker In The Sand", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2170": { - "Composer": "Stone Gossard", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Parachutes", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2171": { - "Composer": "Matt Cameron & Mike McCready", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Unemployable", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2172": { - "Composer": "Jeff Ament", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Big Wave", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2173": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Gone", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2174": { - "Composer": "Stone Gossard", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Wasted Reprise", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2175": { - "Composer": "Jeff Ament", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Army Reserve", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2176": { - "Composer": "Eddie Vedder & Mike McCready", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Come Back", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2177": { - "Composer": "Eddie Vedder & Mike McCready", - "album": { - "Title": "Pearl Jam" - }, - "Name": "Inside Job", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2178": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Riot Act" - }, - "Name": "Can't Keep", - "genre": { - "Name": "Rock" - } - }, - "2179": { - "Composer": "Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard", - "album": { - "Title": "Riot Act" - }, - "Name": "Save You", - "genre": { - "Name": "Rock" - } - }, - "2180": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Riot Act" - }, - "Name": "Love Boat Captain", - "genre": { - "Name": "Rock" - } - }, - "2181": { - "Composer": "Matt Cameron", - "album": { - "Title": "Riot Act" - }, - "Name": "Cropduster", - "genre": { - "Name": "Rock" - } - }, - "2182": { - "Composer": "Jeff Ament", - "album": { - "Title": "Riot Act" - }, - "Name": "Ghost", - "genre": { - "Name": "Rock" - } - }, - "2183": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Riot Act" - }, - "Name": "I Am Mine", - "genre": { - "Name": "Rock" - } - }, - "2184": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Riot Act" - }, - "Name": "Thumbing My Way", - "genre": { - "Name": "Rock" - } - }, - "2185": { - "Composer": "Matt Cameron", - "album": { - "Title": "Riot Act" - }, - "Name": "You Are", - "genre": { - "Name": "Rock" - } - }, - "2186": { - "Composer": "Matt Cameron", - "album": { - "Title": "Riot Act" - }, - "Name": "Get Right", - "genre": { - "Name": "Rock" - } - }, - "2187": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Riot Act" - }, - "Name": "Green Disease", - "genre": { - "Name": "Rock" - } - }, - "2188": { - "Composer": "Jeff Ament", - "album": { - "Title": "Riot Act" - }, - "Name": "Help Help", - "genre": { - "Name": "Rock" - } - }, - "2189": { - "Composer": "Stone Gossard", - "album": { - "Title": "Riot Act" - }, - "Name": "Bushleager", - "genre": { - "Name": "Rock" - } - }, - "2190": { - "Composer": "Jeff Ament", - "album": { - "Title": "Riot Act" - }, - "Name": "1/2 Full", - "genre": { - "Name": "Rock" - } - }, - "2191": { - "Composer": "Pearl Jam", - "album": { - "Title": "Riot Act" - }, - "Name": "Arc", - "genre": { - "Name": "Rock" - } - }, - "2192": { - "Composer": "Stone Gossard", - "album": { - "Title": "Riot Act" - }, - "Name": "All or None", - "genre": { - "Name": "Rock" - } - }, - "2193": { - "Composer": "Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Once", - "genre": { - "Name": "Rock" - } - }, - "2194": { - "Composer": "Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Evenflow", - "genre": { - "Name": "Rock" - } - }, - "2195": { - "Composer": "Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Alive", - "genre": { - "Name": "Rock" - } - }, - "2196": { - "Composer": "Jeff Ament", - "album": { - "Title": "Ten" - }, - "Name": "Why Go", - "genre": { - "Name": "Rock" - } - }, - "2197": { - "Composer": "Dave Krusen/Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Black", - "genre": { - "Name": "Rock" - } - }, - "2198": { - "Composer": "Jeff Ament", - "album": { - "Title": "Ten" - }, - "Name": "Jeremy", - "genre": { - "Name": "Rock" - } - }, - "2199": { - "Composer": "Jeff Ament/Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Oceans", - "genre": { - "Name": "Rock" - } - }, - "2200": { - "Composer": "Eddie Vedder", - "album": { - "Title": "Ten" - }, - "Name": "Porch", - "genre": { - "Name": "Rock" - } - }, - "2201": { - "Composer": "Jeff Ament/Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Garden", - "genre": { - "Name": "Rock" - } - }, - "2202": { - "Composer": "Jeff Ament/Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Deep", - "genre": { - "Name": "Rock" - } - }, - "2203": { - "Composer": "Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Ten" - }, - "Name": "Release", - "genre": { - "Name": "Rock" - } - }, - "2204": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Go", - "genre": { - "Name": "Rock" - } - }, - "2205": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Animal", - "genre": { - "Name": "Rock" - } - }, - "2206": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Daughter", - "genre": { - "Name": "Rock" - } - }, - "2207": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Glorified G", - "genre": { - "Name": "Rock" - } - }, - "2208": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Dissident", - "genre": { - "Name": "Rock" - } - }, - "2209": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "W.M.A.", - "genre": { - "Name": "Rock" - } - }, - "2210": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Blood", - "genre": { - "Name": "Rock" - } - }, - "2211": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Rearviewmirror", - "genre": { - "Name": "Rock" - } - }, - "2212": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Rats", - "genre": { - "Name": "Rock" - } - }, - "2213": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Elderly Woman Behind The Counter In A Small Town", - "genre": { - "Name": "Rock" - } - }, - "2214": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Leash", - "genre": { - "Name": "Rock" - } - }, - "2215": { - "Composer": "Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard", - "album": { - "Title": "Vs." - }, - "Name": "Indifference", - "genre": { - "Name": "Rock" - } - }, - "2216": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Johnny B. Goode", - "genre": { - "Name": "Reggae" - } - }, - "2217": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Don't Look Back", - "genre": { - "Name": "Reggae" - } - }, - "2218": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Jah Seh No", - "genre": { - "Name": "Reggae" - } - }, - "2219": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "I'm The Toughest", - "genre": { - "Name": "Reggae" - } - }, - "2220": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Nothing But Love", - "genre": { - "Name": "Reggae" - } - }, - "2221": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Buk-In-Hamm Palace", - "genre": { - "Name": "Reggae" - } - }, - "2222": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Bush Doctor", - "genre": { - "Name": "Reggae" - } - }, - "2223": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Wanted Dread And Alive", - "genre": { - "Name": "Reggae" - } - }, - "2224": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Mystic Man", - "genre": { - "Name": "Reggae" - } - }, - "2225": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Coming In Hot", - "genre": { - "Name": "Reggae" - } - }, - "2226": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Pick Myself Up", - "genre": { - "Name": "Reggae" - } - }, - "2227": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Crystal Ball", - "genre": { - "Name": "Reggae" - } - }, - "2228": { - "Composer": null, - "album": { - "Title": "Greatest Hits" - }, - "Name": "Equal Rights Downpresser Man", - "genre": { - "Name": "Reggae" - } - }, - "2229": { - "Composer": "Mason/Waters, Gilmour, Wright", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Speak To Me/Breathe", - "genre": { - "Name": "Rock" - } - }, - "2230": { - "Composer": "Gilmour, Waters", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "On The Run", - "genre": { - "Name": "Rock" - } - }, - "2231": { - "Composer": "Mason, Waters, Wright, Gilmour", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Time", - "genre": { - "Name": "Rock" - } - }, - "2232": { - "Composer": "Wright, Waters", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "The Great Gig In The Sky", - "genre": { - "Name": "Rock" - } - }, - "2233": { - "Composer": "Waters", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Money", - "genre": { - "Name": "Rock" - } - }, - "2234": { - "Composer": "Waters, Wright", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Us And Them", - "genre": { - "Name": "Rock" - } - }, - "2235": { - "Composer": "Gilmour, Mason, Wright, Waters", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Any Colour You Like", - "genre": { - "Name": "Rock" - } - }, - "2236": { - "Composer": "Waters", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Brain Damage", - "genre": { - "Name": "Rock" - } - }, - "2237": { - "Composer": "Waters", - "album": { - "Title": "Dark Side Of The Moon" - }, - "Name": "Eclipse", - "genre": { - "Name": "Rock" - } - }, - "2254": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Bohemian Rhapsody", - "genre": { - "Name": "Rock" - } - }, - "2255": { - "Composer": "Deacon, John", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Another One Bites The Dust", - "genre": { - "Name": "Rock" - } - }, - "2256": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Killer Queen", - "genre": { - "Name": "Rock" - } - }, - "2257": { - "Composer": "May, Brian", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Fat Bottomed Girls", - "genre": { - "Name": "Rock" - } - }, - "2258": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Bicycle Race", - "genre": { - "Name": "Rock" - } - }, - "2259": { - "Composer": "Deacon, John", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "You're My Best Friend", - "genre": { - "Name": "Rock" - } - }, - "2260": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Don't Stop Me Now", - "genre": { - "Name": "Rock" - } - }, - "2261": { - "Composer": "May, Brian", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Save Me", - "genre": { - "Name": "Rock" - } - }, - "2262": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Crazy Little Thing Called Love", - "genre": { - "Name": "Rock" - } - }, - "2263": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Somebody To Love", - "genre": { - "Name": "Rock" - } - }, - "2264": { - "Composer": "May, Brian", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Now I'm Here", - "genre": { - "Name": "Rock" - } - }, - "2265": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Good Old-Fashioned Lover Boy", - "genre": { - "Name": "Rock" - } - }, - "2266": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Play The Game", - "genre": { - "Name": "Rock" - } - }, - "2267": { - "Composer": "May, Brian", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Flash", - "genre": { - "Name": "Rock" - } - }, - "2268": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "Seven Seas Of Rhye", - "genre": { - "Name": "Rock" - } - }, - "2269": { - "Composer": "Deacon, John/May, Brian", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "We Will Rock You", - "genre": { - "Name": "Rock" - } - }, - "2270": { - "Composer": "Mercury, Freddie", - "album": { - "Title": "Greatest Hits I" - }, - "Name": "We Are The Champions", - "genre": { - "Name": "Rock" - } - }, - "2271": { - "Composer": "May", - "album": { - "Title": "News Of The World" - }, - "Name": "We Will Rock You", - "genre": { - "Name": "Rock" - } - }, - "2272": { - "Composer": "Mercury", - "album": { - "Title": "News Of The World" - }, - "Name": "We Are The Champions", - "genre": { - "Name": "Rock" - } - }, - "2273": { - "Composer": "Taylor", - "album": { - "Title": "News Of The World" - }, - "Name": "Sheer Heart Attack", - "genre": { - "Name": "Rock" - } - }, - "2274": { - "Composer": "May", - "album": { - "Title": "News Of The World" - }, - "Name": "All Dead, All Dead", - "genre": { - "Name": "Rock" - } - }, - "2275": { - "Composer": "Deacon", - "album": { - "Title": "News Of The World" - }, - "Name": "Spread Your Wings", - "genre": { - "Name": "Rock" - } - }, - "2276": { - "Composer": "Taylor", - "album": { - "Title": "News Of The World" - }, - "Name": "Fight From The Inside", - "genre": { - "Name": "Rock" - } - }, - "2277": { - "Composer": "Mercury", - "album": { - "Title": "News Of The World" - }, - "Name": "Get Down, Make Love", - "genre": { - "Name": "Rock" - } - }, - "2278": { - "Composer": "May", - "album": { - "Title": "News Of The World" - }, - "Name": "Sleep On The Sidewalk", - "genre": { - "Name": "Rock" - } - }, - "2279": { - "Composer": "Deacon", - "album": { - "Title": "News Of The World" - }, - "Name": "Who Needs You", - "genre": { - "Name": "Rock" - } - }, - "2280": { - "Composer": "May", - "album": { - "Title": "News Of The World" - }, - "Name": "It's Late", - "genre": { - "Name": "Rock" - } - }, - "2281": { - "Composer": "Mercury", - "album": { - "Title": "News Of The World" - }, - "Name": "My Melancholy Blues", - "genre": { - "Name": "Rock" - } - }, - "2282": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Shiny Happy People", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2283": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Me In Honey", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2284": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Radio Song", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2285": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Pop Song 89", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2286": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Get Up", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2287": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "You Are The Everything", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2288": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Stand", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2289": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "World Leader Pretend", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2290": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "The Wrong Child", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2291": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Orange Crush", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2292": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Turn You Inside-Out", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2293": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Hairshirt", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2294": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "I Remember California", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2295": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "Green" - }, - "Name": "Untitled", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2296": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "How The West Was Won And Where It Got Us", - "genre": { - "Name": "Rock" - } - }, - "2297": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "The Wake-Up Bomb", - "genre": { - "Name": "Rock" - } - }, - "2298": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "New Test Leper", - "genre": { - "Name": "Rock" - } - }, - "2299": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Undertow", - "genre": { - "Name": "Rock" - } - }, - "2300": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "E-Bow The Letter", - "genre": { - "Name": "Rock" - } - }, - "2301": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Leave", - "genre": { - "Name": "Rock" - } - }, - "2302": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Departure", - "genre": { - "Name": "Rock" - } - }, - "2303": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Bittersweet Me", - "genre": { - "Name": "Rock" - } - }, - "2304": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Be Mine", - "genre": { - "Name": "Rock" - } - }, - "2305": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Binky The Doormat", - "genre": { - "Name": "Rock" - } - }, - "2306": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Zither", - "genre": { - "Name": "Rock" - } - }, - "2307": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "So Fast, So Numb", - "genre": { - "Name": "Rock" - } - }, - "2308": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Low Desert", - "genre": { - "Name": "Rock" - } - }, - "2309": { - "Composer": "Bill Berry-Peter Buck-Mike Mills-Michael Stipe", - "album": { - "Title": "New Adventures In Hi-Fi" - }, - "Name": "Electrolite", - "genre": { - "Name": "Rock" - } - }, - "2310": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Losing My Religion", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2311": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Low", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2312": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Near Wild Heaven", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2313": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Endgame", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2314": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Belong", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2315": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Half A World Away", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2316": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Texarkana", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2317": { - "Composer": "Bill Berry/Michael Stipe/Mike Mills/Peter Buck", - "album": { - "Title": "Out Of Time" - }, - "Name": "Country Feedback", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2318": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Carnival Of Sorts", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2319": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Radio Free Aurope", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2320": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Perfect Circle", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2321": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Talk About The Passion", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2322": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "So Central Rain", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2323": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Don't Go Back To Rockville", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2324": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Pretty Persuasion", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2325": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Green Grow The Rushes", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2326": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Can't Get There From Here", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2327": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Driver 8", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2328": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Fall On Me", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2329": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "I Believe", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2330": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "Cuyahoga", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2331": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "The One I Love", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2332": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "The Finest Worksong", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2333": { - "Composer": "R.E.M.", - "album": { - "Title": "The Best Of R.E.M.: The IRS Years" - }, - "Name": "It's The End Of The World As We Know It (And I Feel Fine)", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2344": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "Maluco Beleza", - "genre": { - "Name": "Rock" - } - }, - "2345": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "O Dia Em Que A Terra Parou", - "genre": { - "Name": "Rock" - } - }, - "2346": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "No Fundo Do Quintal Da Escola", - "genre": { - "Name": "Rock" - } - }, - "2347": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "O Segredo Do Universo", - "genre": { - "Name": "Rock" - } - }, - "2348": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "As Profecias", - "genre": { - "Name": "Rock" - } - }, - "2349": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "Mata Virgem", - "genre": { - "Name": "Rock" - } - }, - "2350": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "Sapato 36", - "genre": { - "Name": "Rock" - } - }, - "2351": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "Todo Mundo Explica", - "genre": { - "Name": "Rock" - } - }, - "2353": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "Diamante De Mendigo", - "genre": { - "Name": "Rock" - } - }, - "2357": { - "Composer": null, - "album": { - "Title": "Raul Seixas" - }, - "Name": "Rock Das Aranhas (Ao Vivo) (Live)", - "genre": { - "Name": "Rock" - } - }, - "2358": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "The Power Of Equality", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2359": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "If You Have To Ask", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2360": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Breaking The Girl", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2361": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Funky Monks", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2362": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Suck My Kiss", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2363": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "I Could Have Lied", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2364": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Mellowship Slinky In B Major", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2365": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "The Righteous & The Wicked", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2366": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Give It Away", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2367": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Blood Sugar Sex Magik", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2368": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Under The Bridge", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2369": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Naked In The Rain", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2370": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Apache Rose Peacock", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2371": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "The Greeting Song", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2372": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "My Lovely Man", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2373": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "Sir Psycho Sexy", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2374": { - "Composer": "Robert Johnson", - "album": { - "Title": "Blood Sugar Sex Magik" - }, - "Name": "They're Red Hot", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2375": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "By The Way", - "genre": { - "Name": "Rock" - } - }, - "2376": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Universally Speaking", - "genre": { - "Name": "Rock" - } - }, - "2377": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "This Is The Place", - "genre": { - "Name": "Rock" - } - }, - "2378": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Dosed", - "genre": { - "Name": "Rock" - } - }, - "2379": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Don't Forget Me", - "genre": { - "Name": "Rock" - } - }, - "2380": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "The Zephyr Song", - "genre": { - "Name": "Rock" - } - }, - "2381": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Can't Stop", - "genre": { - "Name": "Rock" - } - }, - "2382": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "I Could Die For You", - "genre": { - "Name": "Rock" - } - }, - "2383": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Midnight", - "genre": { - "Name": "Rock" - } - }, - "2384": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Throw Away Your Television", - "genre": { - "Name": "Rock" - } - }, - "2385": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Cabron", - "genre": { - "Name": "Rock" - } - }, - "2386": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Tear", - "genre": { - "Name": "Rock" - } - }, - "2387": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "On Mercury", - "genre": { - "Name": "Rock" - } - }, - "2388": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Minor Thing", - "genre": { - "Name": "Rock" - } - }, - "2389": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Warm Tape", - "genre": { - "Name": "Rock" - } - }, - "2390": { - "Composer": "Anthony Kiedis, Flea, John Frusciante, and Chad Smith", - "album": { - "Title": "By The Way" - }, - "Name": "Venice Queen", - "genre": { - "Name": "Rock" - } - }, - "2391": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Californication" - }, - "Name": "Around The World", - "genre": { - "Name": "Rock" - } - }, - "2392": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Parallel Universe", - "genre": { - "Name": "Rock" - } - }, - "2393": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Scar Tissue", - "genre": { - "Name": "Rock" - } - }, - "2394": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Otherside", - "genre": { - "Name": "Rock" - } - }, - "2395": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Get On Top", - "genre": { - "Name": "Rock" - } - }, - "2396": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Californication", - "genre": { - "Name": "Rock" - } - }, - "2397": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Easily", - "genre": { - "Name": "Rock" - } - }, - "2398": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Californication" - }, - "Name": "Porcelain", - "genre": { - "Name": "Rock" - } - }, - "2399": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Emit Remmus", - "genre": { - "Name": "Rock" - } - }, - "2400": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "I Like Dirt", - "genre": { - "Name": "Rock" - } - }, - "2401": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "This Velvet Glove", - "genre": { - "Name": "Rock" - } - }, - "2402": { - "Composer": "Anthony Kiedis/Chad Smith/Flea/John Frusciante", - "album": { - "Title": "Californication" - }, - "Name": "Savior", - "genre": { - "Name": "Rock" - } - }, - "2403": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Purple Stain", - "genre": { - "Name": "Rock" - } - }, - "2404": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Right On Time", - "genre": { - "Name": "Rock" - } - }, - "2405": { - "Composer": "Red Hot Chili Peppers", - "album": { - "Title": "Californication" - }, - "Name": "Road Trippin'", - "genre": { - "Name": "Rock" - } - }, - "2406": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "The Spirit Of Radio", - "genre": { - "Name": "Rock" - } - }, - "2407": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "The Trees", - "genre": { - "Name": "Rock" - } - }, - "2408": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Something For Nothing", - "genre": { - "Name": "Rock" - } - }, - "2409": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Freewill", - "genre": { - "Name": "Rock" - } - }, - "2410": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Xanadu", - "genre": { - "Name": "Rock" - } - }, - "2411": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Bastille Day", - "genre": { - "Name": "Rock" - } - }, - "2412": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "By-Tor And The Snow Dog", - "genre": { - "Name": "Rock" - } - }, - "2413": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Anthem", - "genre": { - "Name": "Rock" - } - }, - "2414": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Closer To The Heart", - "genre": { - "Name": "Rock" - } - }, - "2415": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "2112 Overture", - "genre": { - "Name": "Rock" - } - }, - "2416": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "The Temples Of Syrinx", - "genre": { - "Name": "Rock" - } - }, - "2417": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "La Villa Strangiato", - "genre": { - "Name": "Rock" - } - }, - "2418": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Fly By Night", - "genre": { - "Name": "Rock" - } - }, - "2419": { - "Composer": "Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush", - "album": { - "Title": "Retrospective I (1974-1980)" - }, - "Name": "Finding My Way", - "genre": { - "Name": "Rock" - } - }, - "2420": { - "Composer": "M.Babatunde Olantunji", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "Jingo", - "genre": { - "Name": "Rock" - } - }, - "2421": { - "Composer": "E.Weiss", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "El Corazon Manda", - "genre": { - "Name": "Rock" - } - }, - "2422": { - "Composer": "E.Weiss", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "La Puesta Del Sol", - "genre": { - "Name": "Rock" - } - }, - "2423": { - "Composer": "Carlos Santana", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "Persuasion", - "genre": { - "Name": "Rock" - } - }, - "2424": { - "Composer": "Albert King", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "As The Years Go by", - "genre": { - "Name": "Rock" - } - }, - "2425": { - "Composer": "Carlos Santana", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "Soul Sacrifice", - "genre": { - "Name": "Rock" - } - }, - "2426": { - "Composer": "W.Correa", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "Fried Neckbones And Home Fries", - "genre": { - "Name": "Rock" - } - }, - "2427": { - "Composer": "Carlos Santana", - "album": { - "Title": "Santana - As Years Go By" - }, - "Name": "Santana Jam", - "genre": { - "Name": "Rock" - } - }, - "2428": { - "Composer": null, - "album": { - "Title": "Santana Live" - }, - "Name": "Evil Ways", - "genre": { - "Name": "Rock" - } - }, - "2429": { - "Composer": null, - "album": { - "Title": "Santana Live" - }, - "Name": "We've Got To Get Together/Jingo", - "genre": { - "Name": "Rock" - } - }, - "2430": { - "Composer": null, - "album": { - "Title": "Santana Live" - }, - "Name": "Rock Me", - "genre": { - "Name": "Rock" - } - }, - "2431": { - "Composer": null, - "album": { - "Title": "Santana Live" - }, - "Name": "Just Ain't Good Enough", - "genre": { - "Name": "Rock" - } - }, - "2432": { - "Composer": null, - "album": { - "Title": "Santana Live" - }, - "Name": "Funky Piano", - "genre": { - "Name": "Rock" - } - }, - "2433": { - "Composer": null, - "album": { - "Title": "Santana Live" - }, - "Name": "The Way You Do To Mer", - "genre": { - "Name": "Rock" - } - }, - "2434": { - "Composer": "Mick Hucknall and Neil Moss", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Holding Back The Years", - "genre": { - "Name": "Rock" - } - }, - "2435": { - "Composer": "John and William Valentine", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Money's Too Tight To Mention", - "genre": { - "Name": "Rock" - } - }, - "2436": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "The Right Thing", - "genre": { - "Name": "Rock" - } - }, - "2437": { - "Composer": "Jimmy and Vella Cameron", - "album": { - "Title": "Greatest Hits" - }, - "Name": "It's Only Love", - "genre": { - "Name": "Rock" - } - }, - "2438": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "A New Flame", - "genre": { - "Name": "Rock" - } - }, - "2439": { - "Composer": "Mick Hucknall and Lamont Dozier", - "album": { - "Title": "Greatest Hits" - }, - "Name": "You've Got It", - "genre": { - "Name": "Rock" - } - }, - "2440": { - "Composer": "Kenny Gamble and Leon Huff", - "album": { - "Title": "Greatest Hits" - }, - "Name": "If You Don't Know Me By Now", - "genre": { - "Name": "Rock" - } - }, - "2441": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Stars", - "genre": { - "Name": "Rock" - } - }, - "2442": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Something Got Me Started", - "genre": { - "Name": "Rock" - } - }, - "2443": { - "Composer": "Mick Hucknall and Fritz McIntyre", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Thrill Me", - "genre": { - "Name": "Rock" - } - }, - "2444": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Your Mirror", - "genre": { - "Name": "Rock" - } - }, - "2445": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "For Your Babies", - "genre": { - "Name": "Rock" - } - }, - "2446": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "So Beautiful", - "genre": { - "Name": "Rock" - } - }, - "2447": { - "Composer": "Carolyn Franklin and Sonny Saunders", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Angel", - "genre": { - "Name": "Rock" - } - }, - "2448": { - "Composer": "Mick Hucknall", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Fairground", - "genre": { - "Name": "Rock" - } - }, - "2451": { - "Composer": "Chico Amaral/Samuel Rosa", - "album": { - "Title": "Maquinarama" - }, - "Name": "Ela Desapareceu", - "genre": { - "Name": "Rock" - } - }, - "2455": { - "Composer": "Chico Amaral/Samuel Rosa", - "album": { - "Title": "Maquinarama" - }, - "Name": "Maquinarama", - "genre": { - "Name": "Rock" - } - }, - "2458": { - "Composer": "Chico Amaral/Samuel Rosa", - "album": { - "Title": "Maquinarama" - }, - "Name": "Fica", - "genre": { - "Name": "Rock" - } - }, - "2459": { - "Composer": "Nando Reis/Samuel Rosa", - "album": { - "Title": "Maquinarama" - }, - "Name": "Ali", - "genre": { - "Name": "Rock" - } - }, - "2472": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Lucky 13", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2473": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Aeroplane Flies High", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2474": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Because You Are", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2475": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Slow Dawn", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2476": { - "Composer": "James Iha", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Believe", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2477": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "My Mistake", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2478": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Marquis In Spades", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2479": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Here's To The Atom Bomb", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2480": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Sparrow", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2481": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Waiting", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2482": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Saturnine", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2483": { - "Composer": "David Cook", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Rock On", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2484": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Set The Ray To Jerry", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2485": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Winterlong", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2486": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Soot & Stars", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2487": { - "Composer": "Billy Corgan", - "album": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "Name": "Blissed & Gone", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2488": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Siva", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2489": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Rhinocerous", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2490": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Drown", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2491": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Cherub Rock", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2492": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Today", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2493": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Disarm", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2494": { - "Composer": "Stevie Nicks", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Landslide", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2495": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Bullet With Butterfly Wings", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2496": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "1979", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2497": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Zero", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2498": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Tonight, Tonight", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2499": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Eye", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2500": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Ava Adore", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2501": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Perfect", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2502": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "The Everlasting Gaze", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2503": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Stand Inside Your Love", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2504": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "Real Love", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2505": { - "Composer": "Billy Corgan", - "album": { - "Title": "Rotten Apples: Greatest Hits" - }, - "Name": "[Untitled]", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2506": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "Title": "A-Sides" - }, - "Name": "Nothing To Say", - "genre": { - "Name": "Rock" - } - }, - "2507": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "Title": "A-Sides" - }, - "Name": "Flower", - "genre": { - "Name": "Rock" - } - }, - "2508": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Loud Love", - "genre": { - "Name": "Rock" - } - }, - "2509": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "Title": "A-Sides" - }, - "Name": "Hands All Over", - "genre": { - "Name": "Rock" - } - }, - "2510": { - "Composer": "Chris Cornell/Kim Thayil", - "album": { - "Title": "A-Sides" - }, - "Name": "Get On The Snake", - "genre": { - "Name": "Rock" - } - }, - "2511": { - "Composer": "Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron", - "album": { - "Title": "A-Sides" - }, - "Name": "Jesus Christ Pose", - "genre": { - "Name": "Rock" - } - }, - "2512": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Outshined", - "genre": { - "Name": "Rock" - } - }, - "2513": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Rusty Cage", - "genre": { - "Name": "Rock" - } - }, - "2514": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Spoonman", - "genre": { - "Name": "Rock" - } - }, - "2515": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "The Day I Tried To Live", - "genre": { - "Name": "Rock" - } - }, - "2516": { - "Composer": "Soundgarden", - "album": { - "Title": "A-Sides" - }, - "Name": "Black Hole Sun", - "genre": { - "Name": "Rock" - } - }, - "2517": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Fell On Black Days", - "genre": { - "Name": "Rock" - } - }, - "2518": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Pretty Noose", - "genre": { - "Name": "Rock" - } - }, - "2519": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Burden In My Hand", - "genre": { - "Name": "Rock" - } - }, - "2520": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Blow Up The Outside World", - "genre": { - "Name": "Rock" - } - }, - "2521": { - "Composer": "Ben Shepherd/Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Ty Cobb", - "genre": { - "Name": "Rock" - } - }, - "2522": { - "Composer": "Chris Cornell", - "album": { - "Title": "A-Sides" - }, - "Name": "Bleed Together", - "genre": { - "Name": "Rock" - } - }, - "2523": { - "Composer": "Jay Beckenstein", - "album": { - "Title": "Morning Dance" - }, - "Name": "Morning Dance", - "genre": { - "Name": "Jazz" - } - }, - "2524": { - "Composer": "Jeremy Wall", - "album": { - "Title": "Morning Dance" - }, - "Name": "Jubilee", - "genre": { - "Name": "Jazz" - } - }, - "2525": { - "Composer": "Jeremy Wall", - "album": { - "Title": "Morning Dance" - }, - "Name": "Rasul", - "genre": { - "Name": "Jazz" - } - }, - "2526": { - "Composer": "Jay Beckenstein", - "album": { - "Title": "Morning Dance" - }, - "Name": "Song For Lorraine", - "genre": { - "Name": "Jazz" - } - }, - "2527": { - "Composer": "Jeremy Wall", - "album": { - "Title": "Morning Dance" - }, - "Name": "Starburst", - "genre": { - "Name": "Jazz" - } - }, - "2528": { - "Composer": "Jay Beckenstein", - "album": { - "Title": "Morning Dance" - }, - "Name": "Heliopolis", - "genre": { - "Name": "Jazz" - } - }, - "2529": { - "Composer": "Chet Catallo", - "album": { - "Title": "Morning Dance" - }, - "Name": "It Doesn't Matter", - "genre": { - "Name": "Jazz" - } - }, - "2530": { - "Composer": "Jeremy Wall", - "album": { - "Title": "Morning Dance" - }, - "Name": "Little Linda", - "genre": { - "Name": "Jazz" - } - }, - "2531": { - "Composer": "Rick Strauss", - "album": { - "Title": "Morning Dance" - }, - "Name": "End Of Romanticism", - "genre": { - "Name": "Jazz" - } - }, - "2532": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "Title": "In Step" - }, - "Name": "The House Is Rockin'", - "genre": { - "Name": "Blues" - } - }, - "2533": { - "Composer": "B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon", - "album": { - "Title": "In Step" - }, - "Name": "Crossfire", - "genre": { - "Name": "Blues" - } - }, - "2534": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "Title": "In Step" - }, - "Name": "Tightrope", - "genre": { - "Name": "Blues" - } - }, - "2535": { - "Composer": "Willie Dixon", - "album": { - "Title": "In Step" - }, - "Name": "Let Me Love You Baby", - "genre": { - "Name": "Blues" - } - }, - "2536": { - "Composer": "B. Guy", - "album": { - "Title": "In Step" - }, - "Name": "Leave My Girl Alone", - "genre": { - "Name": "Blues" - } - }, - "2537": { - "Composer": "Stevie Ray Vaughan", - "album": { - "Title": "In Step" - }, - "Name": "Travis Walk", - "genre": { - "Name": "Blues" - } - }, - "2538": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "Title": "In Step" - }, - "Name": "Wall Of Denial", - "genre": { - "Name": "Blues" - } - }, - "2539": { - "Composer": "Doyle Bramhall/Stevie Ray Vaughan", - "album": { - "Title": "In Step" - }, - "Name": "Scratch-N-Sniff", - "genre": { - "Name": "Blues" - } - }, - "2540": { - "Composer": "C. Burnett", - "album": { - "Title": "In Step" - }, - "Name": "Love Me Darlin'", - "genre": { - "Name": "Blues" - } - }, - "2541": { - "Composer": "Stevie Ray Vaughan", - "album": { - "Title": "In Step" - }, - "Name": "Riviera Paradise", - "genre": { - "Name": "Blues" - } - }, - "2542": { - "Composer": "R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Dead And Bloated", - "genre": { - "Name": "Rock" - } - }, - "2543": { - "Composer": "D. DeLeo/Kretz/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Sex Type Thing", - "genre": { - "Name": "Rock" - } - }, - "2544": { - "Composer": "D. DeLeo/R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Wicked Garden", - "genre": { - "Name": "Rock" - } - }, - "2545": { - "Composer": "Dean Deleo", - "album": { - "Title": "Core" - }, - "Name": "No Memory", - "genre": { - "Name": "Rock" - } - }, - "2546": { - "Composer": "R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Sin", - "genre": { - "Name": "Rock" - } - }, - "2547": { - "Composer": "D. DeLeo/Kretz/R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Naked Sunday", - "genre": { - "Name": "Rock" - } - }, - "2548": { - "Composer": "R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Creep", - "genre": { - "Name": "Rock" - } - }, - "2549": { - "Composer": "R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Piece Of Pie", - "genre": { - "Name": "Rock" - } - }, - "2550": { - "Composer": "R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Plush", - "genre": { - "Name": "Rock" - } - }, - "2551": { - "Composer": "R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Wet My Bed", - "genre": { - "Name": "Rock" - } - }, - "2552": { - "Composer": "Kretz/R. DeLeo/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Crackerman", - "genre": { - "Name": "Rock" - } - }, - "2553": { - "Composer": "D. DeLeo/Kretz/Weiland", - "album": { - "Title": "Core" - }, - "Name": "Where The River Goes", - "genre": { - "Name": "Rock" - } - }, - "2554": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "Title": "Mezmerize" - }, - "Name": "Soldier Side - Intro", - "genre": { - "Name": "Metal" - } - }, - "2555": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "B.Y.O.B.", - "genre": { - "Name": "Metal" - } - }, - "2556": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "Revenga", - "genre": { - "Name": "Metal" - } - }, - "2557": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "Cigaro", - "genre": { - "Name": "Metal" - } - }, - "2558": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "Title": "Mezmerize" - }, - "Name": "Radio/Video", - "genre": { - "Name": "Metal" - } - }, - "2559": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "This Cocaine Makes Me Feel Like I'm On This Song", - "genre": { - "Name": "Metal" - } - }, - "2560": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "Title": "Mezmerize" - }, - "Name": "Violent Pornography", - "genre": { - "Name": "Metal" - } - }, - "2561": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "Question!", - "genre": { - "Name": "Metal" - } - }, - "2562": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "Sad Statue", - "genre": { - "Name": "Metal" - } - }, - "2563": { - "Composer": "Dolmayan, John/Malakian, Daron/Odadjian, Shavo", - "album": { - "Title": "Mezmerize" - }, - "Name": "Old School Hollywood", - "genre": { - "Name": "Metal" - } - }, - "2564": { - "Composer": "Tankian, Serj", - "album": { - "Title": "Mezmerize" - }, - "Name": "Lost in Hollywood", - "genre": { - "Name": "Metal" - } - }, - "2565": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "The Sun Road", - "genre": { - "Name": "Rock" - } - }, - "2566": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Dark Corners", - "genre": { - "Name": "Rock" - } - }, - "2567": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Duende", - "genre": { - "Name": "Rock" - } - }, - "2568": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Black Light Syndrome", - "genre": { - "Name": "Rock" - } - }, - "2569": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Falling in Circles", - "genre": { - "Name": "Rock" - } - }, - "2570": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Book of Hours", - "genre": { - "Name": "Rock" - } - }, - "2571": { - "Composer": "Terry Bozzio, Steve Stevens, Tony Levin", - "album": { - "Title": "[1997] Black Light Syndrome" - }, - "Name": "Chaos-Control", - "genre": { - "Name": "Rock" - } - }, - "2572": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Midnight From The Inside Out", - "genre": { - "Name": "Blues" - } - }, - "2573": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Sting Me", - "genre": { - "Name": "Blues" - } - }, - "2574": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Thick & Thin", - "genre": { - "Name": "Blues" - } - }, - "2575": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Greasy Grass River", - "genre": { - "Name": "Blues" - } - }, - "2576": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Sometimes Salvation", - "genre": { - "Name": "Blues" - } - }, - "2577": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Cursed Diamonds", - "genre": { - "Name": "Blues" - } - }, - "2578": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Miracle To Me", - "genre": { - "Name": "Blues" - } - }, - "2579": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Wiser Time", - "genre": { - "Name": "Blues" - } - }, - "2580": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Girl From A Pawnshop", - "genre": { - "Name": "Blues" - } - }, - "2581": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 1]" - }, - "Name": "Cosmic Fiend", - "genre": { - "Name": "Blues" - } - }, - "2582": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Black Moon Creeping", - "genre": { - "Name": "Blues" - } - }, - "2583": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "High Head Blues", - "genre": { - "Name": "Blues" - } - }, - "2584": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Title Song", - "genre": { - "Name": "Blues" - } - }, - "2585": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "She Talks To Angels", - "genre": { - "Name": "Blues" - } - }, - "2586": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Twice As Hard", - "genre": { - "Name": "Blues" - } - }, - "2587": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Lickin'", - "genre": { - "Name": "Blues" - } - }, - "2588": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Soul Singing", - "genre": { - "Name": "Blues" - } - }, - "2589": { - "Composer": "A.Isbell/A.Jones/O.Redding", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Hard To Handle", - "genre": { - "Name": "Blues" - } - }, - "2590": { - "Composer": "Chris Robinson/Rich Robinson", - "album": { - "Title": "Live [Disc 2]" - }, - "Name": "Remedy", - "genre": { - "Name": "Blues" - } - }, - "2591": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "White Riot", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2592": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "Remote Control", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2593": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "Complete Control", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2594": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "Clash City Rockers", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2595": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "(White Man) In Hammersmith Palais", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2596": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "Tommy Gun", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2597": { - "Composer": "Mick Jones/Traditional arr. Joe Strummer", - "album": { - "Title": "The Singles" - }, - "Name": "English Civil War", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2598": { - "Composer": "Sonny Curtis", - "album": { - "Title": "The Singles" - }, - "Name": "I Fought The Law", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2599": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "London Calling", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2600": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "Train In Vain", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2601": { - "Composer": "Joe Strummer/Mick Jones", - "album": { - "Title": "The Singles" - }, - "Name": "Bankrobber", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2602": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "The Call Up", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2603": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "Hitsville UK", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2604": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "The Magnificent Seven", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2605": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "This Is Radio Clash", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2606": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "Know Your Rights", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2607": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "Rock The Casbah", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2608": { - "Composer": "The Clash", - "album": { - "Title": "The Singles" - }, - "Name": "Should I Stay Or Should I Go", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2609": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "War (The Process)", - "genre": { - "Name": "Rock" - } - }, - "2610": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "The Saint", - "genre": { - "Name": "Rock" - } - }, - "2611": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Rise", - "genre": { - "Name": "Rock" - } - }, - "2612": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Take The Power", - "genre": { - "Name": "Rock" - } - }, - "2613": { - "Composer": "Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Breathe", - "genre": { - "Name": "Rock" - } - }, - "2614": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Nico", - "genre": { - "Name": "Rock" - } - }, - "2615": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "American Gothic", - "genre": { - "Name": "Rock" - } - }, - "2616": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Ashes And Ghosts", - "genre": { - "Name": "Rock" - } - }, - "2617": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Shape The Sky", - "genre": { - "Name": "Rock" - } - }, - "2618": { - "Composer": "Billy Duffy/Bob Rock/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "Speed Of Light", - "genre": { - "Name": "Rock" - } - }, - "2619": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "True Believers", - "genre": { - "Name": "Rock" - } - }, - "2620": { - "Composer": "Billy Duffy/Ian Astbury", - "album": { - "Title": "Beyond Good And Evil" - }, - "Name": "My Bridges Burn", - "genre": { - "Name": "Rock" - } - }, - "2621": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "She Sells Sanctuary", - "genre": { - "Name": "Rock" - } - }, - "2622": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Fire Woman", - "genre": { - "Name": "Rock" - } - }, - "2623": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Lil' Evil", - "genre": { - "Name": "Rock" - } - }, - "2624": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Spirit Walker", - "genre": { - "Name": "Rock" - } - }, - "2625": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "The Witch", - "genre": { - "Name": "Rock" - } - }, - "2626": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Revolution", - "genre": { - "Name": "Rock" - } - }, - "2627": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Wild Hearted Son", - "genre": { - "Name": "Rock" - } - }, - "2628": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Love Removal Machine", - "genre": { - "Name": "Rock" - } - }, - "2629": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Rain", - "genre": { - "Name": "Rock" - } - }, - "2630": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Edie (Ciao Baby)", - "genre": { - "Name": "Rock" - } - }, - "2631": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Heart Of Soul", - "genre": { - "Name": "Rock" - } - }, - "2632": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Love", - "genre": { - "Name": "Rock" - } - }, - "2633": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Wild Flower", - "genre": { - "Name": "Rock" - } - }, - "2634": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Go West", - "genre": { - "Name": "Rock" - } - }, - "2635": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Resurrection Joe", - "genre": { - "Name": "Rock" - } - }, - "2636": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Sun King", - "genre": { - "Name": "Rock" - } - }, - "2637": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Sweet Soul Sister", - "genre": { - "Name": "Rock" - } - }, - "2638": { - "Composer": null, - "album": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - }, - "Name": "Earth Mofo", - "genre": { - "Name": "Rock" - } - }, - "2639": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "Break on Through", - "genre": { - "Name": "Rock" - } - }, - "2640": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "Soul Kitchen", - "genre": { - "Name": "Rock" - } - }, - "2641": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "The Crystal Ship", - "genre": { - "Name": "Rock" - } - }, - "2642": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "Twentienth Century Fox", - "genre": { - "Name": "Rock" - } - }, - "2643": { - "Composer": "Weill-Brecht", - "album": { - "Title": "The Doors" - }, - "Name": "Alabama Song", - "genre": { - "Name": "Rock" - } - }, - "2644": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "Light My Fire", - "genre": { - "Name": "Rock" - } - }, - "2645": { - "Composer": "Willie Dixon, C. Burnett", - "album": { - "Title": "The Doors" - }, - "Name": "Back Door Man", - "genre": { - "Name": "Rock" - } - }, - "2646": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "I Looked At You", - "genre": { - "Name": "Rock" - } - }, - "2647": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "End Of The Night", - "genre": { - "Name": "Rock" - } - }, - "2648": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "Take It As It Comes", - "genre": { - "Name": "Rock" - } - }, - "2649": { - "Composer": "Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison", - "album": { - "Title": "The Doors" - }, - "Name": "The End", - "genre": { - "Name": "Rock" - } - }, - "2650": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Roxanne", - "genre": { - "Name": "Rock" - } - }, - "2651": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Can't Stand Losing You", - "genre": { - "Name": "Rock" - } - }, - "2652": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Message in a Bottle", - "genre": { - "Name": "Rock" - } - }, - "2653": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Walking on the Moon", - "genre": { - "Name": "Rock" - } - }, - "2654": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Don't Stand so Close to Me", - "genre": { - "Name": "Rock" - } - }, - "2655": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "De Do Do Do, De Da Da Da", - "genre": { - "Name": "Rock" - } - }, - "2656": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Every Little Thing She Does is Magic", - "genre": { - "Name": "Rock" - } - }, - "2657": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Invisible Sun", - "genre": { - "Name": "Rock" - } - }, - "2658": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Spirit's in the Material World", - "genre": { - "Name": "Rock" - } - }, - "2659": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Every Breath You Take", - "genre": { - "Name": "Rock" - } - }, - "2660": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "King Of Pain", - "genre": { - "Name": "Rock" - } - }, - "2661": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Wrapped Around Your Finger", - "genre": { - "Name": "Rock" - } - }, - "2662": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Don't Stand So Close to Me '86", - "genre": { - "Name": "Rock" - } - }, - "2663": { - "Composer": "G M Sumner", - "album": { - "Title": "The Police Greatest Hits" - }, - "Name": "Message in a Bottle (new classic rock mix)", - "genre": { - "Name": "Rock" - } - }, - "2664": { - "Composer": "Jerry Ragavoy", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Time Is On My Side", - "genre": { - "Name": "Rock" - } - }, - "2665": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Heart Of Stone", - "genre": { - "Name": "Rock" - } - }, - "2666": { - "Composer": "Nanker Phelge", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Play With Fire", - "genre": { - "Name": "Rock" - } - }, - "2667": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Satisfaction", - "genre": { - "Name": "Rock" - } - }, - "2668": { - "Composer": "Jagger/Richards/Oldham", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "As Tears Go By", - "genre": { - "Name": "Rock" - } - }, - "2669": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Get Off Of My Cloud", - "genre": { - "Name": "Rock" - } - }, - "2670": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Mother's Little Helper", - "genre": { - "Name": "Rock" - } - }, - "2671": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "19th Nervous Breakdown", - "genre": { - "Name": "Rock" - } - }, - "2672": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Paint It Black", - "genre": { - "Name": "Rock" - } - }, - "2673": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Under My Thumb", - "genre": { - "Name": "Rock" - } - }, - "2674": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Ruby Tuesday", - "genre": { - "Name": "Rock" - } - }, - "2675": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "Name": "Let's Spend The Night Together", - "genre": { - "Name": "Rock" - } - }, - "2676": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Intro", - "genre": { - "Name": "Rock" - } - }, - "2677": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "You Got Me Rocking", - "genre": { - "Name": "Rock" - } - }, - "2678": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Gimmie Shelters", - "genre": { - "Name": "Rock" - } - }, - "2679": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Flip The Switch", - "genre": { - "Name": "Rock" - } - }, - "2680": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Memory Motel", - "genre": { - "Name": "Rock" - } - }, - "2681": { - "Composer": "Jesse Ed Davis III/Taj Mahal", - "album": { - "Title": "No Security" - }, - "Name": "Corinna", - "genre": { - "Name": "Rock" - } - }, - "2682": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Saint Of Me", - "genre": { - "Name": "Rock" - } - }, - "2683": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Wainting On A Friend", - "genre": { - "Name": "Rock" - } - }, - "2684": { - "Composer": "Faithfull/Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Sister Morphine", - "genre": { - "Name": "Rock" - } - }, - "2685": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Live With Me", - "genre": { - "Name": "Rock" - } - }, - "2686": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Respectable", - "genre": { - "Name": "Rock" - } - }, - "2687": { - "Composer": "De Beauport/Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Thief In The Night", - "genre": { - "Name": "Rock" - } - }, - "2688": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "The Last Time", - "genre": { - "Name": "Rock" - } - }, - "2689": { - "Composer": "Jagger/Richards", - "album": { - "Title": "No Security" - }, - "Name": "Out Of Control", - "genre": { - "Name": "Rock" - } - }, - "2690": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Love Is Strong", - "genre": { - "Name": "Rock" - } - }, - "2691": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "You Got Me Rocking", - "genre": { - "Name": "Rock" - } - }, - "2692": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Sparks Will Fly", - "genre": { - "Name": "Rock" - } - }, - "2693": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "The Worst", - "genre": { - "Name": "Rock" - } - }, - "2694": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "New Faces", - "genre": { - "Name": "Rock" - } - }, - "2695": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Moon Is Up", - "genre": { - "Name": "Rock" - } - }, - "2696": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Out Of Tears", - "genre": { - "Name": "Rock" - } - }, - "2697": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "I Go Wild", - "genre": { - "Name": "Rock" - } - }, - "2698": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Brand New Car", - "genre": { - "Name": "Rock" - } - }, - "2699": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Sweethearts Together", - "genre": { - "Name": "Rock" - } - }, - "2700": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Suck On The Jugular", - "genre": { - "Name": "Rock" - } - }, - "2701": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Blinded By Rainbows", - "genre": { - "Name": "Rock" - } - }, - "2702": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Baby Break It Down", - "genre": { - "Name": "Rock" - } - }, - "2703": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Thru And Thru", - "genre": { - "Name": "Rock" - } - }, - "2704": { - "Composer": "Jagger/Richards", - "album": { - "Title": "Voodoo Lounge" - }, - "Name": "Mean Disposition", - "genre": { - "Name": "Rock" - } - }, - "2705": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Walking Wounded", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2706": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Temptation", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2707": { - "Composer": "Daniel Lanois", - "album": { - "Title": "Tangents" - }, - "Name": "The Messenger", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2708": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Psychopomp", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2709": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Sister Awake", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2710": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "The Bazaar", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2711": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Save Me (Remix)", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2712": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Fire In The Head", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2713": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Release", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2714": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Heaven Coming Down", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2715": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "The River (Remix)", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2716": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Babylon", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2717": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Waiting On A Sign", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2718": { - "Composer": "The Tea Party", - "album": { - "Title": "Tangents" - }, - "Name": "Life Line", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2719": { - "Composer": "Keith Richards/Mick Jagger", - "album": { - "Title": "Tangents" - }, - "Name": "Paint It Black", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2720": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Temptation", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2721": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Army Ants", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2722": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Psychopomp", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2723": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Gyroscope", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2724": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Alarum", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2725": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Release", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2726": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Transmission", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2727": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Babylon", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2728": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Pulse", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2729": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Emerald", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2730": { - "Composer": "The Tea Party", - "album": { - "Title": "Transmission" - }, - "Name": "Aftermath", - "genre": { - "Name": "Alternative & Punk" - } - }, - "2731": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "I Can't Explain", - "genre": { - "Name": "Rock" - } - }, - "2732": { - "Composer": "Pete Townshend, Roger Daltrey", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Anyway, Anyhow, Anywhere", - "genre": { - "Name": "Rock" - } - }, - "2733": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "My Generation", - "genre": { - "Name": "Rock" - } - }, - "2734": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Substitute", - "genre": { - "Name": "Rock" - } - }, - "2735": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "I'm A Boy", - "genre": { - "Name": "Rock" - } - }, - "2736": { - "Composer": "John Entwistle", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Boris The Spider", - "genre": { - "Name": "Rock" - } - }, - "2737": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Happy Jack", - "genre": { - "Name": "Rock" - } - }, - "2738": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Pictures Of Lily", - "genre": { - "Name": "Rock" - } - }, - "2739": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "I Can See For Miles", - "genre": { - "Name": "Rock" - } - }, - "2740": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Magic Bus", - "genre": { - "Name": "Rock" - } - }, - "2741": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Pinball Wizard", - "genre": { - "Name": "Rock" - } - }, - "2742": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "The Seeker", - "genre": { - "Name": "Rock" - } - }, - "2743": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Baba O'Riley", - "genre": { - "Name": "Rock" - } - }, - "2744": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Won't Get Fooled Again (Full Length Version)", - "genre": { - "Name": "Rock" - } - }, - "2745": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Let's See Action", - "genre": { - "Name": "Rock" - } - }, - "2746": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "5.15", - "genre": { - "Name": "Rock" - } - }, - "2747": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Join Together", - "genre": { - "Name": "Rock" - } - }, - "2748": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Squeeze Box", - "genre": { - "Name": "Rock" - } - }, - "2749": { - "Composer": "John Entwistle/Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "Who Are You (Single Edit Version)", - "genre": { - "Name": "Rock" - } - }, - "2750": { - "Composer": "Pete Townshend", - "album": { - "Title": "My Generation - The Very Best Of The Who" - }, - "Name": "You Better You Bet", - "genre": { - "Name": "Rock" - } - }, - "2751": { - "Composer": "Genival Cassiano/Silvio Rochael", - "album": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Primavera", - "genre": { - "Name": "Latin" - } - }, - "2752": { - "Composer": "Tim Maia", - "album": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Chocolate", - "genre": { - "Name": "Latin" - } - }, - "2753": { - "Composer": "Tim Maia", - "album": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Azul Da Cor Do Mar", - "genre": { - "Name": "Latin" - } - }, - "2757": { - "Composer": "Tim Maia", - "album": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "New Love", - "genre": { - "Name": "Latin" - } - }, - "2763": { - "Composer": "Tim Maia", - "album": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Compadre", - "genre": { - "Name": "Latin" - } - }, - "2764": { - "Composer": "Tim Maia", - "album": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "Name": "Over Again", - "genre": { - "Name": "Latin" - } - }, - "2766": { - "Composer": null, - "album": { - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "O Que Me Importa", - "genre": { - "Name": "Latin" - } - }, - "2771": { - "Composer": null, - "album": { - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "A Festa Do Santo Reis", - "genre": { - "Name": "Latin" - } - }, - "2772": { - "Composer": null, - "album": { - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "I Don't Know What To Do With Myself", - "genre": { - "Name": "Latin" - } - }, - "2774": { - "Composer": null, - "album": { - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "Nosso Adeus", - "genre": { - "Name": "Latin" - } - }, - "2776": { - "Composer": null, - "album": { - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "Preciso Ser Amado", - "genre": { - "Name": "Latin" - } - }, - "2780": { - "Composer": null, - "album": { - "Title": "Serie Sem Limite (Disc 2)" - }, - "Name": "Formigueiro", - "genre": { - "Name": "Latin" - } - }, - "2819": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica: The Story So Far" - }, - "Name": "Battlestar Galactica: The Story So Far", - "genre": { - "Name": "Science Fiction" - } - }, - "2820": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Occupation / Precipice", - "genre": { - "Name": "TV Shows" - } - }, - "2821": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Exodus, Pt. 1", - "genre": { - "Name": "TV Shows" - } - }, - "2822": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Exodus, Pt. 2", - "genre": { - "Name": "TV Shows" - } - }, - "2823": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Collaborators", - "genre": { - "Name": "TV Shows" - } - }, - "2824": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Torn", - "genre": { - "Name": "TV Shows" - } - }, - "2825": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "A Measure of Salvation", - "genre": { - "Name": "Science Fiction" - } - }, - "2826": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Hero", - "genre": { - "Name": "Science Fiction" - } - }, - "2827": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Unfinished Business", - "genre": { - "Name": "Science Fiction" - } - }, - "2828": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Passage", - "genre": { - "Name": "Science Fiction" - } - }, - "2829": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Eye of Jupiter", - "genre": { - "Name": "Science Fiction" - } - }, - "2830": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Rapture", - "genre": { - "Name": "Science Fiction" - } - }, - "2831": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Taking a Break from All Your Worries", - "genre": { - "Name": "Science Fiction" - } - }, - "2832": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Woman King", - "genre": { - "Name": "Science Fiction" - } - }, - "2833": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "A Day In the Life", - "genre": { - "Name": "Science Fiction" - } - }, - "2834": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Dirty Hands", - "genre": { - "Name": "Science Fiction" - } - }, - "2835": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Maelstrom", - "genre": { - "Name": "Science Fiction" - } - }, - "2836": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "The Son Also Rises", - "genre": { - "Name": "Science Fiction" - } - }, - "2837": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Crossroads, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "2838": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica, Season 3" - }, - "Name": "Crossroads, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "2839": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Genesis", - "genre": { - "Name": "TV Shows" - } - }, - "2840": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Don't Look Back", - "genre": { - "Name": "Drama" - } - }, - "2841": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "One Giant Leap", - "genre": { - "Name": "Drama" - } - }, - "2842": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Collision", - "genre": { - "Name": "Drama" - } - }, - "2843": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Hiros", - "genre": { - "Name": "Drama" - } - }, - "2844": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Better Halves", - "genre": { - "Name": "Drama" - } - }, - "2845": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Nothing to Hide", - "genre": { - "Name": "TV Shows" - } - }, - "2846": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Seven Minutes to Midnight", - "genre": { - "Name": "Drama" - } - }, - "2847": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Homecoming", - "genre": { - "Name": "Drama" - } - }, - "2848": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Six Months Ago", - "genre": { - "Name": "TV Shows" - } - }, - "2849": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Fallout", - "genre": { - "Name": "Drama" - } - }, - "2850": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "The Fix", - "genre": { - "Name": "Drama" - } - }, - "2851": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Distractions", - "genre": { - "Name": "Drama" - } - }, - "2852": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Run!", - "genre": { - "Name": "Drama" - } - }, - "2853": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Unexpected", - "genre": { - "Name": "Drama" - } - }, - "2854": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Company Man", - "genre": { - "Name": "Drama" - } - }, - "2855": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Company Man", - "genre": { - "Name": "Drama" - } - }, - "2856": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Parasite", - "genre": { - "Name": "Drama" - } - }, - "2857": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "A Tale of Two Cities", - "genre": { - "Name": "TV Shows" - } - }, - "2858": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Lost (Pilot, Part 1) [Premiere]", - "genre": { - "Name": "TV Shows" - } - }, - "2859": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Man of Science, Man of Faith (Premiere)", - "genre": { - "Name": "TV Shows" - } - }, - "2860": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Adrift", - "genre": { - "Name": "TV Shows" - } - }, - "2861": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Lost (Pilot, Part 2)", - "genre": { - "Name": "TV Shows" - } - }, - "2862": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "The Glass Ballerina", - "genre": { - "Name": "Drama" - } - }, - "2863": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Further Instructions", - "genre": { - "Name": "TV Shows" - } - }, - "2864": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Orientation", - "genre": { - "Name": "TV Shows" - } - }, - "2865": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Tabula Rasa", - "genre": { - "Name": "TV Shows" - } - }, - "2866": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Every Man for Himself", - "genre": { - "Name": "Drama" - } - }, - "2867": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Everybody Hates Hugo", - "genre": { - "Name": "TV Shows" - } - }, - "2868": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Walkabout", - "genre": { - "Name": "TV Shows" - } - }, - "2869": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "...And Found", - "genre": { - "Name": "TV Shows" - } - }, - "2870": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "The Cost of Living", - "genre": { - "Name": "TV Shows" - } - }, - "2871": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "White Rabbit", - "genre": { - "Name": "TV Shows" - } - }, - "2872": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Abandoned", - "genre": { - "Name": "TV Shows" - } - }, - "2873": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "House of the Rising Sun", - "genre": { - "Name": "TV Shows" - } - }, - "2874": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "I Do", - "genre": { - "Name": "TV Shows" - } - }, - "2875": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Not In Portland", - "genre": { - "Name": "Drama" - } - }, - "2876": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Not In Portland", - "genre": { - "Name": "Drama" - } - }, - "2877": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "The Moth", - "genre": { - "Name": "TV Shows" - } - }, - "2878": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "The Other 48 Days", - "genre": { - "Name": "TV Shows" - } - }, - "2879": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Collision", - "genre": { - "Name": "TV Shows" - } - }, - "2880": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Confidence Man", - "genre": { - "Name": "TV Shows" - } - }, - "2881": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Flashes Before Your Eyes", - "genre": { - "Name": "Drama" - } - }, - "2882": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Lost Survival Guide", - "genre": { - "Name": "Drama" - } - }, - "2883": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Solitary", - "genre": { - "Name": "TV Shows" - } - }, - "2884": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "What Kate Did", - "genre": { - "Name": "TV Shows" - } - }, - "2885": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Raised By Another", - "genre": { - "Name": "TV Shows" - } - }, - "2886": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Stranger In a Strange Land", - "genre": { - "Name": "Drama" - } - }, - "2887": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "The 23rd Psalm", - "genre": { - "Name": "TV Shows" - } - }, - "2888": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "All the Best Cowboys Have Daddy Issues", - "genre": { - "Name": "TV Shows" - } - }, - "2889": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "The Hunting Party", - "genre": { - "Name": "Drama" - } - }, - "2890": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Tricia Tanaka Is Dead", - "genre": { - "Name": "Drama" - } - }, - "2891": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Enter 77", - "genre": { - "Name": "Drama" - } - }, - "2892": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Fire + Water", - "genre": { - "Name": "Drama" - } - }, - "2893": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Whatever the Case May Be", - "genre": { - "Name": "TV Shows" - } - }, - "2894": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Hearts and Minds", - "genre": { - "Name": "TV Shows" - } - }, - "2895": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Par Avion", - "genre": { - "Name": "Drama" - } - }, - "2896": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "The Long Con", - "genre": { - "Name": "TV Shows" - } - }, - "2897": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "One of Them", - "genre": { - "Name": "Drama" - } - }, - "2898": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Special", - "genre": { - "Name": "TV Shows" - } - }, - "2899": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "The Man from Tallahassee", - "genre": { - "Name": "Drama" - } - }, - "2901": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Homecoming", - "genre": { - "Name": "TV Shows" - } - }, - "2902": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Maternity Leave", - "genre": { - "Name": "Drama" - } - }, - "2903": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Left Behind", - "genre": { - "Name": "Drama" - } - }, - "2904": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Outlaws", - "genre": { - "Name": "TV Shows" - } - }, - "2905": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "The Whole Truth", - "genre": { - "Name": "Drama" - } - }, - "2906": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "...In Translation", - "genre": { - "Name": "TV Shows" - } - }, - "2907": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Lockdown", - "genre": { - "Name": "Drama" - } - }, - "2908": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "One of Us", - "genre": { - "Name": "Drama" - } - }, - "2909": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Catch-22", - "genre": { - "Name": "Drama" - } - }, - "2910": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Dave", - "genre": { - "Name": "TV Shows" - } - }, - "2911": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Numbers", - "genre": { - "Name": "TV Shows" - } - }, - "2912": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "D.O.C.", - "genre": { - "Name": "Drama" - } - }, - "2913": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Deus Ex Machina", - "genre": { - "Name": "TV Shows" - } - }, - "2914": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "S.O.S.", - "genre": { - "Name": "TV Shows" - } - }, - "2915": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Do No Harm", - "genre": { - "Name": "TV Shows" - } - }, - "2916": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Two for the Road", - "genre": { - "Name": "Drama" - } - }, - "2917": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "The Greater Good", - "genre": { - "Name": "TV Shows" - } - }, - "2918": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "\"?\"", - "genre": { - "Name": "TV Shows" - } - }, - "2919": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Born to Run", - "genre": { - "Name": "TV Shows" - } - }, - "2920": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Three Minutes", - "genre": { - "Name": "TV Shows" - } - }, - "2921": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Exodus (Part 1)", - "genre": { - "Name": "TV Shows" - } - }, - "2922": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Live Together, Die Alone, Pt. 1", - "genre": { - "Name": "Drama" - } - }, - "2923": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Exodus (Part 2) [Season Finale]", - "genre": { - "Name": "TV Shows" - } - }, - "2924": { - "Composer": null, - "album": { - "Title": "Lost, Season 2" - }, - "Name": "Live Together, Die Alone, Pt. 2", - "genre": { - "Name": "TV Shows" - } - }, - "2925": { - "Composer": null, - "album": { - "Title": "Lost, Season 1" - }, - "Name": "Exodus (Part 3) [Season Finale]", - "genre": { - "Name": "TV Shows" - } - }, - "2926": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Zoo Station", - "genre": { - "Name": "Rock" - } - }, - "2927": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Even Better Than The Real Thing", - "genre": { - "Name": "Rock" - } - }, - "2928": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "One", - "genre": { - "Name": "Rock" - } - }, - "2929": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Until The End Of The World", - "genre": { - "Name": "Rock" - } - }, - "2930": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Who's Gonna Ride Your Wild Horses", - "genre": { - "Name": "Rock" - } - }, - "2931": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "So Cruel", - "genre": { - "Name": "Rock" - } - }, - "2932": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "The Fly", - "genre": { - "Name": "Rock" - } - }, - "2933": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Mysterious Ways", - "genre": { - "Name": "Rock" - } - }, - "2934": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Tryin' To Throw Your Arms Around The World", - "genre": { - "Name": "Rock" - } - }, - "2935": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Ultraviolet (Light My Way)", - "genre": { - "Name": "Rock" - } - }, - "2936": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Acrobat", - "genre": { - "Name": "Rock" - } - }, - "2937": { - "Composer": "U2", - "album": { - "Title": "Achtung Baby" - }, - "Name": "Love Is Blindness", - "genre": { - "Name": "Rock" - } - }, - "2938": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Beautiful Day", - "genre": { - "Name": "Rock" - } - }, - "2939": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Stuck In A Moment You Can't Get Out Of", - "genre": { - "Name": "Rock" - } - }, - "2940": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Elevation", - "genre": { - "Name": "Rock" - } - }, - "2941": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Walk On", - "genre": { - "Name": "Rock" - } - }, - "2942": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Kite", - "genre": { - "Name": "Rock" - } - }, - "2943": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "In A Little While", - "genre": { - "Name": "Rock" - } - }, - "2944": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Wild Honey", - "genre": { - "Name": "Rock" - } - }, - "2945": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Peace On Earth", - "genre": { - "Name": "Rock" - } - }, - "2946": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "When I Look At The World", - "genre": { - "Name": "Rock" - } - }, - "2947": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "New York", - "genre": { - "Name": "Rock" - } - }, - "2948": { - "Composer": "Adam Clayton, Bono, Larry Mullen, The Edge", - "album": { - "Title": "All That You Can't Leave Behind" - }, - "Name": "Grace", - "genre": { - "Name": "Rock" - } - }, - "2949": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "The Three Sunrises", - "genre": { - "Name": "Rock" - } - }, - "2950": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Spanish Eyes", - "genre": { - "Name": "Rock" - } - }, - "2951": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Sweetest Thing", - "genre": { - "Name": "Rock" - } - }, - "2952": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Love Comes Tumbling", - "genre": { - "Name": "Rock" - } - }, - "2953": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Bass Trap", - "genre": { - "Name": "Rock" - } - }, - "2954": { - "Composer": "Ivan Kral/Patti Smith", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Dancing Barefoot", - "genre": { - "Name": "Rock" - } - }, - "2955": { - "Composer": "Buzz Cason/Mac Gayden", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Everlasting Love", - "genre": { - "Name": "Rock" - } - }, - "2956": { - "Composer": "Alex North/Hy Zaret", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Unchained Melody", - "genre": { - "Name": "Rock" - } - }, - "2957": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Walk To The Water", - "genre": { - "Name": "Rock" - } - }, - "2958": { - "Composer": "Brian Eno/U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Luminous Times (Hold On To Love)", - "genre": { - "Name": "Rock" - } - }, - "2959": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Hallelujah Here She Comes", - "genre": { - "Name": "Rock" - } - }, - "2960": { - "Composer": "Bono", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Silver And Gold", - "genre": { - "Name": "Rock" - } - }, - "2961": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Endless Deep", - "genre": { - "Name": "Rock" - } - }, - "2962": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "A Room At The Heartbreak Hotel", - "genre": { - "Name": "Rock" - } - }, - "2963": { - "Composer": "U2", - "album": { - "Title": "B-Sides 1980-1990" - }, - "Name": "Trash, Trampoline And The Party Girl", - "genre": { - "Name": "Rock" - } - }, - "2964": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Vertigo", - "genre": { - "Name": "Rock" - } - }, - "2965": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Miracle Drug", - "genre": { - "Name": "Rock" - } - }, - "2966": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Sometimes You Can't Make It On Your Own", - "genre": { - "Name": "Rock" - } - }, - "2967": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Love And Peace Or Else", - "genre": { - "Name": "Rock" - } - }, - "2968": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "City Of Blinding Lights", - "genre": { - "Name": "Rock" - } - }, - "2969": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "All Because Of You", - "genre": { - "Name": "Rock" - } - }, - "2970": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "A Man And A Woman", - "genre": { - "Name": "Rock" - } - }, - "2971": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Crumbs From Your Table", - "genre": { - "Name": "Rock" - } - }, - "2972": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "One Step Closer", - "genre": { - "Name": "Rock" - } - }, - "2973": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Original Of The Species", - "genre": { - "Name": "Rock" - } - }, - "2974": { - "Composer": "Adam Clayton, Bono, Larry Mullen & The Edge", - "album": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "Name": "Yahweh", - "genre": { - "Name": "Rock" - } - }, - "2975": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Discotheque", - "genre": { - "Name": "Rock" - } - }, - "2976": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Do You Feel Loved", - "genre": { - "Name": "Rock" - } - }, - "2977": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Mofo", - "genre": { - "Name": "Rock" - } - }, - "2978": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "If God Will Send His Angels", - "genre": { - "Name": "Rock" - } - }, - "2979": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Staring At The Sun", - "genre": { - "Name": "Rock" - } - }, - "2980": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Last Night On Earth", - "genre": { - "Name": "Rock" - } - }, - "2981": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Gone", - "genre": { - "Name": "Rock" - } - }, - "2982": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Miami", - "genre": { - "Name": "Rock" - } - }, - "2983": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "The Playboy Mansion", - "genre": { - "Name": "Rock" - } - }, - "2984": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "If You Wear That Velvet Dress", - "genre": { - "Name": "Rock" - } - }, - "2985": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Please", - "genre": { - "Name": "Rock" - } - }, - "2986": { - "Composer": "Bono, The Edge, Adam Clayton, and Larry Mullen", - "album": { - "Title": "Pop" - }, - "Name": "Wake Up Dead Man", - "genre": { - "Name": "Rock" - } - }, - "2987": { - "Composer": "Lennon, John/McCartney, Paul", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Helter Skelter", - "genre": { - "Name": "Rock" - } - }, - "2988": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Van Diemen's Land", - "genre": { - "Name": "Rock" - } - }, - "2989": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Desire", - "genre": { - "Name": "Rock" - } - }, - "2990": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Hawkmoon 269", - "genre": { - "Name": "Rock" - } - }, - "2991": { - "Composer": "Dylan, Bob", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "All Along The Watchtower", - "genre": { - "Name": "Rock" - } - }, - "2992": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "I Still Haven't Found What I'm Looking for", - "genre": { - "Name": "Rock" - } - }, - "2993": { - "Composer": "Mabins, Macie/Magee, Sterling/Robinson, Bobby", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Freedom For My People", - "genre": { - "Name": "Rock" - } - }, - "2994": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Silver And Gold", - "genre": { - "Name": "Rock" - } - }, - "2995": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Pride (In The Name Of Love)", - "genre": { - "Name": "Rock" - } - }, - "2996": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Angel Of Harlem", - "genre": { - "Name": "Rock" - } - }, - "2997": { - "Composer": "Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Love Rescue Me", - "genre": { - "Name": "Rock" - } - }, - "2998": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "When Love Comes To Town", - "genre": { - "Name": "Rock" - } - }, - "2999": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Heartland", - "genre": { - "Name": "Rock" - } - }, - "3000": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "God Part II", - "genre": { - "Name": "Rock" - } - }, - "3001": { - "Composer": "Hendrix, Jimi", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "The Star Spangled Banner", - "genre": { - "Name": "Rock" - } - }, - "3002": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "Bullet The Blue Sky", - "genre": { - "Name": "Rock" - } - }, - "3003": { - "Composer": "Bono/Clayton, Adam/Mullen Jr., Larry/The Edge", - "album": { - "Title": "Rattle And Hum" - }, - "Name": "All I Want Is You", - "genre": { - "Name": "Rock" - } - }, - "3004": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Pride (In The Name Of Love)", - "genre": { - "Name": "Rock" - } - }, - "3005": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "New Year's Day", - "genre": { - "Name": "Rock" - } - }, - "3006": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "With Or Without You", - "genre": { - "Name": "Rock" - } - }, - "3007": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "I Still Haven't Found What I'm Looking For", - "genre": { - "Name": "Rock" - } - }, - "3008": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Sunday Bloody Sunday", - "genre": { - "Name": "Rock" - } - }, - "3009": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Bad", - "genre": { - "Name": "Rock" - } - }, - "3010": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Where The Streets Have No Name", - "genre": { - "Name": "Rock" - } - }, - "3011": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "I Will Follow", - "genre": { - "Name": "Rock" - } - }, - "3012": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "The Unforgettable Fire", - "genre": { - "Name": "Rock" - } - }, - "3013": { - "Composer": "U2 & Daragh O'Toole", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Sweetest Thing", - "genre": { - "Name": "Rock" - } - }, - "3014": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Desire", - "genre": { - "Name": "Rock" - } - }, - "3015": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "When Love Comes To Town", - "genre": { - "Name": "Rock" - } - }, - "3016": { - "Composer": "U2", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "Angel Of Harlem", - "genre": { - "Name": "Rock" - } - }, - "3017": { - "Composer": "U2 & Van Dyke Parks", - "album": { - "Title": "The Best Of 1980-1990" - }, - "Name": "All I Want Is You", - "genre": { - "Name": "Rock" - } - }, - "3018": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Sunday Bloody Sunday", - "genre": { - "Name": "Rock" - } - }, - "3019": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Seconds", - "genre": { - "Name": "Rock" - } - }, - "3020": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "New Year's Day", - "genre": { - "Name": "Rock" - } - }, - "3021": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Like A Song...", - "genre": { - "Name": "Rock" - } - }, - "3022": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Drowning Man", - "genre": { - "Name": "Rock" - } - }, - "3023": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "The Refugee", - "genre": { - "Name": "Rock" - } - }, - "3024": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Two Hearts Beat As One", - "genre": { - "Name": "Rock" - } - }, - "3025": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Red Light", - "genre": { - "Name": "Rock" - } - }, - "3026": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "Surrender", - "genre": { - "Name": "Rock" - } - }, - "3027": { - "Composer": "U2", - "album": { - "Title": "War" - }, - "Name": "\"40\"", - "genre": { - "Name": "Rock" - } - }, - "3028": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "Zooropa", - "genre": { - "Name": "Rock" - } - }, - "3029": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "Babyface", - "genre": { - "Name": "Rock" - } - }, - "3030": { - "Composer": "U2; Edge, The", - "album": { - "Title": "Zooropa" - }, - "Name": "Numb", - "genre": { - "Name": "Rock" - } - }, - "3031": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "Lemon", - "genre": { - "Name": "Rock" - } - }, - "3032": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "Stay (Faraway, So Close!)", - "genre": { - "Name": "Rock" - } - }, - "3033": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "Daddy's Gonna Pay For Your Crashed Car", - "genre": { - "Name": "Rock" - } - }, - "3034": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "Some Days Are Better Than Others", - "genre": { - "Name": "Rock" - } - }, - "3035": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "The First Time", - "genre": { - "Name": "Rock" - } - }, - "3036": { - "Composer": "U2; Bono & Edge, The", - "album": { - "Title": "Zooropa" - }, - "Name": "Dirty Day", - "genre": { - "Name": "Rock" - } - }, - "3037": { - "Composer": "U2; Bono", - "album": { - "Title": "Zooropa" - }, - "Name": "The Wanderer", - "genre": { - "Name": "Rock" - } - }, - "3038": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Breakfast In Bed", - "genre": { - "Name": "Reggae" - } - }, - "3039": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Where Did I Go Wrong", - "genre": { - "Name": "Reggae" - } - }, - "3040": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "I Would Do For You", - "genre": { - "Name": "Reggae" - } - }, - "3041": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Homely Girl", - "genre": { - "Name": "Reggae" - } - }, - "3042": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Here I Am (Come And Take Me)", - "genre": { - "Name": "Reggae" - } - }, - "3043": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Kingston Town", - "genre": { - "Name": "Reggae" - } - }, - "3044": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Wear You To The Ball", - "genre": { - "Name": "Reggae" - } - }, - "3045": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "(I Can't Help) Falling In Love With You", - "genre": { - "Name": "Reggae" - } - }, - "3046": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Higher Ground", - "genre": { - "Name": "Reggae" - } - }, - "3047": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Bring Me Your Cup", - "genre": { - "Name": "Reggae" - } - }, - "3048": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "C'est La Vie", - "genre": { - "Name": "Reggae" - } - }, - "3049": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Reggae Music", - "genre": { - "Name": "Reggae" - } - }, - "3050": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Superstition", - "genre": { - "Name": "Reggae" - } - }, - "3051": { - "Composer": null, - "album": { - "Title": "UB40 The Best Of - Volume Two [UK]" - }, - "Name": "Until My Dying Day", - "genre": { - "Name": "Reggae" - } - }, - "3052": { - "Composer": "Ray Davies", - "album": { - "Title": "Diver Down" - }, - "Name": "Where Have All The Good Times Gone?", - "genre": { - "Name": "Rock" - } - }, - "3053": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "Hang 'Em High", - "genre": { - "Name": "Rock" - } - }, - "3054": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "Cathedral", - "genre": { - "Name": "Rock" - } - }, - "3055": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "Secrets", - "genre": { - "Name": "Rock" - } - }, - "3056": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "Intruder", - "genre": { - "Name": "Rock" - } - }, - "3057": { - "Composer": "Bill Dees/Roy Orbison", - "album": { - "Title": "Diver Down" - }, - "Name": "(Oh) Pretty Woman", - "genre": { - "Name": "Rock" - } - }, - "3058": { - "Composer": "Ivy Jo Hunter/Marvin Gaye/William Stevenson", - "album": { - "Title": "Diver Down" - }, - "Name": "Dancing In The Street", - "genre": { - "Name": "Rock" - } - }, - "3059": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "Little Guitars (Intro)", - "genre": { - "Name": "Rock" - } - }, - "3060": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "Little Guitars", - "genre": { - "Name": "Rock" - } - }, - "3061": { - "Composer": "Jack Yellen/Milton Ager", - "album": { - "Title": "Diver Down" - }, - "Name": "Big Bad Bill (Is Sweet William Now)", - "genre": { - "Name": "Rock" - } - }, - "3062": { - "Composer": "Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony", - "album": { - "Title": "Diver Down" - }, - "Name": "The Full Bug", - "genre": { - "Name": "Rock" - } - }, - "3063": { - "Composer": "Dale Evans", - "album": { - "Title": "Diver Down" - }, - "Name": "Happy Trails", - "genre": { - "Name": "Rock" - } - }, - "3064": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Eruption", - "genre": { - "Name": "Rock" - } - }, - "3065": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Ain't Talkin' 'bout Love", - "genre": { - "Name": "Rock" - } - }, - "3066": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Runnin' With The Devil", - "genre": { - "Name": "Rock" - } - }, - "3067": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Dance the Night Away", - "genre": { - "Name": "Rock" - } - }, - "3068": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "And the Cradle Will Rock...", - "genre": { - "Name": "Rock" - } - }, - "3069": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Unchained", - "genre": { - "Name": "Rock" - } - }, - "3070": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Jump", - "genre": { - "Name": "Rock" - } - }, - "3071": { - "Composer": "Edward Van Halen, Alex Van Halen, David Lee Roth", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Panama", - "genre": { - "Name": "Rock" - } - }, - "3072": { - "Composer": "Van Halen", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Why Can't This Be Love", - "genre": { - "Name": "Rock" - } - }, - "3073": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Dreams", - "genre": { - "Name": "Rock" - } - }, - "3074": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "When It's Love", - "genre": { - "Name": "Rock" - } - }, - "3075": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Poundcake", - "genre": { - "Name": "Rock" - } - }, - "3076": { - "Composer": "Van Halen", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Right Now", - "genre": { - "Name": "Rock" - } - }, - "3077": { - "Composer": "Van Halen", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Can't Stop Loving You", - "genre": { - "Name": "Rock" - } - }, - "3078": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Humans Being", - "genre": { - "Name": "Rock" - } - }, - "3079": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Can't Get This Stuff No More", - "genre": { - "Name": "Rock" - } - }, - "3080": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth", - "album": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "Name": "Me Wise Magic", - "genre": { - "Name": "Rock" - } - }, - "3081": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Runnin' With The Devil", - "genre": { - "Name": "Rock" - } - }, - "3082": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Eruption", - "genre": { - "Name": "Rock" - } - }, - "3083": { - "Composer": "Ray Davies", - "album": { - "Title": "Van Halen" - }, - "Name": "You Really Got Me", - "genre": { - "Name": "Rock" - } - }, - "3084": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Ain't Talkin' 'Bout Love", - "genre": { - "Name": "Rock" - } - }, - "3085": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "I'm The One", - "genre": { - "Name": "Rock" - } - }, - "3086": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Jamie's Cryin'", - "genre": { - "Name": "Rock" - } - }, - "3087": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Atomic Punk", - "genre": { - "Name": "Rock" - } - }, - "3088": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Feel Your Love Tonight", - "genre": { - "Name": "Rock" - } - }, - "3089": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "Little Dreamer", - "genre": { - "Name": "Rock" - } - }, - "3090": { - "Composer": "John Brim", - "album": { - "Title": "Van Halen" - }, - "Name": "Ice Cream Man", - "genre": { - "Name": "Rock" - } - }, - "3091": { - "Composer": "Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth", - "album": { - "Title": "Van Halen" - }, - "Name": "On Fire", - "genre": { - "Name": "Rock" - } - }, - "3092": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Neworld", - "genre": { - "Name": "Rock" - } - }, - "3093": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Without You", - "genre": { - "Name": "Rock" - } - }, - "3094": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "One I Want", - "genre": { - "Name": "Rock" - } - }, - "3095": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "From Afar", - "genre": { - "Name": "Rock" - } - }, - "3096": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Dirty Water Dog", - "genre": { - "Name": "Rock" - } - }, - "3097": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Once", - "genre": { - "Name": "Rock" - } - }, - "3098": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Fire in the Hole", - "genre": { - "Name": "Rock" - } - }, - "3099": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Josephina", - "genre": { - "Name": "Rock" - } - }, - "3100": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Year to the Day", - "genre": { - "Name": "Rock" - } - }, - "3101": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Primary", - "genre": { - "Name": "Rock" - } - }, - "3102": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "Ballot or the Bullet", - "genre": { - "Name": "Rock" - } - }, - "3103": { - "Composer": "Van Halen", - "album": { - "Title": "Van Halen III" - }, - "Name": "How Many Say I", - "genre": { - "Name": "Rock" - } - }, - "3104": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Sucker Train Blues", - "genre": { - "Name": "Rock" - } - }, - "3105": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Do It For The Kids", - "genre": { - "Name": "Rock" - } - }, - "3106": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Big Machine", - "genre": { - "Name": "Rock" - } - }, - "3107": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Illegal I Song", - "genre": { - "Name": "Rock" - } - }, - "3108": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Spectacle", - "genre": { - "Name": "Rock" - } - }, - "3109": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Fall To Pieces", - "genre": { - "Name": "Rock" - } - }, - "3110": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Headspace", - "genre": { - "Name": "Rock" - } - }, - "3111": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Superhuman", - "genre": { - "Name": "Rock" - } - }, - "3112": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Set Me Free", - "genre": { - "Name": "Rock" - } - }, - "3113": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "You Got No Right", - "genre": { - "Name": "Rock" - } - }, - "3114": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Slither", - "genre": { - "Name": "Rock" - } - }, - "3115": { - "Composer": "Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Dirty Little Thing", - "genre": { - "Name": "Rock" - } - }, - "3116": { - "Composer": "Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash", - "album": { - "Title": "Contraband" - }, - "Name": "Loving The Alien", - "genre": { - "Name": "Rock" - } - }, - "3132": { - "Composer": "Sykes", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Still Of The Night", - "genre": { - "Name": "Metal" - } - }, - "3133": { - "Composer": "Marsden", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Here I Go Again", - "genre": { - "Name": "Metal" - } - }, - "3134": { - "Composer": "Sykes", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Is This Love", - "genre": { - "Name": "Metal" - } - }, - "3135": { - "Composer": "Galley", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Love Ain't No Stranger", - "genre": { - "Name": "Metal" - } - }, - "3136": { - "Composer": "Sykes", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Looking For Love", - "genre": { - "Name": "Metal" - } - }, - "3137": { - "Composer": "Vandenberg", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Now You're Gone", - "genre": { - "Name": "Metal" - } - }, - "3138": { - "Composer": "Coverdale", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Slide It In", - "genre": { - "Name": "Metal" - } - }, - "3139": { - "Composer": "Moody", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Slow An' Easy", - "genre": { - "Name": "Metal" - } - }, - "3140": { - "Composer": "Vandenberg", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Judgement Day", - "genre": { - "Name": "Metal" - } - }, - "3141": { - "Composer": "Sykes", - "album": { - "Title": "Greatest Hits" - }, - "Name": "You're Gonna Break My Hart Again", - "genre": { - "Name": "Metal" - } - }, - "3142": { - "Composer": "Vandenberg", - "album": { - "Title": "Greatest Hits" - }, - "Name": "The Deeper The Love", - "genre": { - "Name": "Metal" - } - }, - "3143": { - "Composer": "Coverdale", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Crying In The Rain", - "genre": { - "Name": "Metal" - } - }, - "3144": { - "Composer": "Marsden/Moody", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Fool For Your Loving", - "genre": { - "Name": "Metal" - } - }, - "3145": { - "Composer": "Vandenberg", - "album": { - "Title": "Greatest Hits" - }, - "Name": "Sweet Lady Luck", - "genre": { - "Name": "Metal" - } - }, - "3149": { - "Composer": "Alcides Dias Lopes", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Vivo Isolado Do Mundo", - "genre": { - "Name": "Latin" - } - }, - "3153": { - "Composer": "Augusto Garcez/Nelson Cavaquinho", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Rugas", - "genre": { - "Name": "Latin" - } - }, - "3155": { - "Composer": "Aldir Blanc/Jayme Vignoli", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Sem Essa de Malandro Agulha", - "genre": { - "Name": "Latin" - } - }, - "3158": { - "Composer": "Acyr Marques/Arlindo Cruz/Franco", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Saudade Louca", - "genre": { - "Name": "Latin" - } - }, - "3160": { - "Composer": "Nei Lopes/Wilson Moreira", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Sapopemba e Maxambomba", - "genre": { - "Name": "Latin" - } - }, - "3162": { - "Composer": "Ratinho/Zeca Pagodinho", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Lua de Ogum", - "genre": { - "Name": "Latin" - } - }, - "3164": { - "Composer": "Carlinhos Santana/Nelson Rufino", - "album": { - "Title": "Ao Vivo [IMPORT]" - }, - "Name": "Verdade", - "genre": { - "Name": "Latin" - } - }, - "3165": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "The Brig", - "genre": { - "Name": "Drama" - } - }, - "3166": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": ".07%", - "genre": { - "Name": "Drama" - } - }, - "3167": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Five Years Gone", - "genre": { - "Name": "Drama" - } - }, - "3168": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "The Hard Part", - "genre": { - "Name": "Drama" - } - }, - "3169": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "The Man Behind the Curtain", - "genre": { - "Name": "Drama" - } - }, - "3170": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Greatest Hits", - "genre": { - "Name": "Drama" - } - }, - "3171": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "Landslide", - "genre": { - "Name": "Drama" - } - }, - "3172": { - "Composer": null, - "album": { - "Title": "The Office, Season 1" - }, - "Name": "The Office: An American Workplace (Pilot)", - "genre": { - "Name": "TV Shows" - } - }, - "3173": { - "Composer": null, - "album": { - "Title": "The Office, Season 1" - }, - "Name": "Diversity Day", - "genre": { - "Name": "TV Shows" - } - }, - "3174": { - "Composer": null, - "album": { - "Title": "The Office, Season 1" - }, - "Name": "Health Care", - "genre": { - "Name": "TV Shows" - } - }, - "3175": { - "Composer": null, - "album": { - "Title": "The Office, Season 1" - }, - "Name": "The Alliance", - "genre": { - "Name": "TV Shows" - } - }, - "3176": { - "Composer": null, - "album": { - "Title": "The Office, Season 1" - }, - "Name": "Basketball", - "genre": { - "Name": "TV Shows" - } - }, - "3177": { - "Composer": null, - "album": { - "Title": "The Office, Season 1" - }, - "Name": "Hot Girl", - "genre": { - "Name": "TV Shows" - } - }, - "3178": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Dundies", - "genre": { - "Name": "TV Shows" - } - }, - "3179": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Sexual Harassment", - "genre": { - "Name": "TV Shows" - } - }, - "3180": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Office Olympics", - "genre": { - "Name": "TV Shows" - } - }, - "3181": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Fire", - "genre": { - "Name": "TV Shows" - } - }, - "3182": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Halloween", - "genre": { - "Name": "TV Shows" - } - }, - "3183": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Fight", - "genre": { - "Name": "TV Shows" - } - }, - "3184": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Client", - "genre": { - "Name": "TV Shows" - } - }, - "3185": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Performance Review", - "genre": { - "Name": "TV Shows" - } - }, - "3186": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Email Surveillance", - "genre": { - "Name": "TV Shows" - } - }, - "3187": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Christmas Party", - "genre": { - "Name": "TV Shows" - } - }, - "3188": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Booze Cruise", - "genre": { - "Name": "TV Shows" - } - }, - "3189": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Injury", - "genre": { - "Name": "TV Shows" - } - }, - "3190": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Secret", - "genre": { - "Name": "TV Shows" - } - }, - "3191": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "The Carpet", - "genre": { - "Name": "TV Shows" - } - }, - "3192": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Boys and Girls", - "genre": { - "Name": "TV Shows" - } - }, - "3193": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Valentine's Day", - "genre": { - "Name": "TV Shows" - } - }, - "3194": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Dwight's Speech", - "genre": { - "Name": "TV Shows" - } - }, - "3195": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Take Your Daughter to Work Day", - "genre": { - "Name": "TV Shows" - } - }, - "3196": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Michael's Birthday", - "genre": { - "Name": "TV Shows" - } - }, - "3197": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Drug Testing", - "genre": { - "Name": "TV Shows" - } - }, - "3198": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Conflict Resolution", - "genre": { - "Name": "TV Shows" - } - }, - "3199": { - "Composer": null, - "album": { - "Title": "The Office, Season 2" - }, - "Name": "Casino Night - Season Finale", - "genre": { - "Name": "TV Shows" - } - }, - "3200": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Gay Witch Hunt", - "genre": { - "Name": "TV Shows" - } - }, - "3201": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Convention", - "genre": { - "Name": "TV Shows" - } - }, - "3202": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Coup", - "genre": { - "Name": "TV Shows" - } - }, - "3203": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Grief Counseling", - "genre": { - "Name": "TV Shows" - } - }, - "3204": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Initiation", - "genre": { - "Name": "TV Shows" - } - }, - "3205": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Diwali", - "genre": { - "Name": "TV Shows" - } - }, - "3206": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Branch Closing", - "genre": { - "Name": "TV Shows" - } - }, - "3207": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Merger", - "genre": { - "Name": "TV Shows" - } - }, - "3208": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Convict", - "genre": { - "Name": "Comedy" - } - }, - "3209": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "A Benihana Christmas, Pts. 1 & 2", - "genre": { - "Name": "Comedy" - } - }, - "3210": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Back from Vacation", - "genre": { - "Name": "Comedy" - } - }, - "3211": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Traveling Salesmen", - "genre": { - "Name": "Comedy" - } - }, - "3212": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Producer's Cut: The Return", - "genre": { - "Name": "Comedy" - } - }, - "3213": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Ben Franklin", - "genre": { - "Name": "Comedy" - } - }, - "3214": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Phyllis's Wedding", - "genre": { - "Name": "Comedy" - } - }, - "3215": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Business School", - "genre": { - "Name": "Comedy" - } - }, - "3216": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Cocktails", - "genre": { - "Name": "Comedy" - } - }, - "3217": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Negotiation", - "genre": { - "Name": "Comedy" - } - }, - "3218": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Safety Training", - "genre": { - "Name": "Comedy" - } - }, - "3219": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Product Recall", - "genre": { - "Name": "Comedy" - } - }, - "3220": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Women's Appreciation", - "genre": { - "Name": "Comedy" - } - }, - "3221": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Beach Games", - "genre": { - "Name": "Comedy" - } - }, - "3222": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Job", - "genre": { - "Name": "Comedy" - } - }, - "3223": { - "Composer": null, - "album": { - "Title": "Heroes, Season 1" - }, - "Name": "How to Stop an Exploding Man", - "genre": { - "Name": "Drama" - } - }, - "3224": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Through a Looking Glass", - "genre": { - "Name": "Drama" - } - }, - "3225": { - "Composer": "Page, Jones", - "album": { - "Title": "Un-Led-Ed" - }, - "Name": "Your Time Is Gonna Come", - "genre": { - "Name": "Rock" - } - }, - "3226": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Battlestar Galactica, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3227": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Battlestar Galactica, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3228": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Battlestar Galactica, Pt. 3", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3229": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Lost Planet of the Gods, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3230": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Lost Planet of the Gods, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3231": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Lost Warrior", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3232": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Long Patrol", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3233": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Gun On Ice Planet Zero, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3234": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Gun On Ice Planet Zero, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3235": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Magnificent Warriors", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3236": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Young Lords", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3237": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Living Legend, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3238": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Living Legend, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3239": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Fire In Space", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3240": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "War of the Gods, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3241": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "War of the Gods, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3242": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Man With Nine Lives", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3243": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Murder On the Rising Star", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3244": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Greetings from Earth, Pt. 1", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3245": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Greetings from Earth, Pt. 2", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3246": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Baltar's Escape", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3247": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Experiment In Terra", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3248": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "Take the Celestra", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3249": { - "Composer": null, - "album": { - "Title": "Battlestar Galactica (Classic), Season 1" - }, - "Name": "The Hand of God", - "genre": { - "Name": "Sci Fi & Fantasy" - } - }, - "3250": { - "Composer": null, - "album": { - "Title": "Aquaman" - }, - "Name": "Pilot", - "genre": { - "Name": "TV Shows" - } - }, - "3251": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Through the Looking Glass, Pt. 2", - "genre": { - "Name": "Drama" - } - }, - "3252": { - "Composer": null, - "album": { - "Title": "Lost, Season 3" - }, - "Name": "Through the Looking Glass, Pt. 1", - "genre": { - "Name": "Drama" - } - }, - "3253": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Instant Karma", - "genre": { - "Name": "Pop" - } - }, - "3254": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "#9 Dream", - "genre": { - "Name": "Pop" - } - }, - "3255": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Mother", - "genre": { - "Name": "Pop" - } - }, - "3256": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Give Peace a Chance", - "genre": { - "Name": "Pop" - } - }, - "3257": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Cold Turkey", - "genre": { - "Name": "Pop" - } - }, - "3258": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Whatever Gets You Thru the Night", - "genre": { - "Name": "Pop" - } - }, - "3259": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "I'm Losing You", - "genre": { - "Name": "Pop" - } - }, - "3260": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Gimme Some Truth", - "genre": { - "Name": "Pop" - } - }, - "3261": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Oh, My Love", - "genre": { - "Name": "Pop" - } - }, - "3262": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Imagine", - "genre": { - "Name": "Pop" - } - }, - "3263": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Nobody Told Me", - "genre": { - "Name": "Pop" - } - }, - "3264": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Jealous Guy", - "genre": { - "Name": "Pop" - } - }, - "3265": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Working Class Hero", - "genre": { - "Name": "Pop" - } - }, - "3266": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Power to the People", - "genre": { - "Name": "Pop" - } - }, - "3267": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Imagine", - "genre": { - "Name": "Pop" - } - }, - "3268": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Beautiful Boy", - "genre": { - "Name": "Pop" - } - }, - "3269": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Isolation", - "genre": { - "Name": "Pop" - } - }, - "3270": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Watching the Wheels", - "genre": { - "Name": "Pop" - } - }, - "3271": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Grow Old With Me", - "genre": { - "Name": "Pop" - } - }, - "3272": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Gimme Some Truth", - "genre": { - "Name": "Pop" - } - }, - "3273": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "[Just Like] Starting Over", - "genre": { - "Name": "Pop" - } - }, - "3274": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "God", - "genre": { - "Name": "Pop" - } - }, - "3275": { - "Composer": null, - "album": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - }, - "Name": "Real Love", - "genre": { - "Name": "Pop" - } - }, - "3276": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Sympton of the Universe", - "genre": { - "Name": "Rock" - } - }, - "3277": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Snowblind", - "genre": { - "Name": "Rock" - } - }, - "3278": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Black Sabbath", - "genre": { - "Name": "Rock" - } - }, - "3279": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Fairies Wear Boots", - "genre": { - "Name": "Rock" - } - }, - "3280": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "War Pigs", - "genre": { - "Name": "Rock" - } - }, - "3281": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "The Wizard", - "genre": { - "Name": "Rock" - } - }, - "3282": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "N.I.B.", - "genre": { - "Name": "Rock" - } - }, - "3283": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Sweet Leaf", - "genre": { - "Name": "Rock" - } - }, - "3284": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Never Say Die", - "genre": { - "Name": "Rock" - } - }, - "3285": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Sabbath, Bloody Sabbath", - "genre": { - "Name": "Rock" - } - }, - "3286": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Iron Man/Children of the Grave", - "genre": { - "Name": "Rock" - } - }, - "3287": { - "Composer": null, - "album": { - "Title": "Speak of the Devil" - }, - "Name": "Paranoid", - "genre": { - "Name": "Rock" - } - }, - "3288": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Rock You Like a Hurricane", - "genre": { - "Name": "Rock" - } - }, - "3289": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "No One Like You", - "genre": { - "Name": "Rock" - } - }, - "3290": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "The Zoo", - "genre": { - "Name": "Rock" - } - }, - "3291": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Loving You Sunday Morning", - "genre": { - "Name": "Rock" - } - }, - "3292": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Still Loving You", - "genre": { - "Name": "Rock" - } - }, - "3293": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Big City Nights", - "genre": { - "Name": "Rock" - } - }, - "3294": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Believe in Love", - "genre": { - "Name": "Rock" - } - }, - "3295": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Rhythm of Love", - "genre": { - "Name": "Rock" - } - }, - "3296": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "I Can't Explain", - "genre": { - "Name": "Rock" - } - }, - "3297": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Tease Me Please Me", - "genre": { - "Name": "Rock" - } - }, - "3298": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Wind of Change", - "genre": { - "Name": "Rock" - } - }, - "3299": { - "Composer": null, - "album": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - }, - "Name": "Send Me an Angel", - "genre": { - "Name": "Rock" - } - }, - "3300": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Jump Around", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3301": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "Salutations", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3302": { - "Composer": "E. Schrody/L. Freese/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Put Your Head Out", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3303": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "Top O' The Morning To Ya", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3304": { - "Composer": "L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Commercial 1", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3305": { - "Composer": "E. Schrody/J. Vasquez/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "House And The Rising Sun", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3306": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "Shamrocks And Shenanigans", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3307": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "House Of Pain Anthem", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3308": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Danny Boy, Danny Boy", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3309": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Guess Who's Back", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3310": { - "Composer": "L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Commercial 2", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3311": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Put On Your Shit Kickers", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3312": { - "Composer": "E. Schrody/L. Muggerud/R. Medrano", - "album": { - "Title": "House of Pain" - }, - "Name": "Come And Get Some Of This", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3313": { - "Composer": "E. Schrody/R. Medrano", - "album": { - "Title": "House of Pain" - }, - "Name": "Life Goes On", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3314": { - "Composer": "E. Schrody/L. Dimant/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "One For The Road", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3315": { - "Composer": "E. Schrody/R. Medrano", - "album": { - "Title": "House of Pain" - }, - "Name": "Feel It", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3316": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "All My Love", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3317": { - "Composer": "E. Schrody/L. Muggerud", - "album": { - "Title": "House of Pain" - }, - "Name": "Jump Around (Pete Rock Remix)", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3318": { - "Composer": "E. Schrody/L. Dimant", - "album": { - "Title": "House of Pain" - }, - "Name": "Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)", - "genre": { - "Name": "Hip Hop/Rap" - } - }, - "3319": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Instinto Colectivo", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3320": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Chapa o Coco", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3321": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Prostituta", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3322": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Eu So Queria Sumir", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3323": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Tres Reis", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3324": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Um Lugar ao Sol", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3325": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Batalha Naval", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3326": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Todo o Carnaval tem seu Fim", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3327": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "O Misterio do Samba", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3328": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Armadura", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3329": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Na Ladeira", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3330": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Carimbo", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3331": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Catimbo", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3332": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Funk de Bamba", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3333": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Chega no Suingue", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3334": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Mun-Ra", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3335": { - "Composer": null, - "album": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - }, - "Name": "Freestyle Love", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3336": { - "Composer": null, - "album": { - "Title": "Cake: B-Sides and Rarities" - }, - "Name": "War Pigs", - "genre": { - "Name": "Alternative" - } - }, - "3337": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Past, Present, and Future", - "genre": { - "Name": "Drama" - } - }, - "3338": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "The Beginning of the End", - "genre": { - "Name": "Drama" - } - }, - "3339": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "LOST Season 4 Trailer", - "genre": { - "Name": "Drama" - } - }, - "3340": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "LOST In 8:15", - "genre": { - "Name": "Drama" - } - }, - "3341": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Confirmed Dead", - "genre": { - "Name": "Drama" - } - }, - "3342": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "The Economist", - "genre": { - "Name": "Drama" - } - }, - "3343": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Eggtown", - "genre": { - "Name": "TV Shows" - } - }, - "3344": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "The Constant", - "genre": { - "Name": "Drama" - } - }, - "3345": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "The Other Woman", - "genre": { - "Name": "Drama" - } - }, - "3346": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Ji Yeon", - "genre": { - "Name": "TV Shows" - } - }, - "3347": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Meet Kevin Johnson", - "genre": { - "Name": "TV Shows" - } - }, - "3348": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "The Shape of Things to Come", - "genre": { - "Name": "Drama" - } - }, - "3349": { - "Composer": "Luca Gusella", - "album": { - "Title": "Quiet Songs" - }, - "Name": "Amanda", - "genre": { - "Name": "Jazz" - } - }, - "3350": { - "Composer": "Andrea Dulbecco", - "album": { - "Title": "Quiet Songs" - }, - "Name": "Despertar", - "genre": { - "Name": "Jazz" - } - }, - "3352": { - "Composer": "Karsh Kale/Vishal Vaid", - "album": { - "Title": "Realize" - }, - "Name": "Distance", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3353": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "album": { - "Title": "Every Kind of Light" - }, - "Name": "I Guess You're Right", - "genre": { - "Name": "Rock" - } - }, - "3355": { - "Composer": "Darius \"Take One\" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris", - "album": { - "Title": "Every Kind of Light" - }, - "Name": "Love Comes", - "genre": { - "Name": "Rock" - } - }, - "3356": { - "Composer": "Luciana Souza", - "album": { - "Title": "Duos II" - }, - "Name": "Muita Bobeira", - "genre": { - "Name": "Latin" - } - }, - "3357": { - "Composer": "Aaron Goldberg", - "album": { - "Title": "Worlds" - }, - "Name": "OAM's Blues", - "genre": { - "Name": "Jazz" - } - }, - "3358": { - "Composer": "Karsh Kale", - "album": { - "Title": "Realize" - }, - "Name": "One Step Beyond", - "genre": { - "Name": "Electronica/Dance" - } - }, - "3359": { - "Composer": "Ludwig van Beethoven", - "album": { - "Title": "The Best of Beethoven" - }, - "Name": "Symphony No. 3 in E-flat major, Op. 55, \"Eroica\" - Scherzo: Allegro Vivace", - "genre": { - "Name": "Classical" - } - }, - "3360": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Something Nice Back Home", - "genre": { - "Name": "Drama" - } - }, - "3361": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "Cabin Fever", - "genre": { - "Name": "Drama" - } - }, - "3362": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "There's No Place Like Home, Pt. 1", - "genre": { - "Name": "Drama" - } - }, - "3363": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "There's No Place Like Home, Pt. 2", - "genre": { - "Name": "Drama" - } - }, - "3364": { - "Composer": null, - "album": { - "Title": "LOST, Season 4" - }, - "Name": "There's No Place Like Home, Pt. 3", - "genre": { - "Name": "Drama" - } - }, - "3365": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Say Hello 2 Heaven", - "genre": { - "Name": "Alternative" - } - }, - "3366": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Reach Down", - "genre": { - "Name": "Alternative" - } - }, - "3367": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Hunger Strike", - "genre": { - "Name": "Alternative" - } - }, - "3368": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Pushin Forward Back", - "genre": { - "Name": "Alternative" - } - }, - "3369": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Call Me a Dog", - "genre": { - "Name": "Alternative" - } - }, - "3370": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Times of Trouble", - "genre": { - "Name": "Alternative" - } - }, - "3371": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Wooden Jesus", - "genre": { - "Name": "Alternative" - } - }, - "3372": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Your Savior", - "genre": { - "Name": "Alternative" - } - }, - "3373": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "Four Walled World", - "genre": { - "Name": "Alternative" - } - }, - "3374": { - "Composer": null, - "album": { - "Title": "Temple of the Dog" - }, - "Name": "All Night Thing", - "genre": { - "Name": "Alternative" - } - }, - "3375": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "No Such Thing", - "genre": { - "Name": "Alternative" - } - }, - "3376": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Poison Eye", - "genre": { - "Name": "Alternative" - } - }, - "3377": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Arms Around Your Love", - "genre": { - "Name": "Alternative" - } - }, - "3378": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Safe and Sound", - "genre": { - "Name": "Alternative" - } - }, - "3379": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "She'll Never Be Your Man", - "genre": { - "Name": "Alternative" - } - }, - "3380": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Ghosts", - "genre": { - "Name": "Alternative" - } - }, - "3381": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Killing Birds", - "genre": { - "Name": "Alternative" - } - }, - "3382": { - "Composer": "Michael Jackson", - "album": { - "Title": "Carry On" - }, - "Name": "Billie Jean", - "genre": { - "Name": "Alternative" - } - }, - "3383": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Scar On the Sky", - "genre": { - "Name": "Alternative" - } - }, - "3384": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Your Soul Today", - "genre": { - "Name": "Alternative" - } - }, - "3385": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Finally Forever", - "genre": { - "Name": "Alternative" - } - }, - "3386": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Silence the Voices", - "genre": { - "Name": "Alternative" - } - }, - "3387": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "Disappearing Act", - "genre": { - "Name": "Alternative" - } - }, - "3388": { - "Composer": "Chris Cornell", - "album": { - "Title": "Carry On" - }, - "Name": "You Know My Name", - "genre": { - "Name": "Alternative" - } - }, - "3389": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Revelations", - "genre": { - "Name": "Alternative" - } - }, - "3390": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "One and the Same", - "genre": { - "Name": "Alternative" - } - }, - "3391": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Sound of a Gun", - "genre": { - "Name": "Alternative" - } - }, - "3392": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Until We Fall", - "genre": { - "Name": "Alternative" - } - }, - "3393": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Original Fire", - "genre": { - "Name": "Alternative" - } - }, - "3394": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Broken City", - "genre": { - "Name": "Alternative" - } - }, - "3395": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Somedays", - "genre": { - "Name": "Alternative" - } - }, - "3396": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Shape of Things to Come", - "genre": { - "Name": "Alternative" - } - }, - "3397": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Jewel of the Summertime", - "genre": { - "Name": "Alternative" - } - }, - "3398": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Wide Awake", - "genre": { - "Name": "Alternative" - } - }, - "3399": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Nothing Left to Say But Goodbye", - "genre": { - "Name": "Alternative" - } - }, - "3400": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Moth", - "genre": { - "Name": "Alternative" - } - }, - "3401": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Show Me How to Live (Live at the Quart Festival)", - "genre": { - "Name": "Alternative" - } - }, - "3402": { - "Composer": null, - "album": { - "Title": "Revelations" - }, - "Name": "Band Members Discuss Tracks from \"Revelations\"", - "genre": { - "Name": "Alternative" - } - }, - "3403": { - "Composer": "Anonymous", - "album": { - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass" - }, - "Name": "Intoitus: Adorate Deum", - "genre": { - "Name": "Classical" - } - }, - "3404": { - "Composer": "Gregorio Allegri", - "album": { - "Title": "Allegri: Miserere" - }, - "Name": "Miserere mei, Deus", - "genre": { - "Name": "Classical" - } - }, - "3405": { - "Composer": "Johann Pachelbel", - "album": { - "Title": "Pachelbel: Canon & Gigue" - }, - "Name": "Canon and Gigue in D Major: I. Canon", - "genre": { - "Name": "Classical" - } - }, - "3406": { - "Composer": "Antonio Vivaldi", - "album": { - "Title": "Vivaldi: The Four Seasons" - }, - "Name": "Concerto No. 1 in E Major, RV 269 \"Spring\": I. Allegro", - "genre": { - "Name": "Classical" - } - }, - "3407": { - "Composer": "Johann Sebastian Bach", - "album": { - "Title": "Bach: Violin Concertos" - }, - "Name": "Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace", - "genre": { - "Name": "Classical" - } - }, - "3410": { - "Composer": "George Frideric Handel", - "album": { - "Title": "Handel: The Messiah (Highlights)" - }, - "Name": "The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound", - "genre": { - "Name": "Classical" - } - }, - "3411": { - "Composer": "George Frideric Handel", - "album": { - "Title": "The World of Classical Favourites" - }, - "Name": "Solomon HWV 67: The Arrival of the Queen of Sheba", - "genre": { - "Name": "Classical" - } - }, - "3412": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "Title": "Sir Neville Marriner: A Celebration" - }, - "Name": "\"Eine Kleine Nachtmusik\" Serenade In G, K. 525: I. Allegro", - "genre": { - "Name": "Classical" - } - }, - "3413": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "Title": "Mozart: Wind Concertos" - }, - "Name": "Concerto for Clarinet in A Major, K. 622: II. Adagio", - "genre": { - "Name": "Classical" - } - }, - "3414": { - "Composer": "Franz Joseph Haydn", - "album": { - "Title": "Haydn: Symphonies 99 - 104" - }, - "Name": "Symphony No. 104 in D Major \"London\": IV. Finale: Spiritoso", - "genre": { - "Name": "Classical" - } - }, - "3416": { - "Composer": "Franz Schubert", - "album": { - "Title": "A Soprano Inspired" - }, - "Name": "Ave Maria", - "genre": { - "Name": "Classical" - } - }, - "3417": { - "Composer": "Giuseppe Verdi", - "album": { - "Title": "Great Opera Choruses" - }, - "Name": "Nabucco: Chorus, \"Va, Pensiero, Sull'ali Dorate\"", - "genre": { - "Name": "Classical" - } - }, - "3420": { - "Composer": "Peter Ilyich Tchaikovsky", - "album": { - "Title": "Tchaikovsky: The Nutcracker" - }, - "Name": "The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy", - "genre": { - "Name": "Classical" - } - }, - "3421": { - "Composer": "Edward Elgar", - "album": { - "Title": "The Last Night of the Proms" - }, - "Name": "Nimrod (Adagio) from Variations On an Original Theme, Op. 36 \"Enigma\"", - "genre": { - "Name": "Classical" - } - }, - "3423": { - "Composer": "Gustav Holst", - "album": { - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies" - }, - "Name": "Jupiter, the Bringer of Jollity", - "genre": { - "Name": "Classical" - } - }, - "3424": { - "Composer": "Giacomo Puccini", - "album": { - "Title": "Pavarotti's Opera Made Easy" - }, - "Name": "Turandot, Act III, Nessun dorma!", - "genre": { - "Name": "Classical" - } - }, - "3425": { - "Composer": "Samuel Barber", - "album": { - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings" - }, - "Name": "Adagio for Strings from the String Quartet, Op. 11", - "genre": { - "Name": "Classical" - } - }, - "3426": { - "Composer": "Carl Orff", - "album": { - "Title": "Carmina Burana" - }, - "Name": "Carmina Burana: O Fortuna", - "genre": { - "Name": "Classical" - } - }, - "3427": { - "Composer": "Aaron Copland", - "album": { - "Title": "A Copland Celebration, Vol. I" - }, - "Name": "Fanfare for the Common Man", - "genre": { - "Name": "Classical" - } - }, - "3428": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "Branch Closing", - "genre": { - "Name": "Comedy" - } - }, - "3429": { - "Composer": null, - "album": { - "Title": "The Office, Season 3" - }, - "Name": "The Return", - "genre": { - "Name": "Comedy" - } - }, - "3430": { - "Composer": "Johann Sebastian Bach", - "album": { - "Title": "Bach: Toccata & Fugue in D Minor" - }, - "Name": "Toccata and Fugue in D Minor, BWV 565: I. Toccata", - "genre": { - "Name": "Classical" - } - }, - "3431": { - "Composer": "Sergei Prokofiev", - "album": { - "Title": "Prokofiev: Symphony No.1" - }, - "Name": "Symphony No.1 in D Major, Op.25 \"Classical\", Allegro Con Brio", - "genre": { - "Name": "Classical" - } - }, - "3432": { - "Composer": "Nikolai Rimsky-Korsakov", - "album": { - "Title": "Scheherazade" - }, - "Name": "Scheherazade, Op. 35: I. The Sea and Sindbad's Ship", - "genre": { - "Name": "Classical" - } - }, - "3433": { - "Composer": "Johann Sebastian Bach", - "album": { - "Title": "Bach: The Brandenburg Concertos" - }, - "Name": "Concerto No.2 in F Major, BWV1047, I. Allegro", - "genre": { - "Name": "Classical" - } - }, - "3435": { - "Composer": "Pietro Mascagni", - "album": { - "Title": "Mascagni: Cavalleria Rusticana" - }, - "Name": "Cavalleria Rusticana \\ Act \\ Intermezzo Sinfonico", - "genre": { - "Name": "Classical" - } - }, - "3436": { - "Composer": "Jean Sibelius", - "album": { - "Title": "Sibelius: Finlandia" - }, - "Name": "Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)", - "genre": { - "Name": "Classical" - } - }, - "3437": { - "Composer": "Ludwig van Beethoven", - "album": { - "Title": "Beethoven Piano Sonatas: Moonlight & Pastorale" - }, - "Name": "Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, \"Moonlight\": I. Adagio sostenuto", - "genre": { - "Name": "Classical" - } - }, - "3438": { - "Composer": "Ralph Vaughan Williams", - "album": { - "Title": "The World of Classical Favourites" - }, - "Name": "Fantasia On Greensleeves", - "genre": { - "Name": "Classical" - } - }, - "3439": { - "Composer": "Gustav Mahler", - "album": { - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde" - }, - "Name": "Das Lied Von Der Erde, Von Der Jugend", - "genre": { - "Name": "Classical" - } - }, - "3441": { - "Composer": "John Adams", - "album": { - "Title": "Adams, John: The Chairman Dances" - }, - "Name": "Two Fanfares for Orchestra: II. Short Ride in a Fast Machine", - "genre": { - "Name": "Classical" - } - }, - "3443": { - "Composer": "Giovanni Pierluigi da Palestrina", - "album": { - "Title": "Palestrina: Missa Papae Marcelli & Allegri: Miserere" - }, - "Name": "Missa Papae Marcelli: Kyrie", - "genre": { - "Name": "Classical" - } - }, - "3444": { - "Composer": null, - "album": { - "Title": "Prokofiev: Romeo & Juliet" - }, - "Name": "Romeo et Juliette: No. 11 - Danse des Chevaliers", - "genre": { - "Name": "Classical" - } - }, - "3445": { - "Composer": "Johann Strauss II", - "album": { - "Title": "Strauss: Waltzes" - }, - "Name": "On the Beautiful Blue Danube", - "genre": { - "Name": "Classical" - } - }, - "3446": { - "Composer": "Hector Berlioz", - "album": { - "Title": "Berlioz: Symphonie Fantastique" - }, - "Name": "Symphonie Fantastique, Op. 14: V. Songe d'une nuit du sabbat", - "genre": { - "Name": "Classical" - } - }, - "3447": { - "Composer": "Georges Bizet", - "album": { - "Title": "Bizet: Carmen Highlights" - }, - "Name": "Carmen: Overture", - "genre": { - "Name": "Classical" - } - }, - "3448": { - "Composer": "Thomas Tallis", - "album": { - "Title": "English Renaissance" - }, - "Name": "Lamentations of Jeremiah, First Set \\ Incipit Lamentatio", - "genre": { - "Name": "Classical" - } - }, - "3452": { - "Composer": null, - "album": { - "Title": "SCRIABIN: Vers la flamme" - }, - "Name": "SCRIABIN: Prelude in B Major, Op. 11, No. 11", - "genre": { - "Name": "Classical" - } - }, - "3453": { - "Composer": "John Dowland", - "album": { - "Title": "Armada: Music from the Courts of England and Spain" - }, - "Name": "Pavan, Lachrimae Antiquae", - "genre": { - "Name": "Classical" - } - }, - "3454": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "Title": "Mozart: Symphonies Nos. 40 & 41" - }, - "Name": "Symphony No. 41 in C Major, K. 551, \"Jupiter\": IV. Molto allegro", - "genre": { - "Name": "Classical" - } - }, - "3455": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "Rehab", - "genre": { - "Name": "R&B/Soul" - } - }, - "3456": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "You Know I'm No Good", - "genre": { - "Name": "R&B/Soul" - } - }, - "3457": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "Me & Mr. Jones", - "genre": { - "Name": "R&B/Soul" - } - }, - "3458": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "Just Friends", - "genre": { - "Name": "R&B/Soul" - } - }, - "3459": { - "Composer": "Mark Ronson", - "album": { - "Title": "Back to Black" - }, - "Name": "Back to Black", - "genre": { - "Name": "R&B/Soul" - } - }, - "3460": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "Love Is a Losing Game", - "genre": { - "Name": "R&B/Soul" - } - }, - "3461": { - "Composer": "Nickolas Ashford & Valerie Simpson", - "album": { - "Title": "Back to Black" - }, - "Name": "Tears Dry On Their Own", - "genre": { - "Name": "R&B/Soul" - } - }, - "3462": { - "Composer": "Paul O'duffy", - "album": { - "Title": "Back to Black" - }, - "Name": "Wake Up Alone", - "genre": { - "Name": "R&B/Soul" - } - }, - "3463": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "Some Unholy War", - "genre": { - "Name": "R&B/Soul" - } - }, - "3464": { - "Composer": "Richard Poindexter & Robert Poindexter", - "album": { - "Title": "Back to Black" - }, - "Name": "He Can Only Hold Her", - "genre": { - "Name": "R&B/Soul" - } - }, - "3465": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "You Know I'm No Good (feat. Ghostface Killah)", - "genre": { - "Name": "R&B/Soul" - } - }, - "3466": { - "Composer": null, - "album": { - "Title": "Back to Black" - }, - "Name": "Rehab (Hot Chip Remix)", - "genre": { - "Name": "R&B/Soul" - } - }, - "3467": { - "Composer": null, - "album": { - "Title": "Frank" - }, - "Name": "Intro / Stronger Than Me", - "genre": { - "Name": "Pop" - } - }, - "3468": { - "Composer": null, - "album": { - "Title": "Frank" - }, - "Name": "You Sent Me Flying / Cherry", - "genre": { - "Name": "Pop" - } - }, - "3469": { - "Composer": "Salaam Remi", - "album": { - "Title": "Frank" - }, - "Name": "F**k Me Pumps", - "genre": { - "Name": "Pop" - } - }, - "3470": { - "Composer": null, - "album": { - "Title": "Frank" - }, - "Name": "I Heard Love Is Blind", - "genre": { - "Name": "Pop" - } - }, - "3471": { - "Composer": "Isham Jones & Marty Symes", - "album": { - "Title": "Frank" - }, - "Name": "(There Is) No Greater Love (Teo Licks)", - "genre": { - "Name": "Pop" - } - }, - "3472": { - "Composer": "Salaam Remi", - "album": { - "Title": "Frank" - }, - "Name": "In My Bed", - "genre": { - "Name": "Pop" - } - }, - "3473": { - "Composer": "Luke Smith", - "album": { - "Title": "Frank" - }, - "Name": "Take the Box", - "genre": { - "Name": "Pop" - } - }, - "3474": { - "Composer": "Matt Rowe & Stefan Skarbek", - "album": { - "Title": "Frank" - }, - "Name": "October Song", - "genre": { - "Name": "Pop" - } - }, - "3475": { - "Composer": "Delroy \"Chris\" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole", - "album": { - "Title": "Frank" - }, - "Name": "What Is It About Men", - "genre": { - "Name": "Pop" - } - }, - "3476": { - "Composer": "Freddy James, Jimmy hogarth & Larry Stock", - "album": { - "Title": "Frank" - }, - "Name": "Help Yourself", - "genre": { - "Name": "Pop" - } - }, - "3477": { - "Composer": "Astor Campbell, Delroy \"Chris\" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek", - "album": { - "Title": "Frank" - }, - "Name": "Amy Amy Amy (Outro)", - "genre": { - "Name": "Pop" - } - }, - "3478": { - "Composer": null, - "album": { - "Title": "Carried to Dust (Bonus Track Version)" - }, - "Name": "Slowness", - "genre": { - "Name": "Alternative" - } - }, - "3479": { - "Composer": "Ludwig van Beethoven", - "album": { - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc." - }, - "Name": "Prometheus Overture, Op. 43", - "genre": { - "Name": "Classical" - } - }, - "3481": { - "Composer": null, - "album": { - "Title": "Mendelssohn: A Midsummer Night's Dream" - }, - "Name": "A Midsummer Night's Dream, Op.61 Incidental Music: No.7 Notturno", - "genre": { - "Name": "Classical" - } - }, - "3482": { - "Composer": "Johann Sebastian Bach", - "album": { - "Title": "Bach: Orchestral Suites Nos. 1 - 4" - }, - "Name": "Suite No. 3 in D, BWV 1068: III. Gavotte I & II", - "genre": { - "Name": "Classical" - } - }, - "3483": { - "Composer": "Marc-Antoine Charpentier", - "album": { - "Title": "Charpentier: Divertissements, Airs & Concerts" - }, - "Name": "Concert pour 4 Parties de V**les, H. 545: I. Prelude", - "genre": { - "Name": "Classical" - } - }, - "3484": { - "Composer": "Astor Piazzolla", - "album": { - "Title": "South American Getaway" - }, - "Name": "Adios nonino", - "genre": { - "Name": "Classical" - } - }, - "3486": { - "Composer": "Henry Purcell", - "album": { - "Title": "Purcell: The Fairy Queen" - }, - "Name": "Act IV, Symphony", - "genre": { - "Name": "Classical" - } - }, - "3488": { - "Composer": "Henry Purcell", - "album": { - "Title": "Purcell: Music for the Queen Mary" - }, - "Name": "Music for the Funeral of Queen Mary: VI. \"Thou Knowest, Lord, the Secrets of Our Hearts\"", - "genre": { - "Name": "Classical" - } - }, - "3490": { - "Composer": "Johann Sebastian Bach", - "album": { - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro" - }, - "Name": "Partita in E Major, BWV 1006A: I. Prelude", - "genre": { - "Name": "Classical" - } - }, - "3491": { - "Composer": "Igor Stravinsky", - "album": { - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps" - }, - "Name": "Le Sacre Du Printemps: I.iv. Spring Rounds", - "genre": { - "Name": "Classical" - } - }, - "3492": { - "Composer": "William Byrd", - "album": { - "Title": "English Renaissance" - }, - "Name": "Sing Joyfully", - "genre": { - "Name": "Classical" - } - }, - "3493": { - "Composer": "Karol Szymanowski", - "album": { - "Title": "Szymanowski: Piano Works, Vol. 1" - }, - "Name": "Metopes, Op. 29: Calypso", - "genre": { - "Name": "Classical" - } - }, - "3497": { - "Composer": null, - "album": { - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder" - }, - "Name": "Erlkonig, D.328", - "genre": { - "Name": "Classical" - } - }, - "3498": { - "Composer": "Pietro Antonio Locatelli", - "album": { - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3" - }, - "Name": "Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro", - "genre": { - "Name": "Classical" - } - }, - "3499": { - "Composer": null, - "album": { - "Title": "Respighi:Pines of Rome" - }, - "Name": "Pini Di Roma (Pinien Von Rom) \\ I Pini Della Via Appia", - "genre": { - "Name": "Classical" - } - }, - "3500": { - "Composer": "Franz Schubert", - "album": { - "Title": "Schubert: The Late String Quartets & String Quintet (3 CD's)" - }, - "Name": "String Quartet No. 12 in C Minor, D. 703 \"Quartettsatz\": II. Andante - Allegro assai", - "genre": { - "Name": "Classical" - } - }, - "3501": { - "Composer": "Claudio Monteverdi", - "album": { - "Title": "Monteverdi: L'Orfeo" - }, - "Name": "L'orfeo, Act 3, Sinfonia (Orchestra)", - "genre": { - "Name": "Classical" - } - }, - "3502": { - "Composer": "Wolfgang Amadeus Mozart", - "album": { - "Title": "Mozart: Chamber Music" - }, - "Name": "Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro", - "genre": { - "Name": "Classical" - } - }, - "3503": { - "Composer": "Philip Glass", - "album": { - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)" - }, - "Name": "Koyaanisqatsi", - "genre": { - "Name": "Soundtrack" - } - } - }, - "f2gt_Artist": { - "1": { - "albums": { - "1": { - "Title": "For Those About To Rock We Salute You" - }, - "4": { - "Title": "Let There Be Rock" - } - }, - "Name": "AC/DC" - }, - "2": { - "albums": { - "2": { - "Title": "Balls to the Wall" - }, - "3": { - "Title": "Restless and Wild" - } - }, - "Name": "Accept" - }, - "3": { - "albums": { - "5": { - "Title": "Big Ones" - } - }, - "Name": "Aerosmith" - }, - "4": { - "albums": { - "6": { - "Title": "Jagged Little Pill" - } - }, - "Name": "Alanis Morissette" - }, - "5": { - "albums": { - "7": { - "Title": "Facelift" - } - }, - "Name": "Alice In Chains" - }, - "7": { - "albums": { - "9": { - "Title": "Plays Metallica By Four Cellos" - } - }, - "Name": "Apocalyptica" - }, - "8": { - "albums": { - "10": { - "Title": "Audioslave" - }, - "11": { - "Title": "Out Of Exile" - }, - "271": { - "Title": "Revelations" - } - }, - "Name": "Audioslave" - }, - "9": { - "albums": { - "12": { - "Title": "BackBeat Soundtrack" - } - }, - "Name": "BackBeat" - }, - "10": { - "albums": { - "13": { - "Title": "The Best Of Billy Cobham" - } - }, - "Name": "Billy Cobham" - }, - "11": { - "albums": { - "14": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 1]" - }, - "15": { - "Title": "Alcohol Fueled Brewtality Live! [Disc 2]" - } - }, - "Name": "Black Label Society" - }, - "12": { - "albums": { - "16": { - "Title": "Black Sabbath" - }, - "17": { - "Title": "Black Sabbath Vol. 4 (Remaster)" - } - }, - "Name": "Black Sabbath" - }, - "13": { - "albums": { - "18": { - "Title": "Body Count" - } - }, - "Name": "Body Count" - }, - "14": { - "albums": { - "19": { - "Title": "Chemical Wedding" - } - }, - "Name": "Bruce Dickinson" - }, - "15": { - "albums": { - "20": { - "Title": "The Best Of Buddy Guy - The Millenium Collection" - } - }, - "Name": "Buddy Guy" - }, - "16": { - "albums": { - "21": { - "Title": "Prenda Minha" - }, - "22": { - "Title": "Sozinho Remix Ao Vivo" - } - }, - "Name": "Caetano Veloso" - }, - "17": { - "albums": { - "23": { - "Title": "Minha Historia" - } - }, - "Name": "Chico Buarque" - }, - "19": { - "albums": { - "27": { - "Title": "Cidade Negra - Hits" - } - }, - "Name": "Cidade Negra" - }, - "21": { - "albums": { - "32": { - "Title": "Carnaval 2001" - }, - "45": { - "Title": "Sambas De Enredo 2001" - }, - "53": { - "Title": "Vozes do MPB" - } - }, - "Name": "Various Artists" - }, - "22": { - "albums": { - "30": { - "Title": "BBC Sessions [Disc 1] [Live]" - }, - "44": { - "Title": "Physical Graffiti [Disc 1]" - }, - "127": { - "Title": "BBC Sessions [Disc 2] [Live]" - }, - "128": { - "Title": "Coda" - }, - "129": { - "Title": "Houses Of The Holy" - }, - "130": { - "Title": "In Through The Out Door" - }, - "131": { - "Title": "IV" - }, - "132": { - "Title": "Led Zeppelin I" - }, - "133": { - "Title": "Led Zeppelin II" - }, - "134": { - "Title": "Led Zeppelin III" - }, - "135": { - "Title": "Physical Graffiti [Disc 2]" - }, - "136": { - "Title": "Presence" - }, - "137": { - "Title": "The Song Remains The Same (Disc 1)" - }, - "138": { - "Title": "The Song Remains The Same (Disc 2)" - } - }, - "Name": "Led Zeppelin" - }, - "23": { - "albums": { - "31": { - "Title": "Bongo Fury" - } - }, - "Name": "Frank Zappa & Captain Beefheart" - }, - "24": { - "albums": { - "33": { - "Title": "Chill: Brazil (Disc 1)" - } - }, - "Name": "Marcos Valle" - }, - "25": { - "albums": {}, - "Name": "Milton Nascimento & Bebeto" - }, - "26": { - "albums": {}, - "Name": "Azymuth" - }, - "27": { - "albums": { - "86": { - "Title": "Quanta Gente Veio Ver (Live)" - } - }, - "Name": "Gilberto Gil" - }, - "29": { - "albums": {}, - "Name": "Bebel Gilberto" - }, - "30": { - "albums": {}, - "Name": "Jorge Vercilo" - }, - "31": { - "albums": {}, - "Name": "Baby Consuelo" - }, - "32": { - "albums": {}, - "Name": "Ney Matogrosso" - }, - "33": { - "albums": {}, - "Name": "Luiz Melodia" - }, - "34": { - "albums": {}, - "Name": "Nando Reis" - }, - "36": { - "albums": { - "259": { - "Title": "Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro" - } - }, - "Name": "O Rappa" - }, - "37": { - "albums": { - "47": { - "Title": "The Best of Ed Motta" - } - }, - "Name": "Ed Motta" - }, - "38": { - "albums": {}, - "Name": "Banda Black Rio" - }, - "39": { - "albums": {}, - "Name": "Fernanda Porto" - }, - "40": { - "albums": {}, - "Name": "Os Cariocas" - }, - "41": { - "albums": {}, - "Name": "Elis Regina" - }, - "42": { - "albums": { - "158": { - "Title": "Milton Nascimento Ao Vivo" - }, - "159": { - "Title": "Minas" - } - }, - "Name": "Milton Nascimento" - }, - "43": { - "albums": {}, - "Name": "A Cor Do Som" - }, - "44": { - "albums": {}, - "Name": "Kid Abelha" - }, - "46": { - "albums": { - "122": { - "Title": "Jorge Ben Jor 25 Anos" - } - }, - "Name": "Jorge Ben" - }, - "47": { - "albums": {}, - "Name": "Hermeto Pascoal" - }, - "49": { - "albums": {}, - "Name": "Edson, DJ Marky & DJ Patife Featuring Fernanda Porto" - }, - "50": { - "albums": { - "35": { - "Title": "Garage Inc. (Disc 1)" - }, - "148": { - "Title": "Black Album" - }, - "149": { - "Title": "Garage Inc. (Disc 2)" - }, - "150": { - "Title": "Kill 'Em All" - }, - "151": { - "Title": "Load" - }, - "152": { - "Title": "Master Of Puppets" - }, - "153": { - "Title": "ReLoad" - }, - "154": { - "Title": "Ride The Lightning" - }, - "155": { - "Title": "St. Anger" - }, - "156": { - "Title": "...And Justice For All" - } - }, - "Name": "Metallica" - }, - "51": { - "albums": { - "36": { - "Title": "Greatest Hits II" - }, - "185": { - "Title": "Greatest Hits I" - }, - "186": { - "Title": "News Of The World" - } - }, - "Name": "Queen" - }, - "52": { - "albums": { - "37": { - "Title": "Greatest Kiss" - }, - "126": { - "Title": "Unplugged [Live]" - } - }, - "Name": "Kiss" - }, - "53": { - "albums": { - "38": { - "Title": "Heart of the Night" - }, - "204": { - "Title": "Morning Dance" - } - }, - "Name": "Spyro Gyra" - }, - "54": { - "albums": { - "39": { - "Title": "International Superhits" - }, - "89": { - "Title": "American Idiot" - } - }, - "Name": "Green Day" - }, - "55": { - "albums": { - "40": { - "Title": "Into The Light" - } - }, - "Name": "David Coverdale" - }, - "56": { - "albums": { - "41": { - "Title": "Meus Momentos" - } - }, - "Name": "Gonzaguinha" - }, - "57": { - "albums": {}, - "Name": "Os Mutantes" - }, - "58": { - "albums": { - "43": { - "Title": "MK III The Final Concerts [Disc 1]" - }, - "50": { - "Title": "The Final Concerts (Disc 2)" - }, - "58": { - "Title": "Come Taste The Band" - }, - "59": { - "Title": "Deep Purple In Rock" - }, - "60": { - "Title": "Fireball" - }, - "61": { - "Title": "Knocking at Your Back Door: The Best Of Deep Purple in the 80's" - }, - "62": { - "Title": "Machine Head" - }, - "63": { - "Title": "Purpendicular" - }, - "64": { - "Title": "Slaves And Masters" - }, - "65": { - "Title": "Stormbringer" - }, - "66": { - "Title": "The Battle Rages On" - } - }, - "Name": "Deep Purple" - }, - "59": { - "albums": { - "46": { - "Title": "Supernatural" - }, - "197": { - "Title": "Santana - As Years Go By" - }, - "198": { - "Title": "Santana Live" - } - }, - "Name": "Santana" - }, - "60": { - "albums": {}, - "Name": "Santana Feat. Dave Matthews" - }, - "61": { - "albums": {}, - "Name": "Santana Feat. Everlast" - }, - "62": { - "albums": {}, - "Name": "Santana Feat. Rob Thomas" - }, - "63": { - "albums": {}, - "Name": "Santana Feat. Lauryn Hill & Cee-Lo" - }, - "64": { - "albums": {}, - "Name": "Santana Feat. The Project G&B" - }, - "66": { - "albums": {}, - "Name": "Santana Feat. Eagle-Eye Cherry" - }, - "67": { - "albums": {}, - "Name": "Santana Feat. Eric Clapton" - }, - "68": { - "albums": { - "48": { - "Title": "The Essential Miles Davis [Disc 1]" - }, - "49": { - "Title": "The Essential Miles Davis [Disc 2]" - }, - "157": { - "Title": "Miles Ahead" - } - }, - "Name": "Miles Davis" - }, - "69": { - "albums": { - "51": { - "Title": "Up An' Atom" - } - }, - "Name": "Gene Krupa" - }, - "75": { - "albums": {}, - "Name": "Vinicius, Toquinho & Quarteto Em Cy" - }, - "76": { - "albums": { - "54": { - "Title": "Chronicle, Vol. 1" - }, - "55": { - "Title": "Chronicle, Vol. 2" - } - }, - "Name": "Creedence Clearwater Revival" - }, - "78": { - "albums": { - "67": { - "Title": "Vault: Def Leppard's Greatest Hits" - } - }, - "Name": "Def Leppard" - }, - "79": { - "albums": { - "68": { - "Title": "Outbreak" - } - }, - "Name": "Dennis Chambers" - }, - "80": { - "albums": { - "69": { - "Title": "Djavan Ao Vivo - Vol. 02" - }, - "70": { - "Title": "Djavan Ao Vivo - Vol. 1" - } - }, - "Name": "Djavan" - }, - "81": { - "albums": { - "72": { - "Title": "The Cream Of Clapton" - }, - "73": { - "Title": "Unplugged" - } - }, - "Name": "Eric Clapton" - }, - "82": { - "albums": { - "74": { - "Title": "Album Of The Year" - }, - "75": { - "Title": "Angel Dust" - }, - "76": { - "Title": "King For A Day Fool For A Lifetime" - }, - "77": { - "Title": "The Real Thing" - } - }, - "Name": "Faith No More" - }, - "83": { - "albums": { - "78": { - "Title": "Deixa Entrar" - } - }, - "Name": "Falamansa" - }, - "84": { - "albums": { - "79": { - "Title": "In Your Honor [Disc 1]" - }, - "80": { - "Title": "In Your Honor [Disc 2]" - }, - "81": { - "Title": "One By One" - }, - "82": { - "Title": "The Colour And The Shape" - } - }, - "Name": "Foo Fighters" - }, - "85": { - "albums": { - "83": { - "Title": "My Way: The Best Of Frank Sinatra [Disc 1]" - } - }, - "Name": "Frank Sinatra" - }, - "86": { - "albums": { - "84": { - "Title": "Roda De Funk" - } - }, - "Name": "Funk Como Le Gusta" - }, - "87": { - "albums": { - "88": { - "Title": "Faceless" - } - }, - "Name": "Godsmack" - }, - "88": { - "albums": { - "90": { - "Title": "Appetite for Destruction" - }, - "91": { - "Title": "Use Your Illusion I" - }, - "92": { - "Title": "Use Your Illusion II" - } - }, - "Name": "Guns N' Roses" - }, - "89": { - "albums": { - "93": { - "Title": "Blue Moods" - } - }, - "Name": "Incognito" - }, - "90": { - "albums": { - "94": { - "Title": "A Matter of Life and Death" - }, - "95": { - "Title": "A Real Dead One" - }, - "96": { - "Title": "A Real Live One" - }, - "97": { - "Title": "Brave New World" - }, - "98": { - "Title": "Dance Of Death" - }, - "99": { - "Title": "Fear Of The Dark" - }, - "100": { - "Title": "Iron Maiden" - }, - "101": { - "Title": "Killers" - }, - "102": { - "Title": "Live After Death" - }, - "103": { - "Title": "Live At Donington 1992 (Disc 1)" - }, - "104": { - "Title": "Live At Donington 1992 (Disc 2)" - }, - "105": { - "Title": "No Prayer For The Dying" - }, - "106": { - "Title": "Piece Of Mind" - }, - "107": { - "Title": "Powerslave" - }, - "108": { - "Title": "Rock In Rio [CD1]" - }, - "109": { - "Title": "Rock In Rio [CD2]" - }, - "110": { - "Title": "Seventh Son of a Seventh Son" - }, - "111": { - "Title": "Somewhere in Time" - }, - "112": { - "Title": "The Number of The Beast" - }, - "113": { - "Title": "The X Factor" - }, - "114": { - "Title": "Virtual XI" - } - }, - "Name": "Iron Maiden" - }, - "91": { - "albums": { - "115": { - "Title": "Sex Machine" - } - }, - "Name": "James Brown" - }, - "92": { - "albums": { - "116": { - "Title": "Emergency On Planet Earth" - }, - "117": { - "Title": "Synkronized" - }, - "118": { - "Title": "The Return Of The Space Cowboy" - } - }, - "Name": "Jamiroquai" - }, - "93": { - "albums": { - "119": { - "Title": "Get Born" - } - }, - "Name": "JET" - }, - "94": { - "albums": { - "120": { - "Title": "Are You Experienced?" - } - }, - "Name": "Jimi Hendrix" - }, - "95": { - "albums": { - "121": { - "Title": "Surfing with the Alien (Remastered)" - } - }, - "Name": "Joe Satriani" - }, - "96": { - "albums": { - "123": { - "Title": "Jota Quest-1995" - } - }, - "Name": "Jota Quest" - }, - "98": { - "albums": { - "125": { - "Title": "Living After Midnight" - } - }, - "Name": "Judas Priest" - }, - "100": { - "albums": { - "141": { - "Title": "Greatest Hits" - } - }, - "Name": "Lenny Kravitz" - }, - "101": { - "albums": {}, - "Name": "Lulu Santos" - }, - "102": { - "albums": { - "144": { - "Title": "Misplaced Childhood" - } - }, - "Name": "Marillion" - }, - "103": { - "albums": { - "145": { - "Title": "Barulhinho Bom" - } - }, - "Name": "Marisa Monte" - }, - "104": { - "albums": { - "146": { - "Title": "Seek And Shall Find: More Of The Best (1963-1981)" - } - }, - "Name": "Marvin Gaye" - }, - "105": { - "albums": { - "147": { - "Title": "The Best Of Men At Work" - } - }, - "Name": "Men At Work" - }, - "110": { - "albums": { - "163": { - "Title": "From The Muddy Banks Of The Wishkah [Live]" - }, - "164": { - "Title": "Nevermind" - } - }, - "Name": "Nirvana" - }, - "112": { - "albums": { - "166": { - "Title": "Olodum" - } - }, - "Name": "Olodum" - }, - "113": { - "albums": { - "168": { - "Title": "Arquivo II" - }, - "169": { - "Title": "Arquivo Os Paralamas Do Sucesso" - } - }, - "Name": "Os Paralamas Do Sucesso" - }, - "114": { - "albums": { - "170": { - "Title": "Bark at the Moon (Remastered)" - }, - "171": { - "Title": "Blizzard of Ozz" - }, - "172": { - "Title": "Diary of a Madman (Remastered)" - }, - "173": { - "Title": "No More Tears (Remastered)" - }, - "174": { - "Title": "Tribute" - }, - "256": { - "Title": "Speak of the Devil" - } - }, - "Name": "Ozzy Osbourne" - }, - "115": { - "albums": { - "175": { - "Title": "Walking Into Clarksdale" - } - }, - "Name": "Page & Plant" - }, - "116": { - "albums": { - "176": { - "Title": "Original Soundtracks 1" - } - }, - "Name": "Passengers" - }, - "117": { - "albums": { - "177": { - "Title": "The Beast Live" - } - }, - "Name": "Paul D'Ianno" - }, - "118": { - "albums": { - "178": { - "Title": "Live On Two Legs [Live]" - }, - "179": { - "Title": "Pearl Jam" - }, - "180": { - "Title": "Riot Act" - }, - "181": { - "Title": "Ten" - }, - "182": { - "Title": "Vs." - } - }, - "Name": "Pearl Jam" - }, - "119": { - "albums": {}, - "Name": "Peter Tosh" - }, - "120": { - "albums": { - "183": { - "Title": "Dark Side Of The Moon" - } - }, - "Name": "Pink Floyd" - }, - "121": { - "albums": {}, - "Name": "Planet Hemp" - }, - "122": { - "albums": { - "187": { - "Title": "Out Of Time" - } - }, - "Name": "R.E.M. Feat. Kate Pearson" - }, - "123": { - "albums": {}, - "Name": "R.E.M. Feat. KRS-One" - }, - "124": { - "albums": { - "188": { - "Title": "Green" - }, - "189": { - "Title": "New Adventures In Hi-Fi" - }, - "190": { - "Title": "The Best Of R.E.M.: The IRS Years" - } - }, - "Name": "R.E.M." - }, - "125": { - "albums": {}, - "Name": "Raimundos" - }, - "126": { - "albums": { - "192": { - "Title": "Raul Seixas" - } - }, - "Name": "Raul Seixas" - }, - "127": { - "albums": { - "193": { - "Title": "Blood Sugar Sex Magik" - }, - "194": { - "Title": "By The Way" - }, - "195": { - "Title": "Californication" - } - }, - "Name": "Red Hot Chili Peppers" - }, - "128": { - "albums": { - "196": { - "Title": "Retrospective I (1974-1980)" - } - }, - "Name": "Rush" - }, - "129": { - "albums": {}, - "Name": "Simply Red" - }, - "130": { - "albums": { - "199": { - "Title": "Maquinarama" - } - }, - "Name": "Skank" - }, - "131": { - "albums": { - "201": { - "Title": "Judas 0: B-Sides and Rarities" - }, - "202": { - "Title": "Rotten Apples: Greatest Hits" - } - }, - "Name": "Smashing Pumpkins" - }, - "132": { - "albums": { - "203": { - "Title": "A-Sides" - } - }, - "Name": "Soundgarden" - }, - "133": { - "albums": { - "205": { - "Title": "In Step" - } - }, - "Name": "Stevie Ray Vaughan & Double Trouble" - }, - "134": { - "albums": { - "206": { - "Title": "Core" - } - }, - "Name": "Stone Temple Pilots" - }, - "135": { - "albums": { - "207": { - "Title": "Mezmerize" - } - }, - "Name": "System Of A Down" - }, - "136": { - "albums": { - "208": { - "Title": "[1997] Black Light Syndrome" - } - }, - "Name": "Terry Bozzio, Tony Levin & Steve Stevens" - }, - "137": { - "albums": { - "209": { - "Title": "Live [Disc 1]" - }, - "210": { - "Title": "Live [Disc 2]" - } - }, - "Name": "The Black Crowes" - }, - "138": { - "albums": { - "211": { - "Title": "The Singles" - } - }, - "Name": "The Clash" - }, - "139": { - "albums": { - "212": { - "Title": "Beyond Good And Evil" - }, - "213": { - "Title": "Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) [UK]" - } - }, - "Name": "The Cult" - }, - "140": { - "albums": { - "214": { - "Title": "The Doors" - } - }, - "Name": "The Doors" - }, - "141": { - "albums": { - "215": { - "Title": "The Police Greatest Hits" - } - }, - "Name": "The Police" - }, - "142": { - "albums": { - "216": { - "Title": "Hot Rocks, 1964-1971 (Disc 1)" - }, - "217": { - "Title": "No Security" - }, - "218": { - "Title": "Voodoo Lounge" - } - }, - "Name": "The Rolling Stones" - }, - "143": { - "albums": { - "219": { - "Title": "Tangents" - }, - "220": { - "Title": "Transmission" - } - }, - "Name": "The Tea Party" - }, - "144": { - "albums": { - "221": { - "Title": "My Generation - The Very Best Of The Who" - } - }, - "Name": "The Who" - }, - "145": { - "albums": { - "222": { - "Title": "Serie Sem Limite (Disc 1)" - }, - "223": { - "Title": "Serie Sem Limite (Disc 2)" - } - }, - "Name": "Tim Maia" - }, - "147": { - "albums": { - "226": { - "Title": "Battlestar Galactica: The Story So Far" - }, - "227": { - "Title": "Battlestar Galactica, Season 3" - } - }, - "Name": "Battlestar Galactica" - }, - "148": { - "albums": { - "228": { - "Title": "Heroes, Season 1" - } - }, - "Name": "Heroes" - }, - "149": { - "albums": { - "229": { - "Title": "Lost, Season 3" - }, - "230": { - "Title": "Lost, Season 1" - }, - "231": { - "Title": "Lost, Season 2" - }, - "261": { - "Title": "LOST, Season 4" - } - }, - "Name": "Lost" - }, - "150": { - "albums": { - "232": { - "Title": "Achtung Baby" - }, - "233": { - "Title": "All That You Can't Leave Behind" - }, - "234": { - "Title": "B-Sides 1980-1990" - }, - "235": { - "Title": "How To Dismantle An Atomic Bomb" - }, - "236": { - "Title": "Pop" - }, - "237": { - "Title": "Rattle And Hum" - }, - "238": { - "Title": "The Best Of 1980-1990" - }, - "239": { - "Title": "War" - }, - "240": { - "Title": "Zooropa" - }, - "255": { - "Title": "Instant Karma: The Amnesty International Campaign to Save Darfur" - } - }, - "Name": "U2" - }, - "151": { - "albums": { - "241": { - "Title": "UB40 The Best Of - Volume Two [UK]" - } - }, - "Name": "UB40" - }, - "152": { - "albums": { - "242": { - "Title": "Diver Down" - }, - "243": { - "Title": "The Best Of Van Halen, Vol. I" - }, - "244": { - "Title": "Van Halen" - }, - "245": { - "Title": "Van Halen III" - } - }, - "Name": "Van Halen" - }, - "153": { - "albums": { - "246": { - "Title": "Contraband" - } - }, - "Name": "Velvet Revolver" - }, - "154": { - "albums": {}, - "Name": "Whitesnake" - }, - "155": { - "albums": { - "248": { - "Title": "Ao Vivo [IMPORT]" - } - }, - "Name": "Zeca Pagodinho" - }, - "156": { - "albums": { - "249": { - "Title": "The Office, Season 1" - }, - "250": { - "Title": "The Office, Season 2" - }, - "251": { - "Title": "The Office, Season 3" - } - }, - "Name": "The Office" - }, - "157": { - "albums": { - "252": { - "Title": "Un-Led-Ed" - } - }, - "Name": "Dread Zeppelin" - }, - "158": { - "albums": { - "253": { - "Title": "Battlestar Galactica (Classic), Season 1" - } - }, - "Name": "Battlestar Galactica (Classic)" - }, - "159": { - "albums": { - "254": { - "Title": "Aquaman" - } - }, - "Name": "Aquaman" - }, - "160": { - "albums": {}, - "Name": "Christina Aguilera featuring BigElf" - }, - "161": { - "albums": {}, - "Name": "Aerosmith & Sierra Leone's Refugee Allstars" - }, - "162": { - "albums": {}, - "Name": "Los Lonely Boys" - }, - "163": { - "albums": {}, - "Name": "Corinne Bailey Rae" - }, - "164": { - "albums": {}, - "Name": "Dhani Harrison & Jakob Dylan" - }, - "165": { - "albums": {}, - "Name": "Jackson Browne" - }, - "166": { - "albums": {}, - "Name": "Avril Lavigne" - }, - "167": { - "albums": {}, - "Name": "Big & Rich" - }, - "168": { - "albums": {}, - "Name": "Youssou N'Dour" - }, - "169": { - "albums": {}, - "Name": "Black Eyed Peas" - }, - "170": { - "albums": {}, - "Name": "Jack Johnson" - }, - "171": { - "albums": {}, - "Name": "Ben Harper" - }, - "172": { - "albums": {}, - "Name": "Snow Patrol" - }, - "173": { - "albums": {}, - "Name": "Matisyahu" - }, - "174": { - "albums": {}, - "Name": "The Postal Service" - }, - "175": { - "albums": {}, - "Name": "Jaguares" - }, - "176": { - "albums": {}, - "Name": "The Flaming Lips" - }, - "177": { - "albums": {}, - "Name": "Jack's Mannequin & Mick Fleetwood" - }, - "178": { - "albums": {}, - "Name": "Regina Spektor" - }, - "179": { - "albums": { - "257": { - "Title": "20th Century Masters - The Millennium Collection: The Best of Scorpions" - } - }, - "Name": "Scorpions" - }, - "180": { - "albums": { - "258": { - "Title": "House of Pain" - } - }, - "Name": "House Of Pain" - }, - "181": { - "albums": {}, - "Name": "Xis" - }, - "182": { - "albums": {}, - "Name": "Nega Gizza" - }, - "183": { - "albums": {}, - "Name": "Gustavo & Andres Veiga & Salazar" - }, - "184": { - "albums": {}, - "Name": "Rodox" - }, - "185": { - "albums": {}, - "Name": "Charlie Brown Jr." - }, - "187": { - "albums": {}, - "Name": "Los Hermanos" - }, - "188": { - "albums": {}, - "Name": "Mundo Livre S/A" - }, - "189": { - "albums": {}, - "Name": "Otto" - }, - "190": { - "albums": {}, - "Name": "Instituto" - }, - "192": { - "albums": {}, - "Name": "DJ Dolores & Orchestra Santa Massa" - }, - "193": { - "albums": {}, - "Name": "Seu Jorge" - }, - "194": { - "albums": {}, - "Name": "Sabotage E Instituto" - }, - "195": { - "albums": {}, - "Name": "Stereo Maracana" - }, - "196": { - "albums": { - "260": { - "Title": "Cake: B-Sides and Rarities" - } - }, - "Name": "Cake" - }, - "197": { - "albums": { - "262": { - "Title": "Quiet Songs" - } - }, - "Name": "Aisha Duo" - }, - "199": { - "albums": { - "264": { - "Title": "Realize" - } - }, - "Name": "Karsh Kale" - }, - "200": { - "albums": { - "265": { - "Title": "Every Kind of Light" - } - }, - "Name": "The Posies" - }, - "201": { - "albums": { - "266": { - "Title": "Duos II" - } - }, - "Name": "Luciana Souza/Romero Lubambo" - }, - "202": { - "albums": { - "267": { - "Title": "Worlds" - } - }, - "Name": "Aaron Goldberg" - }, - "203": { - "albums": { - "268": { - "Title": "The Best of Beethoven" - } - }, - "Name": "Nicolaus Esterhazy Sinfonia" - }, - "204": { - "albums": { - "269": { - "Title": "Temple of the Dog" - } - }, - "Name": "Temple of the Dog" - }, - "205": { - "albums": { - "270": { - "Title": "Carry On" - } - }, - "Name": "Chris Cornell" - }, - "206": { - "albums": { - "272": { - "Title": "Adorate Deum: Gregorian Chant from the Proper of the Mass" - } - }, - "Name": "Alberto Turco & Nova Schola Gregoriana" - }, - "207": { - "albums": { - "273": { - "Title": "Allegri: Miserere" - } - }, - "Name": "Richard Marlow & The Choir of Trinity College, Cambridge" - }, - "208": { - "albums": { - "274": { - "Title": "Pachelbel: Canon & Gigue" - }, - "315": { - "Title": "Handel: Music for the Royal Fireworks (Original Version 1749)" - } - }, - "Name": "English Concert & Trevor Pinnock" - }, - "209": { - "albums": { - "275": { - "Title": "Vivaldi: The Four Seasons" - } - }, - "Name": "Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker" - }, - "210": { - "albums": { - "276": { - "Title": "Bach: Violin Concertos" - } - }, - "Name": "Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer" - }, - "211": { - "albums": { - "277": { - "Title": "Bach: Goldberg Variations" - } - }, - "Name": "Wilhelm Kempff" - }, - "212": { - "albums": { - "278": { - "Title": "Bach: The Cello Suites" - } - }, - "Name": "Yo-Yo Ma" - }, - "213": { - "albums": { - "279": { - "Title": "Handel: The Messiah (Highlights)" - } - }, - "Name": "Scholars Baroque Ensemble" - }, - "214": { - "albums": { - "280": { - "Title": "The World of Classical Favourites" - } - }, - "Name": "Academy of St. Martin in the Fields & Sir Neville Marriner" - }, - "215": { - "albums": { - "281": { - "Title": "Sir Neville Marriner: A Celebration" - } - }, - "Name": "Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner" - }, - "216": { - "albums": { - "282": { - "Title": "Mozart: Wind Concertos" - } - }, - "Name": "Berliner Philharmoniker, Claudio Abbado & Sabine Meyer" - }, - "217": { - "albums": { - "283": { - "Title": "Haydn: Symphonies 99 - 104" - } - }, - "Name": "Royal Philharmonic Orchestra & Sir Thomas Beecham" - }, - "219": { - "albums": { - "285": { - "Title": "A Soprano Inspired" - } - }, - "Name": "Britten Sinfonia, Ivor Bolton & Lesley Garrett" - }, - "220": { - "albums": { - "286": { - "Title": "Great Opera Choruses" - } - }, - "Name": "Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti" - }, - "221": { - "albums": { - "287": { - "Title": "Wagner: Favourite Overtures" - } - }, - "Name": "Sir Georg Solti & Wiener Philharmoniker" - }, - "222": { - "albums": {}, - "Name": "Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair" - }, - "223": { - "albums": { - "289": { - "Title": "Tchaikovsky: The Nutcracker" - } - }, - "Name": "London Symphony Orchestra & Sir Charles Mackerras" - }, - "224": { - "albums": { - "290": { - "Title": "The Last Night of the Proms" - } - }, - "Name": "Barry Wordsworth & BBC Concert Orchestra" - }, - "225": { - "albums": { - "291": { - "Title": "Puccini: Madama Butterfly - Highlights" - } - }, - "Name": "Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker" - }, - "226": { - "albums": { - "292": { - "Title": "Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies" - }, - "311": { - "Title": "Strauss: Waltzes" - }, - "343": { - "Title": "Respighi:Pines of Rome" - } - }, - "Name": "Eugene Ormandy" - }, - "227": { - "albums": { - "293": { - "Title": "Pavarotti's Opera Made Easy" - } - }, - "Name": "Luciano Pavarotti" - }, - "228": { - "albums": { - "294": { - "Title": "Great Performances - Barber's Adagio and Other Romantic Favorites for Strings" - } - }, - "Name": "Leonard Bernstein & New York Philharmonic" - }, - "229": { - "albums": { - "295": { - "Title": "Carmina Burana" - } - }, - "Name": "Boston Symphony Orchestra & Seiji Ozawa" - }, - "230": { - "albums": { - "296": { - "Title": "A Copland Celebration, Vol. I" - } - }, - "Name": "Aaron Copland & London Symphony Orchestra" - }, - "231": { - "albums": { - "297": { - "Title": "Bach: Toccata & Fugue in D Minor" - } - }, - "Name": "Ton Koopman" - }, - "232": { - "albums": { - "298": { - "Title": "Prokofiev: Symphony No.1" - } - }, - "Name": "Sergei Prokofiev & Yuri Temirkanov" - }, - "233": { - "albums": { - "299": { - "Title": "Scheherazade" - } - }, - "Name": "Chicago Symphony Orchestra & Fritz Reiner" - }, - "234": { - "albums": { - "300": { - "Title": "Bach: The Brandenburg Concertos" - } - }, - "Name": "Orchestra of The Age of Enlightenment" - }, - "235": { - "albums": { - "301": { - "Title": "Chopin: Piano Concertos Nos. 1 & 2" - } - }, - "Name": "Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra" - }, - "236": { - "albums": { - "302": { - "Title": "Mascagni: Cavalleria Rusticana" - } - }, - "Name": "James Levine" - }, - "237": { - "albums": { - "303": { - "Title": "Sibelius: Finlandia" - } - }, - "Name": "Berliner Philharmoniker & Hans Rosbaud" - }, - "238": { - "albums": { - "304": { - "Title": "Beethoven Piano Sonatas: Moonlight & Pastorale" - } - }, - "Name": "Maurizio Pollini" - }, - "239": { - "albums": {}, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett" - }, - "240": { - "albums": { - "305": { - "Title": "Great Recordings of the Century - Mahler: Das Lied von der Erde" - } - }, - "Name": "Gustav Mahler" - }, - "242": { - "albums": { - "307": { - "Title": "Adams, John: The Chairman Dances" - } - }, - "Name": "Edo de Waart & San Francisco Symphony" - }, - "244": { - "albums": { - "309": { - "Title": "Palestrina: Missa Papae Marcelli & Allegri: Miserere" - } - }, - "Name": "Choir Of Westminster Abbey & Simon Preston" - }, - "245": { - "albums": { - "310": { - "Title": "Prokofiev: Romeo & Juliet" - }, - "312": { - "Title": "Berlioz: Symphonie Fantastique" - } - }, - "Name": "Michael Tilson Thomas & San Francisco Symphony" - }, - "246": { - "albums": { - "313": { - "Title": "Bizet: Carmen Highlights" - } - }, - "Name": "Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker" - }, - "247": { - "albums": { - "314": { - "Title": "English Renaissance" - } - }, - "Name": "The King's Singers" - }, - "248": { - "albums": { - "320": { - "Title": "Mozart: Symphonies Nos. 40 & 41" - }, - "336": { - "Title": "Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps" - } - }, - "Name": "Berliner Philharmoniker & Herbert Von Karajan" - }, - "249": { - "albums": { - "317": { - "Title": "Mozart Gala: Famous Arias" - } - }, - "Name": "Sir Georg Solti, Sumi Jo & Wiener Philharmoniker" - }, - "250": { - "albums": { - "318": { - "Title": "SCRIABIN: Vers la flamme" - } - }, - "Name": "Christopher O'Riley" - }, - "251": { - "albums": { - "319": { - "Title": "Armada: Music from the Courts of England and Spain" - } - }, - "Name": "Fretwork" - }, - "252": { - "albums": { - "321": { - "Title": "Back to Black" - }, - "322": { - "Title": "Frank" - } - }, - "Name": "Amy Winehouse" - }, - "253": { - "albums": { - "323": { - "Title": "Carried to Dust (Bonus Track Version)" - } - }, - "Name": "Calexico" - }, - "254": { - "albums": { - "324": { - "Title": "Beethoven: Symphony No. 6 'Pastoral' Etc." - } - }, - "Name": "Otto Klemperer & Philharmonia Orchestra" - }, - "255": { - "albums": { - "325": { - "Title": "Bartok: Violin & Viola Concertos" - } - }, - "Name": "Yehudi Menuhin" - }, - "256": { - "albums": { - "326": { - "Title": "Mendelssohn: A Midsummer Night's Dream" - } - }, - "Name": "Philharmonia Orchestra & Sir Neville Marriner" - }, - "257": { - "albums": { - "327": { - "Title": "Bach: Orchestral Suites Nos. 1 - 4" - } - }, - "Name": "Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart" - }, - "258": { - "albums": { - "328": { - "Title": "Charpentier: Divertissements, Airs & Concerts" - } - }, - "Name": "Les Arts Florissants & William Christie" - }, - "259": { - "albums": { - "329": { - "Title": "South American Getaway" - } - }, - "Name": "The 12 Cellists of The Berlin Philharmonic" - }, - "260": { - "albums": {}, - "Name": "Adrian Leaper & Doreen de Feis" - }, - "261": { - "albums": { - "331": { - "Title": "Purcell: The Fairy Queen" - } - }, - "Name": "Roger Norrington, London Classical Players" - }, - "263": { - "albums": { - "333": { - "Title": "Purcell: Music for the Queen Mary" - } - }, - "Name": "Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir" - }, - "265": { - "albums": { - "335": { - "Title": "J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro" - } - }, - "Name": "Julian Bream" - }, - "266": { - "albums": { - "337": { - "Title": "Szymanowski: Piano Works, Vol. 1" - } - }, - "Name": "Martin Roscoe" - }, - "268": { - "albums": { - "339": { - "Title": "Great Recordings of the Century: Paganini's 24 Caprices" - } - }, - "Name": "Itzhak Perlman" - }, - "269": { - "albums": {}, - "Name": "Michele Campanella" - }, - "270": { - "albums": { - "341": { - "Title": "Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder" - } - }, - "Name": "Gerald Moore" - }, - "271": { - "albums": { - "342": { - "Title": "Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3" - } - }, - "Name": "Mela Tenenbaum, Pro Musica Prague & Richard Kapp" - }, - "272": { - "albums": { - "344": { - "Title": "Schubert: The Late String Quartets & String Quintet (3 CD's)" - } - }, - "Name": "Emerson String Quartet" - }, - "273": { - "albums": { - "345": { - "Title": "Monteverdi: L'Orfeo" - } - }, - "Name": "C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu" - }, - "274": { - "albums": { - "346": { - "Title": "Mozart: Chamber Music" - } - }, - "Name": "Nash Ensemble" - }, - "275": { - "albums": { - "347": { - "Title": "Koyaanisqatsi (Soundtrack from the Motion Picture)" - } - }, - "Name": "Philip Glass Ensemble" - } - } -} \ No newline at end of file diff --git a/community/tools/firebase2graphql/test/data-sets/fbUsers.js b/community/tools/firebase2graphql/test/data-sets/fbUsers.js deleted file mode 100644 index a57b10155c4..00000000000 --- a/community/tools/firebase2graphql/test/data-sets/fbUsers.js +++ /dev/null @@ -1,136 +0,0 @@ -module.exports = { - f2g_test_scores: { - Rishi: 24, - Rikin: 26, - Tanmai: 27, - }, - f2g_test_author: { - someone: { - one: { - name: 'Rishi', - age: 24, - articles: { - first: { - title: 'Rishis article', - body: "Rishi's article's body", - comments: { - 'Comment 1': true, - 'Comment 2': true, - }, - }, - second: { - title: 'Rishis another article', - body: "Rishi's another article's body", - comments: { - 'Comment 3': true, - }, - }, - }, - friends: { - Rikin: true, - }, - }, - two: { - name: 'Rikin', - age: 30, - articles: { - third: { - title: "Rikin's article", - body: "Rikin's article's body", - comments: { - 'Comment 4': true, - 'Comment 5': true, - }, - }, - fourth: { - title: 'Rikins another article', - body: "Rikin's another article's body", - comments: { - 'Comment 6': true, - 'Comment df': true, - }, - }, - }, - friends: { - Rishi: true, - Tanmai: true, - }, - }, - three: { - name: 'Tanmai', - age: 30, - articles: { - fifth: { - title: "Tanmai's article", - body: "Tanmai's article's body", - comments: { - 'Comment asdjf': true, - 'Comment dsiafjijf': true, - }, - }, - sixth: { - title: "Tanmai's another article", - body: "Tanmai's another article's body", - comments: { - 'Coafsdfment asdjf': true, - 'Commenasdft dsiafjijf': true, - }, - }, - }, - friends: { - Rikin: true, - }, - }, - }, - }, - f2g_test_articles: { - first: { - title: 'Rishis article', - body: "Rishi's article's body", - author: { - name: 'Rishi', - age: 24, - }, - }, - second: { - title: 'Rishis another article', - body: "Rishi's another article's body", - author: { - name: 'Rishi', - age: 24, - }, - }, - third: { - title: "Rikin's article", - body: "Rikin's article's body", - author: { - name: 'Rikin', - age: 30, - }, - }, - fourth: { - title: 'Rikins another article', - body: "Rikin's another article's body", - author: { - name: 'Rikin', - age: 30, - }, - }, - fifth: { - title: "Tanmai's article", - body: "Tanmai's article's body", - author: { - name: 'Tanmai', - age: 30, - }, - }, - sixth: { - title: "Tanmai's another article", - body: "Tanmai's another article's body", - author: { - name: 'Tanmai', - age: 30, - }, - }, - }, -}; diff --git a/community/tools/firebase2graphql/test/data-sets/readme-example-1.json b/community/tools/firebase2graphql/test/data-sets/readme-example-1.json deleted file mode 100644 index f6073f38ee0..00000000000 --- a/community/tools/firebase2graphql/test/data-sets/readme-example-1.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "f2g_Articles": { - "A1": { - "Title": "Title1", - "Body": "Body1", - "IsUnpublished": false, - "Author": { - "Name": "AName1", - "Age": 11 - }, - "Comments": { - "C1": { - "Body": "Comment1", - "Author": { - "Name": "AName2", - "Sex": "M" - }, - "Date": "22-09-2018" - }, - "C2": { - "Body": "Comment2", - "Author": { - "Name": "AName1", - "Sex": "F" - }, - "Date": "21-09-2018" - } - } - }, - "A2": { - "Title": "Title2", - "Body": "Body2", - "IsUnpublished": true, - "Author": { - "Name": "AName2", - "Age": 22 - }, - "Comments": { - "C3": { - "Body": "Comment1", - "Author": { - "Name": "AName1", - "Sex": "F" - }, - "Date": "23-09-2018" - }, - "C4": { - "Body": "Comment2", - "Author": { - "Name": "AName2", - "Sex": "M" - }, - "Date": "24-09-2018" - } - } - } - }, - "f2g_test_Authors": { - "AT1": { - "Name": "AName1", - "Age": 11, - "Sex": "F", - "Articles": { - "A1": { - "Title": "Title1" - } - } - }, - "AT2": { - "Name": "AName2", - "Age": 22, - "Sex": "M", - "Articles": { - "A2": { - "Title": "Title2" - } - } - } - }, - "f2g_test_Comments": { - "C1": { - "Body": "Comment1", - "Author": { - "Name": "AName2" - }, - "Date": "22-09-2018" - }, - "C2": { - "Body": "Comment2", - "Author": { - "Name": "AName1" - }, - "Date": "21-09-2018" - }, - "C3": { - "Body": "Comment1", - "Author": { - "Name": "AName1" - }, - "Date": "23-09-2018" - }, - "C4": { - "Body": "Comment2", - "Author": { - "Name": "AName2" - }, - "Date": "24-09-2018" - } - } -} \ No newline at end of file diff --git a/community/tools/firebase2graphql/test/test.sh b/community/tools/firebase2graphql/test/test.sh deleted file mode 100755 index fd19bee26b3..00000000000 --- a/community/tools/firebase2graphql/test/test.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -if [ -z "$TEST_HGE_URL" ] && [ -z "$TEST_X_HASURA_ADMIN_SECRET" ]; then - echo "ERROR: Please run the test command with the environment variable TEST_HGE_URL" -else - F2G_LOG=0 ../bin/run $TEST_HGE_URL --admin-secret=$TEST_X_HASURA_ADMIN_SECRET --db=./data-sets/chinook.json --overwrite --normalize && node verifyChinook.js - F2G_LOG=0 ../bin/run $TEST_HGE_URL --admin-secret=$TEST_X_HASURA_ADMIN_SECRET --db=./data-sets/blog.json --overwrite --normalize && node verifyBlog.js - F2G_LOG=0 ../bin/run $TEST_HGE_URL --admin-secret=$TEST_X_HASURA_ADMIN_SECRET --db=./data-sets/chinook_nested.json --overwrite --normalize && node verifyChinookNested.js - F2G_LOG=0 ../bin/run $TEST_HGE_URL --admin-secret=$TEST_X_HASURA_ADMIN_SECRET --db=./data-sets/readme-example-1.json --overwrite --normalize && node verifyRE1.js -fi diff --git a/community/tools/firebase2graphql/test/verifyBlog.js b/community/tools/firebase2graphql/test/verifyBlog.js deleted file mode 100644 index de9d32a5ad7..00000000000 --- a/community/tools/firebase2graphql/test/verifyBlog.js +++ /dev/null @@ -1,62 +0,0 @@ -const {query} = require('graphqurl'); -const fetch = require('node-fetch'); -const colors = require('colors/safe'); - -const complexQuery = ` -query { - f2g_test_posts (order_by: {title:asc}) { - title - } - f2g_test_users (order_by: {username:asc}) { - username - } - f2g_test_user_posts (order_by:{title:asc}){ - author - title - } -} -`; - -const verifyDataImport = () => { - query({ - query: complexQuery, - endpoint: `${process.env.TEST_HGE_URL}/v1/graphql`, - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - }).then(response => { - if ( - response.data.f2g_test_posts[0].title === 'My first post' && - response.data.f2g_test_users[0].username === 'Eena' && - response.data.f2g_test_user_posts[1].title === 'Whatta proaaa' - ) { - let sqlString = ''; - ['f2g_test_users', 'f2g_test_posts', 'f2g_test_user_posts'].forEach(t => { - sqlString += `drop table public."${t}" cascade;`; - }); - fetch( - `${process.env.TEST_HGE_URL}/v1/query`, - { - method: 'POST', - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: sqlString, - cascade: true, - }, - }), - } - ).then(() => { - console.log(colors.green('✔︎ data-sets/blog.json: Test passed')); - process.exit(); - }).catch(() => { - process.exit(); - }); - } else { - console.log(colors.red('✖ data-sets/blog.json: Test failed. Unexpected response.')); - console.log(response.data); - process.exit(); - } - }); -}; - -verifyDataImport(); diff --git a/community/tools/firebase2graphql/test/verifyChinook.js b/community/tools/firebase2graphql/test/verifyChinook.js deleted file mode 100644 index 1dec68f7087..00000000000 --- a/community/tools/firebase2graphql/test/verifyChinook.js +++ /dev/null @@ -1,70 +0,0 @@ -const {query} = require('graphqurl'); -const fetch = require('node-fetch'); -const colors = require('colors/safe'); - -const complexQuery = ` -query { - f2g_test_Album ( - order_by:{_id:asc} - ){ - _id - f2g_test_Album_artist { - Name - ArtistId - } - f2g_test_Track ( - order_by: {Name:asc} - ) { - Name - Composer - } - } -} -`; - -const verifyDataImport = () => { - query({ - query: complexQuery, - endpoint: `${process.env.TEST_HGE_URL}/v1/graphql`, - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - }).then(response => { - if ( - response.data.f2g_test_Album[0].f2g_test_Album_artist.ArtistId === 1 && - response.data.f2g_test_Album[0].f2g_test_Track[0].Name === 'Breaking The Rules' - ) { - let sqlString = ''; - ['Album', 'Album_artist', 'Track'].forEach(t => { - sqlString += `drop table public."f2g_test_${t}" cascade;`; - }); - fetch( - `${process.env.TEST_HGE_URL}/v1/query`, - { - method: 'POST', - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: sqlString, - cascade: true, - }, - }), - } - ).then(() => { - console.log(colors.green('✔︎ data-sets/chinook.json: Test passed')); - process.exit(); - }).catch(() => { - process.exit(); - }); - } else { - console.log(colors.red('✖ data-sets/chinook.json: Test failed. Unexpected response.')); - console.log(response.data); - process.exit(); - } - }).catch(e => { - console.log(colors.red('✖ data-sets/chinook.json: Test failed. Unexpected response.')); - console.log(JSON.stringify(e, null, 2)); - process.exit(); - }); -}; - -verifyDataImport(); diff --git a/community/tools/firebase2graphql/test/verifyChinookNested.js b/community/tools/firebase2graphql/test/verifyChinookNested.js deleted file mode 100644 index b026b7a0c15..00000000000 --- a/community/tools/firebase2graphql/test/verifyChinookNested.js +++ /dev/null @@ -1,76 +0,0 @@ -const {query} = require('graphqurl'); -const fetch = require('node-fetch'); -const colors = require('colors/safe'); - -const complexQuery = ` -query { - f2gt_Album (order_by:{_id:asc}){ - _id - f2gt_Track (order_by: {_id:asc}) { - _id - Name - } - f2gt_Artist { - Name - f2gt_Album (order_by: {_id:desc}){ - _id - Title - f2gt_Track (order_by: {Name:asc}){ - Name - Composer - } - } - } - } -} -`; - -const verifyDataImport = () => { - query({ - query: complexQuery, - endpoint: `${process.env.TEST_HGE_URL}/v1/graphql`, - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - }).then(response => { - if ( - response.data.f2gt_Album[0]._id === '1' && - response.data.f2gt_Album[0].f2gt_Track[1]._id === '10' && - response.data.f2gt_Album[0].f2gt_Artist.Name === 'AC/DC' && - response.data.f2gt_Album[0].f2gt_Artist.f2gt_Album[0].Title === 'Let There Be Rock' && - response.data.f2gt_Album[0].f2gt_Artist.f2gt_Album[0].f2gt_Track[0].Name === 'Bad Boy Boogie' - ) { - let sqlString = ''; - ['Album', 'Artist', 'Tracks'].forEach(t => { - sqlString += `drop table public."f2gt_${t}" cascade;`; - }); - fetch( - `${process.env.TEST_HGE_URL}/v1/query`, - { - method: 'POST', - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: sqlString, - cascade: true, - }, - }), - } - ).then(() => { - console.log(colors.green('✔︎ data-sets/chinook_nested.json: Test passed')); - process.exit(); - }).catch(() => { - process.exit(); - }); - } else { - console.log(colors.red('✖ data-sets/chinook_nested.json: Test failed. Unexpected response.')); - process.exit(); - } - }).catch(e => { - console.log(colors.red('✖ data-sets/chinook_nested.json: Test failed. Unexpected response.')); - console.log(JSON.stringify(e, null, 2)); - - process.exit(); - }); -}; - -verifyDataImport(); diff --git a/community/tools/firebase2graphql/test/verifyRE1.js b/community/tools/firebase2graphql/test/verifyRE1.js deleted file mode 100644 index 5517502f9db..00000000000 --- a/community/tools/firebase2graphql/test/verifyRE1.js +++ /dev/null @@ -1,67 +0,0 @@ -const {query} = require('graphqurl'); -const fetch = require('node-fetch'); -const colors = require('colors/safe'); - -const complexQuery = ` -query { - f2g_test_Authors (order_by: {Name:asc}) { - _id - Name - f2g_Articles (order_by: {Title:asc}, where: { IsUnpublished: { _eq: true}}) { - Title - f2g_test_Comments (order_by: {Date:asc}) { - Body - Date - } - } - } -} -`; - -const verifyDataImport = () => { - query({ - query: complexQuery, - endpoint: `${process.env.TEST_HGE_URL}/v1/graphql`, - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - }).then(response => { - if ( - response.data && - response.data.f2g_test_Authors[0].f2g_Articles.length === 0 && - response.data.f2g_test_Authors[1].f2g_Articles[0].f2g_test_Comments[0].Body === 'Comment1' - ) { - let sqlString = ''; - ['Articles', 'Authors', 'Comments'].forEach(t => { - sqlString += `drop table public."f2g_test_${t}" cascade;`; - }); - fetch( - `${process.env.TEST_HGE_URL}/v1/query`, - { - method: 'POST', - headers: {'x-hasura-admin-secret': process.env.TEST_X_HASURA_ADMIN_SECRET}, - body: JSON.stringify({ - type: 'run_sql', - args: { - sql: sqlString, - cascade: true, - }, - }), - } - ).then(() => { - console.log(colors.green('✔︎ data-sets/readme-example-1.json: Test passed')); - process.exit(); - }).catch(() => { - process.exit(); - }); - } else { - console.log(colors.red('✖ data-sets/readme-example-1.json: Test failed. Unexpected response.')); - process.exit(); - } - }).catch(e => { - console.log(colors.red('✖ data-sets/readme-example-1.json: Test failed. Unexpected response.')); - console.log(JSON.stringify(e, null, 2)); - - process.exit(); - }); -}; - -verifyDataImport(); diff --git a/community/tools/graphiql-online/.babelrc b/community/tools/graphiql-online/.babelrc deleted file mode 100644 index 3d919f76063..00000000000 --- a/community/tools/graphiql-online/.babelrc +++ /dev/null @@ -1,38 +0,0 @@ -{ - "presets": [ - "@babel/preset-env", - "@babel/preset-react" - ], - "plugins": [ - "transform-react-remove-prop-types", - "@babel/plugin-proposal-class-properties", - "@babel/plugin-syntax-dynamic-import", - "@babel/plugin-syntax-import-meta", - "@babel/plugin-proposal-json-strings", - [ - "@babel/plugin-proposal-decorators", - { - "legacy": true - } - ], - "@babel/plugin-proposal-function-sent", - "@babel/plugin-proposal-export-namespace-from", - "@babel/plugin-proposal-numeric-separator", - "@babel/plugin-proposal-throw-expressions", - "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-logical-assignment-operators", - "@babel/plugin-proposal-optional-chaining", - [ - "@babel/plugin-proposal-pipeline-operator", - { - "proposal": "minimal" - } - ], - "@babel/plugin-proposal-nullish-coalescing-operator", - "@babel/plugin-proposal-do-expressions", - "@babel/plugin-proposal-function-bind", - "extract-hoc/babel", - "react-hot-loader/babel", - "istanbul" - ] -} diff --git a/community/tools/graphiql-online/.bootstraprc b/community/tools/graphiql-online/.bootstraprc deleted file mode 100644 index 1469f7c85be..00000000000 --- a/community/tools/graphiql-online/.bootstraprc +++ /dev/null @@ -1,120 +0,0 @@ ---- -# Output debugging info -# loglevel: debug - -# Major version of Bootstrap: 3 or 4 -bootstrapVersion: 3 - -# If Bootstrap version 3 is used - turn on/off custom icon font path -useCustomIconFontPath: false - -# Webpack loaders, order matters -styleLoaders: - - style - - css - - sass - -# Extract styles to stand-alone css file -# Different settings for different environments can be used, -# It depends on value of NODE_ENV environment variable -# This param can also be set in webpack config: -# entry: 'bootstrap-loader/extractStyles' -#extractStyles: false -env: - development: - extractStyles: false - production: - extractStyles: true - - -# Customize Bootstrap variables that get imported before the original Bootstrap variables. -# Thus, derived Bootstrap variables can depend on values from here. -# See the Bootstrap _variables.scss file for examples of derived Bootstrap variables. -# - -preBootstrapCustomizations: ./src/theme/variables.scss - - -# This gets loaded after bootstrap/variables is loaded -# Thus, you may customize Bootstrap variables -# based on the values established in the Bootstrap _variables.scss file -# - -bootstrapCustomizations: ./src/theme/bootstrap.overrides.scss - - -# Import your custom styles here -# Usually this endpoint-file contains list of @imports of your application styles -# -# appStyles: ./path/to/your/app/styles/endpoint.scss - - -### Bootstrap styles -styles: - - # Mixins - mixins: true - - # Reset and dependencies - normalize: true - print: true - glyphicons: true - - # Core CSS - scaffolding: true - type: true - code: true - grid: true - tables: true - forms: true - buttons: true - - # Components - component-animations: true - dropdowns: true - button-groups: true - input-groups: true - navs: true - navbar: true - breadcrumbs: true - pagination: true - pager: true - labels: true - badges: true - jumbotron: true - thumbnails: true - alerts: true - progress-bars: true - media: true - list-group: true - panels: true - wells: true - responsive-embed: true - close: true - - # Components w/ JavaScript - modals: true - tooltip: true - popovers: true - carousel: true - - # Utility classes - utilities: true - responsive-utilities: true - -### Bootstrap scripts -#scripts: false - -scripts: - transition: false - alert: false - button: true - carousel: false - collapse: false - dropdown: true - modal: true - tooltip: false - popover: false - scrollspy: false - tab: false - affix: false diff --git a/community/tools/graphiql-online/.eslintignore b/community/tools/graphiql-online/.eslintignore deleted file mode 100644 index 043ceb51042..00000000000 --- a/community/tools/graphiql-online/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -webpack/* -src/utils.js diff --git a/community/tools/graphiql-online/.eslintrc b/community/tools/graphiql-online/.eslintrc deleted file mode 100644 index 7c25d02c336..00000000000 --- a/community/tools/graphiql-online/.eslintrc +++ /dev/null @@ -1,106 +0,0 @@ -{ "extends": "eslint-config-airbnb", - "env": { - "browser": true, - "node": true, - "mocha": true, - "cypress/globals": true - }, - "parser": "babel-eslint", - "rules": { - "allowForLoopAfterthoughts": true, - "react/no-multi-comp": 0, - "import/default": 0, - "import/no-duplicates": 0, - "import/named": 0, - "import/first": 0, - "import/namespace": 0, - "import/no-unresolved": 0, - "import/no-named-as-default": 2, - "import/extensions": 0, - "import/no-extraneous-dependencies": 0, - "import/prefer-default-export": 0, - "comma-dangle": 0, - "id-length": [1, {"min": 1, "properties": "never"}], - "indent": [2, 2, {"SwitchCase": 1}], - "no-console": 0, - "arrow-parens": 0, - "no-alert": 0, - "no-plusplus": 0, - "no-unsafe-negation": 0, - "no-loop-func": 0, - "no-lonely-if": 0, - "no-bitwise": 0, - "global-require": 0, - "no-param-reassign": 0, - "no-underscore-dangle": 0, - "no-useless-return": 0, - "no-restricted-syntax": 0, - "no-prototype-builtins": 0, - "array-callback-return": 0, - "no-useless-concat": 0, - "consistent-return": 0, - "class-methods-use-this": 0, - "arrow-body-style": 0, - "prefer-template": 0, - "prefer-spread": 0, - "object-shorthand": 0, - "camelcase": 0, - "object-curly-newline": 0, - "spaced-comment": 0, - "prefer-destructuring": ["error", {"object": false, "array": false}], - "prefer-rest-params": 0, - "function-paren-newline": 0, - "no-case-declarations": 0, - "no-restricted-globals": 0, - "no-unneeded-ternary": 0, - "no-mixed-operators": 0, - "no-return-assign": 0, - "operator-assignment": 0, - "strict": 0, - "react/jsx-no-duplicate-props": 0, - "react/jsx-filename-extension": 0, - "react/jsx-curly-brace-presence": 0, - "react/forbid-prop-types": 0, - "react/require-default-props": 0, - "react/no-unused-prop-types": 0, - "react/no-string-refs": 0, - "react/no-unused-state": 0, - "react/no-array-index-key": 0, - "react/jsx-no-bind": 0, - "react/prop-types": 0, - "react/prefer-stateless-function": 0, - "react/no-unescaped-entities": 0, - "react/sort-comp": 0, - "jsx-a11y/click-events-have-key-events": 0, - "jsx-a11y/no-static-element-interactions": 0, - "jsx-a11y/no-noninteractive-element-interactions": 0, - "jsx-a11y/label-has-for": 0, - "jsx-a11y/anchor-is-valid": 0, - "jsx-a11y/lang": 0, - "jsx-a11y/alt-text": 0, - "jsx-a11y/no-autofocus": 0, - "max-len": 0, - "no-continue": 0 - }, - "plugins": [ - "react", "import", "cypress" - ], - - "settings": { - "import/parser": "babel-eslint", - "parser": "babel-esling", - "import/resolve": { - "moduleDirectory": ["node_modules", "src"] - } - }, - "globals": { - "__DEVELOPMENT__": true, - "__CLIENT__": true, - "__SERVER__": true, - "__DISABLE_SSR__": true, - "__DEVTOOLS__": true, - "socket": true, - "webpackIsomorphicTools": true, - "CONSOLE_ASSET_VERSION": true - } -} diff --git a/community/tools/graphiql-online/.gitignore b/community/tools/graphiql-online/.gitignore deleted file mode 100644 index 8b7a6e0c0f6..00000000000 --- a/community/tools/graphiql-online/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -.env -node_modules -static/dist -webpack-assets.json -webpack-stats.json -npm-debug.log -*.swp -coverage -.idea/* -test -**/.tern-port diff --git a/community/tools/graphiql-online/Dockerfile b/community/tools/graphiql-online/Dockerfile deleted file mode 100644 index 98078438746..00000000000 --- a/community/tools/graphiql-online/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM node:8.9-alpine - -# Create app directory -WORKDIR /app - -# Install app dependencies -RUN npm config set unsafe-perm true -RUN npm -g install serve -# A wildcard is used to ensure both package.json AND package-lock.json are copied -COPY package*.json ./ - -RUN npm install - -# Bundle app source -COPY . /app -#Build react/vue/angular bundle static files -RUN npm run build - -RUN rm -Rf node_modules -EXPOSE 8080 -# serve dist folder on port 8080 -CMD ["serve", "-s", "static", "-p", "8080"] diff --git a/community/tools/graphiql-online/README.md b/community/tools/graphiql-online/README.md index d08b3b9415c..337d4862aaa 100644 --- a/community/tools/graphiql-online/README.md +++ b/community/tools/graphiql-online/README.md @@ -1,35 +1 @@ -## GraphiQL Demo - -This version of GraphiQL is a fork of the original version with a simple header management UI. - -You can access it live here - https://graphiql-online.com - -## Usage of Environment Variables - -This app uses a few environment variables which are required for development. The production build uses values directly present in index.html serving this app. - -We use [dotenv](https://github.com/motdotla/dotenv) for setting environment variables for development. Create a `.env` file in the root directory (wherever package.json is) and set the following values. Replace accordingly for testing. - -``` -PORT=3000 -NODE_ENV=development -GRAPHQL_ENDPOINT=http://localhost:8090/v1/graphql -HEADER_STRING='{}' -VARIABLE_STRING='{}' -QUERY_STRING='query { test_table { id } }' -``` - -**Note** -The .env file should not be in version control. - -## Deployment - -``` -$ npm run build -``` - -The static assets will be generated in `static` folder. There is an index.html file referencing the css and js assets inside `dist` folder. - -For a quick Docker based deployment, use `docker build -t graphiql .` && `docker run -d -p 8080:8080 graphiql` for running the production build locally. - -You can also use now.sh for a cloud deployment. Just simply run `now` to deploy this and get a live URL. \ No newline at end of file +## This project has been moved to [hasura/graphiql-online](https://github.com/hasura/graphiql-online) diff --git a/community/tools/graphiql-online/appconfig.js b/community/tools/graphiql-online/appconfig.js deleted file mode 100644 index d84aecccd61..00000000000 --- a/community/tools/graphiql-online/appconfig.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = { - hmrPort: parseInt(process.env.PORT, 10) + 1 || 3001, - hmrHost: process.env.HOST || '127.0.0.1', - appHost: '0.0.0.0', - port: { development: process.env.PORT, production: 8080 }, - assetsPrefix: '/rstatic', - webpackPrefix: '/rstatic/dist/', - appPrefix: '/rapp', -}; diff --git a/community/tools/graphiql-online/bin/server.babel.js b/community/tools/graphiql-online/bin/server.babel.js deleted file mode 100755 index da97a306f54..00000000000 --- a/community/tools/graphiql-online/bin/server.babel.js +++ /dev/null @@ -1,15 +0,0 @@ -// enable runtime transpilation to use ES6/7 in node - -const fs = require('fs'); - -const babelrc = fs.readFileSync('.babelrc'); -let config; - -try { - config = JSON.parse(babelrc); -} catch (err) { - console.error('==> ERROR: Error parsing your .babelrc.'); - console.error(err); -} - -require('@babel/register')(config); diff --git a/community/tools/graphiql-online/bin/server.js b/community/tools/graphiql-online/bin/server.js deleted file mode 100644 index c0d70c74b58..00000000000 --- a/community/tools/graphiql-online/bin/server.js +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env node -require('./server.babel'); // babel registration (runtime transpilation for node) -const path = require('path'); - -const rootDir = path.resolve(__dirname, '..'); -/** - * Define isomorphic constants. - */ -global.__CLIENT__ = false; -global.__SERVER__ = true; -global.__DISABLE_SSR__ = false; // <----- DISABLES SERVER SIDE RENDERING FOR ERROR DEBUGGING -global.__DEVELOPMENT__ = process.env.NODE_ENV !== 'production'; - -if (__DEVELOPMENT__) { - if ( - !require('piping')({ - //Fork the process and supervise the child for hot-reloading code - hook: true, - ignore: /(\/\.|~$|\.json|\.scss$)/i, - }) - ) { - return; //The parent process ends, and child process continues from below - } -} - -const WebpackIsomorphicTools = require('webpack-isomorphic-tools'); -global.webpackIsomorphicTools = new WebpackIsomorphicTools( - require('../webpack/webpack-isomorphic-tools') -).server(rootDir, () => { - require('../src/server'); -}); - -require('../src/server'); diff --git a/community/tools/graphiql-online/now.json b/community/tools/graphiql-online/now.json deleted file mode 100644 index c08d5efdf3d..00000000000 --- a/community/tools/graphiql-online/now.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "version": 2, - "name": "graphiql-online", - "alias": ["graphiql-online.com"], - "builds": [ - { - "src": "package.json", - "use": "@now/static-build", - "config": { "distDir": "static" } - } - ], - "routes": [ - { - "src": "/static/(.*)", - "headers": { "cache-control": "s-maxage=31536000,immutable" }, - "dest": "/static/$1" - }, - { "src": "/favicon.ico", "dest": "/favicon.ico" }, - { - "src": "/(.*)", - "headers": { "cache-control": "s-maxage=0" }, - "dest": "/static/index.html" - } - ] -} \ No newline at end of file diff --git a/community/tools/graphiql-online/package-lock.json b/community/tools/graphiql-online/package-lock.json deleted file mode 100644 index 67fa8c1d379..00000000000 --- a/community/tools/graphiql-online/package-lock.json +++ /dev/null @@ -1,16677 +0,0 @@ -{ - "name": "graphqurl-graphiql", - "version": "0.2.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", - "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - }, - "@babel/core": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.3.3.tgz", - "integrity": "sha512-w445QGI2qd0E0GlSnq6huRZWPMmQGCp5gd5ZWS4hagn0EiwzxD5QMFkpchyusAyVC1n27OKXzQ0/88aVU9n4xQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.3.3", - "@babel/helpers": "^7.2.0", - "@babel/parser": "^7.3.3", - "@babel/template": "^7.2.2", - "@babel/traverse": "^7.2.2", - "@babel/types": "^7.3.3", - "convert-source-map": "^1.1.0", - "debug": "^4.1.0", - "json5": "^2.1.0", - "lodash": "^4.17.11", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", - "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - }, - "@babel/generator": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.3.3.tgz", - "integrity": "sha512-aEADYwRRZjJyMnKN7llGIlircxTCofm3dtV5pmY6ob18MSIuipHpA2yZWkPlycwu5HJcx/pADS3zssd8eY7/6A==", - "dev": true, - "requires": { - "@babel/types": "^7.3.3", - "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - } - }, - "@babel/helper-function-name": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", - "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", - "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz", - "integrity": "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/highlight": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", - "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", - "dev": true, - "requires": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz", - "integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg==", - "dev": true - }, - "@babel/template": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz", - "integrity": "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.2.2", - "@babel/types": "^7.2.2" - } - }, - "@babel/traverse": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz", - "integrity": "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.2.2", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.0.0", - "@babel/parser": "^7.2.3", - "@babel/types": "^7.2.2", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.10" - } - }, - "@babel/types": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.3.tgz", - "integrity": "sha512-2tACZ80Wg09UnPg5uGAOUvvInaqLk3l/IAhQzlxLQOIXacr6bMsra5SH6AWw/hIDRCSbCdHP2KzSOD+cT7TzMQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", - "dev": true - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "json5": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", - "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.3.3.tgz", - "integrity": "sha512-aEADYwRRZjJyMnKN7llGIlircxTCofm3dtV5pmY6ob18MSIuipHpA2yZWkPlycwu5HJcx/pADS3zssd8eY7/6A==", - "dev": true, - "requires": { - "@babel/types": "^7.3.3", - "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - }, - "dependencies": { - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", - "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", - "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", - "dev": true, - "requires": { - "@babel/helper-explode-assignable-expression": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-builder-react-jsx": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz", - "integrity": "sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw==", - "dev": true, - "requires": { - "@babel/types": "^7.3.0", - "esutils": "^2.0.0" - } - }, - "@babel/helper-call-delegate": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz", - "integrity": "sha512-YEtYZrw3GUK6emQHKthltKNZwszBcHK58Ygcis+gVUrF4/FmTVr5CCqQNSfmvg2y+YDEANyYoaLz/SHsnusCwQ==", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.0.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.3.2.tgz", - "integrity": "sha512-tdW8+V8ceh2US4GsYdNVNoohq5uVwOf9k6krjwW4E1lINcHgttnWcNqgdoessn12dAy8QkbezlbQh2nXISNY+A==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-member-expression-to-functions": "^7.0.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.2.3" - } - }, - "@babel/helper-define-map": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz", - "integrity": "sha512-yPPcW8dc3gZLN+U1mhYV91QU3n5uTbx7DUdf8NnPbjS0RMwBuHi9Xt2MUgppmNz7CJxTBWsGczTiEp1CSOTPRg==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/types": "^7.0.0", - "lodash": "^4.17.10" - } - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", - "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", - "dev": true, - "requires": { - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-function-name": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", - "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", - "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz", - "integrity": "sha512-Ggv5sldXUeSKsuzLkddtyhyHe2YantsxWKNi7A+7LeD12ExRDWTRk29JCXpaHPAbMaIPZSil7n+lq78WY2VY7w==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz", - "integrity": "sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-module-imports": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", - "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-module-transforms": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz", - "integrity": "sha512-YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-simple-access": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.0.0", - "@babel/template": "^7.2.2", - "@babel/types": "^7.2.2", - "lodash": "^4.17.10" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", - "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", - "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", - "dev": true - }, - "@babel/helper-regex": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.0.0.tgz", - "integrity": "sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg==", - "dev": true, - "requires": { - "lodash": "^4.17.10" - } - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", - "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-wrap-function": "^7.1.0", - "@babel/template": "^7.1.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-replace-supers": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz", - "integrity": "sha512-GyieIznGUfPXPWu0yLS6U55Mz67AZD9cUk0BfirOWlPrXlBcan9Gz+vHGz+cPfuoweZSnPzPIm67VtQM0OWZbA==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.0.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/traverse": "^7.2.3", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-simple-access": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", - "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", - "dev": true, - "requires": { - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz", - "integrity": "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-wrap-function": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", - "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/template": "^7.1.0", - "@babel/traverse": "^7.1.0", - "@babel/types": "^7.2.0" - } - }, - "@babel/helpers": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.3.1.tgz", - "integrity": "sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA==", - "dev": true, - "requires": { - "@babel/template": "^7.1.2", - "@babel/traverse": "^7.1.5", - "@babel/types": "^7.3.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", - "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - }, - "@babel/generator": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.3.3.tgz", - "integrity": "sha512-aEADYwRRZjJyMnKN7llGIlircxTCofm3dtV5pmY6ob18MSIuipHpA2yZWkPlycwu5HJcx/pADS3zssd8eY7/6A==", - "dev": true, - "requires": { - "@babel/types": "^7.3.3", - "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - } - }, - "@babel/helper-function-name": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", - "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/template": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", - "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz", - "integrity": "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/highlight": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", - "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", - "dev": true, - "requires": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz", - "integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg==", - "dev": true - }, - "@babel/template": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz", - "integrity": "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.2.2", - "@babel/types": "^7.2.2" - } - }, - "@babel/traverse": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz", - "integrity": "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.2.2", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.0.0", - "@babel/parser": "^7.2.3", - "@babel/types": "^7.2.2", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.10" - } - }, - "@babel/types": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.3.tgz", - "integrity": "sha512-2tACZ80Wg09UnPg5uGAOUvvInaqLk3l/IAhQzlxLQOIXacr6bMsra5SH6AWw/hIDRCSbCdHP2KzSOD+cT7TzMQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", - "dev": true - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - } - } - }, - "@babel/highlight": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", - "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", - "dev": true, - "requires": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@babel/parser": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.4.tgz", - "integrity": "sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==", - "dev": true - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", - "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.1.0", - "@babel/plugin-syntax-async-generators": "^7.2.0" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.3.tgz", - "integrity": "sha512-XO9eeU1/UwGPM8L+TjnQCykuVcXqaO5J1bkRPIygqZ/A2L1xVMJ9aZXrY31c0U4H2/LHKL4lbFQLsxktSrc/Ng==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.3.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.3.0.tgz", - "integrity": "sha512-3W/oCUmsO43FmZIqermmq6TKaRSYhmh/vybPfVFwQWdSb8xwki38uAIvknCRzuyHRuYfCYmJzL9or1v0AffPjg==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.3.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-decorators": "^7.2.0" - } - }, - "@babel/plugin-proposal-do-expressions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-do-expressions/-/plugin-proposal-do-expressions-7.2.0.tgz", - "integrity": "sha512-2bWN48zQHf/W5T8XvemGQJSi8hzhIo7y4kv/RiA08UcMLQ73lkTknhlaFGf1HjCJzG8FGopgsq6pSe1C+10fPg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-do-expressions": "^7.2.0" - } - }, - "@babel/plugin-proposal-export-default-from": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.2.0.tgz", - "integrity": "sha512-NVfNe7F6nsasG1FnvcFxh2FN0l04ZNe75qTOAVOILWPam0tw9a63RtT/Dab8dPjedZa4fTQaQ83yMMywF9OSug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-export-default-from": "^7.2.0" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.2.0.tgz", - "integrity": "sha512-DZUxbHYxQ5fUFIkMEnh75ogEdBLPfL+mQUqrO2hNY2LGm+tqFnxE924+mhAcCOh/8za8AaZsWHbq6bBoS3TAzA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-export-namespace-from": "^7.2.0" - } - }, - "@babel/plugin-proposal-function-bind": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-function-bind/-/plugin-proposal-function-bind-7.2.0.tgz", - "integrity": "sha512-qOFJ/eX1Is78sywwTxDcsntLOdb5ZlHVVqUz5xznq8ldAfOVIyZzp1JE2rzHnaksZIhrqMrwIpQL/qcEprnVbw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-function-bind": "^7.2.0" - } - }, - "@babel/plugin-proposal-function-sent": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-function-sent/-/plugin-proposal-function-sent-7.2.0.tgz", - "integrity": "sha512-qQBDKRSCu1wGJi3jbngs18vrujVQA4F+OkSuIQYRhE6y19jcPzeEIGOc683mCQXDUR3BQCz8JyCupIwv+IRFmA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-wrap-function": "^7.2.0", - "@babel/plugin-syntax-function-sent": "^7.2.0" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", - "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-json-strings": "^7.2.0" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.2.0.tgz", - "integrity": "sha512-0w797xwdPXKk0m3Js74hDi0mCTZplIu93MOSfb1ZLd/XFe3abWypx1QknVk0J+ohnsjYpvjH4Gwfo2i3RicB6Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-logical-assignment-operators": "^7.2.0" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.2.0.tgz", - "integrity": "sha512-QXj/YjFuFJd68oDvoc1e8aqLr2wz7Kofzvp6Ekd/o7MWZl+nZ0/cpStxND+hlZ7DpRWAp7OmuyT2areZ2V3YUA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.2.0" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.2.0.tgz", - "integrity": "sha512-DohMOGDrZiMKS7LthjUZNNcWl8TAf5BZDwZAH4wpm55FuJTHgfqPGdibg7rZDmont/8Yg0zA03IgT6XLeP+4sg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-numeric-separator": "^7.2.0" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.2.tgz", - "integrity": "sha512-DjeMS+J2+lpANkYLLO+m6GjoTMygYglKmRe6cDTbFv3L9i6mmiE8fe6B8MtCSLZpVXscD5kn7s6SgtHrDoBWoA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.2.0" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", - "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.2.0" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.2.0.tgz", - "integrity": "sha512-ea3Q6edZC/55wEBVZAEz42v528VulyO0eir+7uky/sT4XRcdkWJcFi1aPtitTlwUzGnECWJNExWww1SStt+yWw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-optional-chaining": "^7.2.0" - } - }, - "@babel/plugin-proposal-pipeline-operator": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-pipeline-operator/-/plugin-proposal-pipeline-operator-7.3.2.tgz", - "integrity": "sha512-wuzx8U/KZLJYoqU6joiaKY0PixHuYZ3Vxys+wPahNAZEEm+EDb1eTc19DuJob3BdxYSD9PWPbwyoRbhkdoYErg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-pipeline-operator": "^7.3.0" - } - }, - "@babel/plugin-proposal-throw-expressions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-throw-expressions/-/plugin-proposal-throw-expressions-7.2.0.tgz", - "integrity": "sha512-adsydM8DQF4i5DLNO4ySAU5VtHTPewOtNBV3u7F4lNMPADFF9bWQ+iDtUUe8+033cYCUz+bFlQdXQJmJOwoLpw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-throw-expressions": "^7.2.0" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz", - "integrity": "sha512-LvRVYb7kikuOtIoUeWTkOxQEV1kYvL5B6U3iWEGCzPNRus1MzJweFqORTj+0jkxozkTSYNJozPOddxmqdqsRpw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0", - "regexpu-core": "^4.2.0" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", - "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz", - "integrity": "sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-do-expressions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-do-expressions/-/plugin-syntax-do-expressions-7.2.0.tgz", - "integrity": "sha512-/u4rJ+XEmZkIhspVuKRS+7WLvm7Dky9j9TvGK5IgId8B3FKir9MG+nQxDZ9xLn10QMBvW58dZ6ABe2juSmARjg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz", - "integrity": "sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-export-default-from": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.2.0.tgz", - "integrity": "sha512-c7nqUnNST97BWPtoe+Ssi+fJukc9P9/JMZ71IOMNQWza2E+Psrd46N6AEvtw6pqK+gt7ChjXyrw4SPDO79f3Lw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.2.0.tgz", - "integrity": "sha512-1zGA3UNch6A+A11nIzBVEaE3DDJbjfB+eLIcf0GGOh/BJr/8NxL3546MGhV/r0RhH4xADFIEso39TKCfEMlsGA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-function-bind": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-function-bind/-/plugin-syntax-function-bind-7.2.0.tgz", - "integrity": "sha512-/WzU1lLU2l0wDfB42Wkg6tahrmtBbiD8C4H6EGSX0M4GAjzN6JiOpq/Uh8G6GSoR6lPMvhjM0MNiV6znj6y/zg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-function-sent": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-function-sent/-/plugin-syntax-function-sent-7.2.0.tgz", - "integrity": "sha512-2MOVuJ6IMAifp2cf0RFkHQaOvHpbBYyWCvgtF/WVqXhTd7Bgtov8iXVCadLXp2FN1BrI2EFl+JXuwXy0qr3KoQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.2.0.tgz", - "integrity": "sha512-Hq6kFSZD7+PHkmBN8bCpHR6J8QEoCuEV/B38AIQscYjgMZkGlXB7cHNFzP5jR4RCh5545yP1ujHdmO7hAgKtBA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", - "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz", - "integrity": "sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.2.0.tgz", - "integrity": "sha512-l/NKSlrnvd73/EL540t9hZhcSo4TULBrIPs9Palju8Oc/A8DXDO+xQf04whfeuZLpi8AuIvCAdpKmmubLN4EfQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.2.0.tgz", - "integrity": "sha512-lRCEaKE+LTxDQtgbYajI04ddt6WW0WJq57xqkAZ+s11h4YgfRHhVA/Y2VhfPzzFD4qeLHWg32DMp9HooY4Kqlg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.2.0.tgz", - "integrity": "sha512-DroeVNkO/BnGpL2R7+ZNZqW+E24aR/4YWxP3Qb15d6lPU8KDzF8HlIUIRCOJRn4X77/oyW4mJY+7FHfY82NLtQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", - "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", - "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.2.0.tgz", - "integrity": "sha512-HtGCtvp5Uq/jH/WNUPkK6b7rufnCPLLlDAFN7cmACoIjaOOiXxUt3SswU5loHqrhtqTsa/WoLQ1OQ1AGuZqaWA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-pipeline-operator": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-pipeline-operator/-/plugin-syntax-pipeline-operator-7.3.0.tgz", - "integrity": "sha512-LAa3ZcOAyfPOUDTp0W5EiXGSAFh1vz9sD8yY7sZzWzEkZdIC404pqBP60Yfu9GJDj0ggh+UTQY6EYlIDXVr0/Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-syntax-throw-expressions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-throw-expressions/-/plugin-syntax-throw-expressions-7.2.0.tgz", - "integrity": "sha512-ngwynuqu1Rx0JUS9zxSDuPgW1K8TyVZCi2hHehrL4vyjqE7RGoNHWlZsS7KQT2vw9Yjk4YLa0+KldBXTRdPLRg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", - "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz", - "integrity": "sha512-CEHzg4g5UraReozI9D4fblBYABs7IM6UerAVG7EJVrTLC5keh00aEuLUT+O40+mJCEzaXkYfTCUKIyeDfMOFFQ==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.1.0" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", - "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz", - "integrity": "sha512-vDTgf19ZEV6mx35yiPJe4fS02mPQUUcBNwWQSZFXSzTSbsJFQvHt7DqyS3LK8oOWALFOsJ+8bbqBgkirZteD5Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "lodash": "^4.17.10" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.3.3.tgz", - "integrity": "sha512-n0CLbsg7KOXsMF4tSTLCApNMoXk0wOPb0DYfsOO1e7SfIb9gOyfbpKI2MZ+AXfqvlfzq2qsflJ1nEns48Caf2w==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-define-map": "^7.1.0", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-optimise-call-expression": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.0.0", - "globals": "^11.1.0" - }, - "dependencies": { - "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", - "dev": true - } - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", - "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.3.2.tgz", - "integrity": "sha512-Lrj/u53Ufqxl/sGxyjsJ2XNtNuEjDyjpqdhMNh5aZ+XFOdThL46KBj27Uem4ggoezSYBxKWAil6Hu8HtwqesYw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz", - "integrity": "sha512-sKxnyHfizweTgKZf7XsXu/CNupKhzijptfTM+bozonIuyVrLWVUvYjE2bhuSBML8VQeMxq4Mm63Q9qvcvUcciQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0", - "regexpu-core": "^4.1.3" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz", - "integrity": "sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", - "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", - "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz", - "integrity": "sha512-Kz7Mt0SsV2tQk6jG5bBv5phVbkd0gd27SgYD4hH1aLMJRchM0dzHaXvrWhVZ+WxAlDoAKZ7Uy3jVTW2mKXQ1WQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz", - "integrity": "sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ==", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", - "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz", - "integrity": "sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz", - "integrity": "sha512-V6y0uaUQrQPXUrmj+hgnks8va2L0zcZymeU7TtWEgdRLNkceafKXEduv7QzgQAE4lT+suwooG9dC7LFhdRAbVQ==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-simple-access": "^7.1.0" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz", - "integrity": "sha512-aYJwpAhoK9a+1+O625WIjvMY11wkB/ok0WClVwmeo3mCjcNRjt+/8gHWrB5i+00mUju0gWsBkQnPpdvQ7PImmQ==", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", - "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.1.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.3.0.tgz", - "integrity": "sha512-NxIoNVhk9ZxS+9lSoAQ/LM0V2UEvARLttEHUrRDGKFaAxOYQcrkN/nLRE+BbbicCAvZPl7wMP0X60HsHE5DtQw==", - "dev": true, - "requires": { - "regexp-tree": "^0.1.0" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz", - "integrity": "sha512-yin069FYjah+LbqfGeTfzIBODex/e++Yfa0rH0fpfam9uTbuEeEOx5GLGr210ggOV77mVRNoeqSYqeuaqSzVSw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz", - "integrity": "sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.1.0" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.3.3.tgz", - "integrity": "sha512-IrIP25VvXWu/VlBWTpsjGptpomtIkYrN/3aDp4UKm7xK6UxZY88kcJ1UwETbzHAlwN21MnNfwlar0u8y3KpiXw==", - "dev": true, - "requires": { - "@babel/helper-call-delegate": "^7.1.0", - "@babel/helper-get-function-arity": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz", - "integrity": "sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz", - "integrity": "sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg==", - "dev": true, - "requires": { - "@babel/helper-builder-react-jsx": "^7.3.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0" - } - }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz", - "integrity": "sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0" - } - }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz", - "integrity": "sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz", - "integrity": "sha512-sj2qzsEx8KDVv1QuJc/dEfilkg3RRPvPYx/VnKLtItVQRWt1Wqf5eVCOLZm29CiGFfYYsA3VPjfizTCV0S0Dlw==", - "dev": true, - "requires": { - "regenerator-transform": "^0.13.3" - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", - "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz", - "integrity": "sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", - "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz", - "integrity": "sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", - "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz", - "integrity": "sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0", - "regexpu-core": "^4.1.3" - } - }, - "@babel/preset-env": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.3.1.tgz", - "integrity": "sha512-FHKrD6Dxf30e8xgHQO0zJZpUPfVZg+Xwgz5/RdSWCbza9QLNk4Qbp40ctRoqDxml3O8RMzB1DU55SXeDG6PqHQ==", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-async-generator-functions": "^7.2.0", - "@babel/plugin-proposal-json-strings": "^7.2.0", - "@babel/plugin-proposal-object-rest-spread": "^7.3.1", - "@babel/plugin-proposal-optional-catch-binding": "^7.2.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.2.0", - "@babel/plugin-syntax-async-generators": "^7.2.0", - "@babel/plugin-syntax-json-strings": "^7.2.0", - "@babel/plugin-syntax-object-rest-spread": "^7.2.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.2.0", - "@babel/plugin-transform-arrow-functions": "^7.2.0", - "@babel/plugin-transform-async-to-generator": "^7.2.0", - "@babel/plugin-transform-block-scoped-functions": "^7.2.0", - "@babel/plugin-transform-block-scoping": "^7.2.0", - "@babel/plugin-transform-classes": "^7.2.0", - "@babel/plugin-transform-computed-properties": "^7.2.0", - "@babel/plugin-transform-destructuring": "^7.2.0", - "@babel/plugin-transform-dotall-regex": "^7.2.0", - "@babel/plugin-transform-duplicate-keys": "^7.2.0", - "@babel/plugin-transform-exponentiation-operator": "^7.2.0", - "@babel/plugin-transform-for-of": "^7.2.0", - "@babel/plugin-transform-function-name": "^7.2.0", - "@babel/plugin-transform-literals": "^7.2.0", - "@babel/plugin-transform-modules-amd": "^7.2.0", - "@babel/plugin-transform-modules-commonjs": "^7.2.0", - "@babel/plugin-transform-modules-systemjs": "^7.2.0", - "@babel/plugin-transform-modules-umd": "^7.2.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0", - "@babel/plugin-transform-new-target": "^7.0.0", - "@babel/plugin-transform-object-super": "^7.2.0", - "@babel/plugin-transform-parameters": "^7.2.0", - "@babel/plugin-transform-regenerator": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.2.0", - "@babel/plugin-transform-spread": "^7.2.0", - "@babel/plugin-transform-sticky-regex": "^7.2.0", - "@babel/plugin-transform-template-literals": "^7.2.0", - "@babel/plugin-transform-typeof-symbol": "^7.2.0", - "@babel/plugin-transform-unicode-regex": "^7.2.0", - "browserslist": "^4.3.4", - "invariant": "^2.2.2", - "js-levenshtein": "^1.1.3", - "semver": "^5.3.0" - } - }, - "@babel/preset-react": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.0.0.tgz", - "integrity": "sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-react-jsx-self": "^7.0.0", - "@babel/plugin-transform-react-jsx-source": "^7.0.0" - } - }, - "@babel/register": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.0.0.tgz", - "integrity": "sha512-f/+CRmaCe7rVEvcvPvxeA8j5aJhHC3aJie7YuqcMDhUOuyWLA7J/aNrTaHIzoWPEhpHA54mec4Mm8fv8KBlv3g==", - "dev": true, - "requires": { - "core-js": "^2.5.7", - "find-cache-dir": "^1.0.0", - "home-or-tmp": "^3.0.0", - "lodash": "^4.17.10", - "mkdirp": "^0.5.1", - "pirates": "^4.0.0", - "source-map-support": "^0.5.9" - } - }, - "@babel/runtime": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.1.tgz", - "integrity": "sha512-7jGW8ppV0ant637pIqAcFfQDDH1orEPGJb8aXfUozuCU3QqX7rX4DA8iwrbPrR1hcH0FTTHz47yQnk+bl5xHQA==", - "requires": { - "regenerator-runtime": "^0.12.0" - } - }, - "@babel/runtime-corejs2": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.1.2.tgz", - "integrity": "sha512-drxaPByExlcRDKW4ZLubUO4ZkI8/8ax9k9wve1aEthdLKFzjB7XRkOQ0xoTIWGxqdDnWDElkjYq77bt7yrcYJQ==", - "requires": { - "core-js": "^2.5.7", - "regenerator-runtime": "^0.12.0" - }, - "dependencies": { - "regenerator-runtime": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", - "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" - } - } - }, - "@babel/template": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz", - "integrity": "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.2.2", - "@babel/types": "^7.2.2" - }, - "dependencies": { - "@babel/parser": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz", - "integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg==", - "dev": true - } - } - }, - "@babel/traverse": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz", - "integrity": "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.2.2", - "@babel/helper-function-name": "^7.1.0", - "@babel/helper-split-export-declaration": "^7.0.0", - "@babel/parser": "^7.2.3", - "@babel/types": "^7.2.2", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.10" - }, - "dependencies": { - "@babel/parser": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz", - "integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg==", - "dev": true - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "globals": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", - "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } - } - }, - "@babel/types": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.3.tgz", - "integrity": "sha512-2tACZ80Wg09UnPg5uGAOUvvInaqLk3l/IAhQzlxLQOIXacr6bMsra5SH6AWw/hIDRCSbCdHP2KzSOD+cT7TzMQ==", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.11", - "to-fast-properties": "^2.0.0" - }, - "dependencies": { - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - } - } - }, - "@f/animate": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@f/animate/-/animate-1.0.1.tgz", - "integrity": "sha1-oDE5itrfmgvTpWOYzskx+HfYhIU=", - "requires": { - "@f/elapsed-time": "^1.0.0", - "@f/raf": "^1.0.0", - "@f/tween": "^1.0.0" - } - }, - "@f/elapsed-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@f/elapsed-time/-/elapsed-time-1.0.0.tgz", - "integrity": "sha1-ageaYQSocni/W0CARE7wLRtZVEk=", - "requires": { - "@f/timestamp": "^1.0.0" - } - }, - "@f/map-obj": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@f/map-obj/-/map-obj-1.2.2.tgz", - "integrity": "sha1-2an4vXbKoq4RtjPdok2cbMzB5g0=" - }, - "@f/raf": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@f/raf/-/raf-1.0.3.tgz", - "integrity": "sha1-Mt3KN940WyDIw4QwGMxRuPiXkU0=" - }, - "@f/timestamp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@f/timestamp/-/timestamp-1.0.0.tgz", - "integrity": "sha1-MqkWbiUW5cy5sPz9yJIjgZcQ6Iw=" - }, - "@f/tween": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@f/tween/-/tween-1.0.1.tgz", - "integrity": "sha1-GK73nEl15UQVrfMm5LXg0FPSB/A=", - "requires": { - "@f/map-obj": "^1.2.2" - } - }, - "@material-ui/core": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-3.9.3.tgz", - "integrity": "sha512-REIj62+zEvTgI/C//YL4fZxrCVIySygmpZglsu/Nl5jPqy3CDjZv1F9ubBYorHqmRgeVPh64EghMMWqk4egmfg==", - "requires": { - "@babel/runtime": "^7.2.0", - "@material-ui/system": "^3.0.0-alpha.0", - "@material-ui/utils": "^3.0.0-alpha.2", - "@types/jss": "^9.5.6", - "@types/react-transition-group": "^2.0.8", - "brcast": "^3.0.1", - "classnames": "^2.2.5", - "csstype": "^2.5.2", - "debounce": "^1.1.0", - "deepmerge": "^3.0.0", - "dom-helpers": "^3.2.1", - "hoist-non-react-statics": "^3.2.1", - "is-plain-object": "^2.0.4", - "jss": "^9.8.7", - "jss-camel-case": "^6.0.0", - "jss-default-unit": "^8.0.2", - "jss-global": "^3.0.0", - "jss-nested": "^6.0.1", - "jss-props-sort": "^6.0.0", - "jss-vendor-prefixer": "^7.0.0", - "normalize-scroll-left": "^0.1.2", - "popper.js": "^1.14.1", - "prop-types": "^15.6.0", - "react-event-listener": "^0.6.2", - "react-transition-group": "^2.2.1", - "recompose": "0.28.0 - 0.30.0", - "warning": "^4.0.1" - }, - "dependencies": { - "hoist-non-react-statics": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz", - "integrity": "sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA==", - "requires": { - "react-is": "^16.7.0" - } - }, - "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==" - }, - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - } - } - }, - "@material-ui/system": { - "version": "3.0.0-alpha.2", - "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-3.0.0-alpha.2.tgz", - "integrity": "sha512-odmxQ0peKpP7RQBQ8koly06YhsPzcoVib1vByVPBH4QhwqBXuYoqlCjt02846fYspAqkrWzjxnWUD311EBbxOA==", - "requires": { - "@babel/runtime": "^7.2.0", - "deepmerge": "^3.0.0", - "prop-types": "^15.6.0", - "warning": "^4.0.1" - }, - "dependencies": { - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - } - } - }, - "@material-ui/utils": { - "version": "3.0.0-alpha.3", - "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-3.0.0-alpha.3.tgz", - "integrity": "sha512-rwMdMZptX0DivkqBuC+Jdq7BYTXwqKai5G5ejPpuEDKpWzi1Oxp+LygGw329FrKpuKeiqpcymlqJTjmy+quWng==", - "requires": { - "@babel/runtime": "^7.2.0", - "prop-types": "^15.6.0", - "react-is": "^16.6.3" - }, - "dependencies": { - "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==" - } - } - }, - "@types/jss": { - "version": "9.5.8", - "resolved": "https://registry.npmjs.org/@types/jss/-/jss-9.5.8.tgz", - "integrity": "sha512-bBbHvjhm42UKki+wZpR89j73ykSXg99/bhuKuYYePtpma3ZAnmeGnl0WxXiZhPGsIfzKwCUkpPC0jlrVMBfRxA==", - "requires": { - "csstype": "^2.0.0", - "indefinite-observable": "^1.0.1" - } - }, - "@types/prop-types": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.1.tgz", - "integrity": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==" - }, - "@types/react": { - "version": "16.8.19", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.8.19.tgz", - "integrity": "sha512-QzEzjrd1zFzY9cDlbIiFvdr+YUmefuuRYrPxmkwG0UQv5XF35gFIi7a95m1bNVcFU0VimxSZ5QVGSiBmlggQXQ==", - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-transition-group": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-2.9.2.tgz", - "integrity": "sha512-5Fv2DQNO+GpdPZcxp2x/OQG/H19A01WlmpjVD9cKvVFmoVLOZ9LvBgSWG6pSXIU4og5fgbvGPaCV5+VGkWAEHA==", - "requires": { - "@types/react": "*" - } - }, - "@webassemblyjs/ast": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.8.tgz", - "integrity": "sha512-dOrtdtEyB8sInpl75yLPNksY4sRl0j/+t6aHyB/YA+ab9hV3Fo7FmG12FHzP+2MvWVAJtDb+6eXR5EZbZJ+uVg==", - "dev": true, - "requires": { - "@webassemblyjs/helper-module-context": "1.7.8", - "@webassemblyjs/helper-wasm-bytecode": "1.7.8", - "@webassemblyjs/wast-parser": "1.7.8" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.8.tgz", - "integrity": "sha512-kn2zNKGsbql5i56VAgRYkpG+VazqHhQQZQycT2uXAazrAEDs23gy+Odkh5VblybjnwX2/BITkDtNmSO76hdIvQ==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.8.tgz", - "integrity": "sha512-xUwxDXsd1dUKArJEP5wWM5zxgCSwZApSOJyP1XO7M8rNUChUDblcLQ4FpzTpWG2YeylMwMl1MlP5Ztryiz1x4g==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.8.tgz", - "integrity": "sha512-WXiIMnuvuwlhWvVOm8xEXU9DnHaa3AgAU0ZPfvY8vO1cSsmYb2WbGbHnMLgs43vXnA7XAob9b56zuZaMkxpCBg==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.8.tgz", - "integrity": "sha512-TLQxyD9qGOIdX5LPQOPo0Ernd88U5rHkFb8WAjeMIeA0sPjCHeVPaGqUGGIXjUcblUkjuDAc07bruCcNHUrHDA==", - "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.7.8" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.8.tgz", - "integrity": "sha512-TjK0CnD8hAPkV5mbSp5aWl6SO1+H3WFcjWtixWoy8EMA99YnNzYhpc/WSYWhf7yrhpzkq5tZB0tvLK3Svr3IXA==", - "dev": true - }, - "@webassemblyjs/helper-module-context": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.8.tgz", - "integrity": "sha512-uCutAKR7Nm0VsFixcvnB4HhAyHouNbj0Dx1p7eRjFjXGGZ+N7ftTaG1ZbWCasAEbtwGj54LP8+lkBZdTCPmLGg==", - "dev": true - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.8.tgz", - "integrity": "sha512-AdCCE3BMW6V34WYaKUmPgVHa88t2Z14P4/0LjLwuGkI0X6pf7nzp0CehzVVk51cKm2ymVXjl9dCG+gR1yhITIQ==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.8.tgz", - "integrity": "sha512-BkBhYQuzyl4hgTGOKo87Vdw6f9nj8HhI7WYpI0MCC5qFa5ahrAPOGgyETVdnRbv+Rjukl9MxxfDmVcVC435lDg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/helper-buffer": "1.7.8", - "@webassemblyjs/helper-wasm-bytecode": "1.7.8", - "@webassemblyjs/wasm-gen": "1.7.8" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.8.tgz", - "integrity": "sha512-tOarWChdG1a3y1yqCX0JMDKzrat5tQe4pV6K/TX19BcXsBLYxFQOL1DEDa5KG9syeyvCrvZ+i1+Mv1ExngvktQ==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.8.tgz", - "integrity": "sha512-GCYeGPgUFWJiZuP4NICbcyUQNxNLJIf476Ei+K+jVuuebtLpfvwkvYT6iTUE7oZYehhkor4Zz2g7SJ/iZaPudQ==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.1" - } - }, - "@webassemblyjs/utf8": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.8.tgz", - "integrity": "sha512-9X+f0VV+xNXW2ujfIRSXBJENGE6Qh7bNVKqu3yDjTFB3ar3nsThsGBBKdTG58aXOm2iUH6v28VIf88ymPXODHA==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.8.tgz", - "integrity": "sha512-6D3Hm2gFixrfyx9XjSON4ml1FZTugqpkIz5Awvrou8fnpyprVzcm4X8pyGRtA2Piixjl3DqmX/HB1xdWyE097A==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/helper-buffer": "1.7.8", - "@webassemblyjs/helper-wasm-bytecode": "1.7.8", - "@webassemblyjs/helper-wasm-section": "1.7.8", - "@webassemblyjs/wasm-gen": "1.7.8", - "@webassemblyjs/wasm-opt": "1.7.8", - "@webassemblyjs/wasm-parser": "1.7.8", - "@webassemblyjs/wast-printer": "1.7.8" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.8.tgz", - "integrity": "sha512-a7O/wE6eBeVKKUYgpMK7NOHmMADD85rSXLe3CqrWRDwWff5y3cSVbzpN6Qv3z6C4hdkpq9qyij1Ga1kemOZGvQ==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/helper-wasm-bytecode": "1.7.8", - "@webassemblyjs/ieee754": "1.7.8", - "@webassemblyjs/leb128": "1.7.8", - "@webassemblyjs/utf8": "1.7.8" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.8.tgz", - "integrity": "sha512-3lbQ0PT81NHCdi1sR/7+SNpZadM4qYcTSr62nFFAA7e5lFwJr14M1Gi+A/Y3PgcDWOHYjsaNGPpPU0H03N6Blg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/helper-buffer": "1.7.8", - "@webassemblyjs/wasm-gen": "1.7.8", - "@webassemblyjs/wasm-parser": "1.7.8" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.8.tgz", - "integrity": "sha512-rZ/zlhp9DHR/05zh1MbAjT2t624sjrPP/OkJCjXqzm7ynH+nIdNcn9Ixc+qzPMFXhIrk0rBoQ3to6sEIvHh9jQ==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/helper-api-error": "1.7.8", - "@webassemblyjs/helper-wasm-bytecode": "1.7.8", - "@webassemblyjs/ieee754": "1.7.8", - "@webassemblyjs/leb128": "1.7.8", - "@webassemblyjs/utf8": "1.7.8" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.8.tgz", - "integrity": "sha512-Q/zrvtUvzWuSiJMcSp90fi6gp2nraiHXjTV2VgAluVdVapM4gy1MQn7akja2p6eSBDQpKJPJ6P4TxRkghRS5dg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/floating-point-hex-parser": "1.7.8", - "@webassemblyjs/helper-api-error": "1.7.8", - "@webassemblyjs/helper-code-frame": "1.7.8", - "@webassemblyjs/helper-fsm": "1.7.8", - "@xtuc/long": "4.2.1" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.7.8", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.8.tgz", - "integrity": "sha512-GllIthRtwTxRDAURRNXscu7Napzmdf1jt1gpiZiK/QN4fH0lSGs3OTmvdfsMNP7tqI4B3ZtfaaWRlNIQug6Xyg==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/wast-parser": "1.7.8", - "@xtuc/long": "4.2.1" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz", - "integrity": "sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "accepts": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", - "dev": true, - "requires": { - "mime-types": "~2.1.18", - "negotiator": "0.6.1" - } - }, - "acorn": { - "version": "5.7.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", - "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", - "dev": true - }, - "acorn-dynamic-import": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz", - "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==", - "dev": true, - "requires": { - "acorn": "^5.0.0" - } - }, - "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", - "dev": true, - "requires": { - "acorn": "^3.0.4" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", - "dev": true - } - } - }, - "acorn-walk": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz", - "integrity": "sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==", - "dev": true - }, - "adjust-sourcemap-loader": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.2.0.tgz", - "integrity": "sha512-958oaHHVEXMvsY7v7cC5gEkNIcoaAVIhZ4mBReYVZJOTP9IgKmzLjIOhTtzpLMu+qriXvLsVjJ155EeInp45IQ==", - "dev": true, - "requires": { - "assert": "^1.3.0", - "camelcase": "^1.2.1", - "loader-utils": "^1.1.0", - "lodash.assign": "^4.0.1", - "lodash.defaults": "^3.1.2", - "object-path": "^0.9.2", - "regex-parser": "^2.2.9" - }, - "dependencies": { - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", - "dev": true - }, - "lodash.defaults": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz", - "integrity": "sha1-xzCLGNv4vJNy1wGnNJPGEZK9Liw=", - "dev": true, - "requires": { - "lodash.assign": "^3.0.0", - "lodash.restparam": "^3.0.0" - }, - "dependencies": { - "lodash.assign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", - "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=", - "dev": true, - "requires": { - "lodash._baseassign": "^3.0.0", - "lodash._createassigner": "^3.0.0", - "lodash.keys": "^3.0.0" - } - } - } - } - } - }, - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "ajv-errors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.0.tgz", - "integrity": "sha1-7PAh+hCP0X37Xms4Py3SM+Mf/Fk=", - "dev": true - }, - "ajv-keywords": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", - "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=", - "dev": true - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "dev": true, - "requires": { - "kind-of": "^3.0.2", - "longest": "^1.0.1", - "repeat-string": "^1.5.2" - } - }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", - "dev": true - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", - "dev": true - }, - "ansi-colors": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.1.0.tgz", - "integrity": "sha512-hTv1qPdi+sVEk3jYsdjox5nQI0C9HTbjKShbCdYLKb1LOfNbb7wsF4d7OEKIZoxIHx02tSp3m94jcPW2EfMjmA==", - "dev": true - }, - "ansi-escapes": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=", - "dev": true - }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", - "dev": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "any-observable": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.2.0.tgz", - "integrity": "sha1-xnhwBYADV5AJCD9UrAq6+1wz0kI=", - "dev": true - }, - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "requires": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" - } - }, - "apollo-link": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.3.tgz", - "integrity": "sha512-iL9yS2OfxYhigme5bpTbmRyC+Htt6tyo2fRMHT3K1XRL/C5IQDDz37OjpPy4ndx7WInSvfSZaaOTKFja9VWqSw==", - "requires": { - "apollo-utilities": "^1.0.0", - "zen-observable-ts": "^0.8.10" - } - }, - "apollo-link-ws": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/apollo-link-ws/-/apollo-link-ws-1.0.9.tgz", - "integrity": "sha512-CtKwLE61bCJTW5jrucOMm5PubeAlCl/9i45pg4GKKlAbl0zR4i2dww8TJkYoIY6iCyj4qjKW/uqGD6v5/aVwhg==", - "requires": { - "apollo-link": "^1.2.3" - } - }, - "apollo-utilities": { - "version": "1.0.21", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.21.tgz", - "integrity": "sha512-ZcxELlEl+sDCYBgEMdNXJAsZtRVm8wk4HIA58bMsqYfd1DSAJQEtZ93F0GZgYNAGy3QyaoBeZtbb0/01++G8JQ==", - "requires": { - "fast-json-stable-stringify": "^2.0.0", - "fclone": "^1.0.11" - } - }, - "app-root-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-2.1.0.tgz", - "integrity": "sha1-mL9lmTJ+zqGZMJhm6BQDaP0uZGo=", - "dev": true - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-query": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", - "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", - "dev": true, - "requires": { - "ast-types-flow": "0.0.7", - "commander": "^2.11.0" - } - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", - "dev": true - }, - "array-includes": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz", - "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=", - "dev": true, - "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.7.0" - } - }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", - "dev": true, - "requires": { - "array-uniq": "^1.0.1" - } - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", - "dev": true, - "requires": { - "util": "0.10.3" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", - "dev": true - }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" - }, - "async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", - "dev": true - }, - "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "autoprefixer": { - "version": "6.7.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", - "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", - "dev": true, - "requires": { - "browserslist": "^1.7.6", - "caniuse-db": "^1.0.30000634", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^5.2.16", - "postcss-value-parser": "^3.2.3" - }, - "dependencies": { - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "dev": true, - "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" - } - } - } - }, - "autoprefixer-core": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/autoprefixer-core/-/autoprefixer-core-5.2.1.tgz", - "integrity": "sha1-5kDEFK5Bmq4hwa1DyOoPPbgqVm0=", - "dev": true, - "requires": { - "browserslist": "~0.4.0", - "caniuse-db": "^1.0.30000214", - "num2fraction": "^1.1.0", - "postcss": "~4.1.12" - }, - "dependencies": { - "browserslist": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-0.4.0.tgz", - "integrity": "sha1-O9SrkZncG5FQ1NbbpNnTqrvIbdQ=", - "dev": true, - "requires": { - "caniuse-db": "^1.0.30000153" - } - }, - "js-base64": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", - "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", - "dev": true - }, - "postcss": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz", - "integrity": "sha1-TESbTIr53zyvbTf44eV10DYXWNw=", - "dev": true, - "requires": { - "es6-promise": "~2.3.0", - "js-base64": "~2.1.8", - "source-map": "~0.4.2" - } - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", - "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" - }, - "axobject-query": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.1.tgz", - "integrity": "sha1-Bd+nBa2orZ25k/polvItOVsLCgc=", - "dev": true, - "requires": { - "ast-types-flow": "0.0.7" - } - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - } - } - }, - "babel-eslint": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-9.0.0.tgz", - "integrity": "sha512-itv1MwE3TMbY0QtNfeL7wzak1mV47Uy+n6HtSOO4Xd7rvmO+tsGQSgyOEEgo6Y2vHZKZphaoelNeSVj4vkLA1g==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.0.0", - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", - "eslint-scope": "3.7.1", - "eslint-visitor-keys": "^1.0.0" - }, - "dependencies": { - "@babel/parser": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz", - "integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg==", - "dev": true - } - } - }, - "babel-loader": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.5.tgz", - "integrity": "sha512-NTnHnVRd2JnRqPC0vW+iOQWU5pchDbYXsG2E6DMXEpMfUcQKclF9gmf3G3ZMhzG7IG9ji4coL0cm+FxeWxDpnw==", - "dev": true, - "requires": { - "find-cache-dir": "^2.0.0", - "loader-utils": "^1.0.2", - "mkdirp": "^0.5.1", - "util.promisify": "^1.0.0" - }, - "dependencies": { - "find-cache-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.0.0.tgz", - "integrity": "sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz", - "integrity": "sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - } - } - }, - "babel-plugin-istanbul": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz", - "integrity": "sha512-RNNVv2lsHAXJQsEJ5jonQwrJVWK8AcZpG1oxhnjCUaAjL7xahYLANhPUZbzEQHjKy1NMYUwn+0NPKQc8iSY4xQ==", - "dev": true, - "requires": { - "find-up": "^3.0.0", - "istanbul-lib-instrument": "^3.0.0", - "test-exclude": "^5.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - } - } - }, - "babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.18.tgz", - "integrity": "sha512-azed2nHo8vmOy7EY26KH+om5oOcWRs0r1U8wOmhwta+SBMMnmJ4H6yaBZRCcHBtMeWp9AVhvBTL/lpR1kEx+Xw==", - "dev": true - }, - "babel-plugin-typecheck": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/babel-plugin-typecheck/-/babel-plugin-typecheck-2.0.1.tgz", - "integrity": "sha1-UNfBNK+sA4s/9jt+/ubxISFdzZw=", - "dev": true - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "dev": true, - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - }, - "dependencies": { - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true - } - } - }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=" - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "base16": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", - "integrity": "sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=", - "dev": true - }, - "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "optional": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "better-npm-run": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/better-npm-run/-/better-npm-run-0.1.1.tgz", - "integrity": "sha512-SBBYsUsb6bYcUMF9QUWy39GX5kzD4CoRBP11gx/k5jYkUr4Tr+irAokIeQX5FgfCRz0Q27rt8U0J4D2TlRgQFA==", - "dev": true, - "requires": { - "commander": "^2.9.0", - "dotenv": "^2.0.0", - "object-assign": "^4.0.1" - }, - "dependencies": { - "dotenv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-2.0.0.tgz", - "integrity": "sha1-vXWcNXqqcDZeAclrewvsCKbg2Uk=", - "dev": true - } - } - }, - "bfj": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.1.tgz", - "integrity": "sha512-+GUNvzHR4nRyGybQc2WpNJL4MJazMuvf92ueIyA0bIkPRwhhQu3IfZQ2PSoVPpCBJfmoSdOxu5rnotfFLlvYRQ==", - "dev": true, - "requires": { - "bluebird": "^3.5.1", - "check-types": "^7.3.0", - "hoopy": "^0.1.2", - "tryer": "^1.0.0" - }, - "dependencies": { - "bluebird": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz", - "integrity": "sha512-FG+nFEZChJrbQ9tIccIfZJBz3J7mLrAhxakAbnrJWn8d7aKOC+LWifa0G+p4ZqKp4y13T7juYvdhq9NzKdsrjw==", - "dev": true - } - } - }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "binary-extensions": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz", - "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==" - }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "dev": true, - "requires": { - "inherits": "~2.0.0" - } - }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", - "dev": true - }, - "body-parser": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", - "dev": true, - "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.1", - "http-errors": "~1.6.2", - "iconv-lite": "0.4.19", - "on-finished": "~2.3.0", - "qs": "6.5.1", - "raw-body": "2.3.2", - "type-is": "~1.6.15" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", - "dev": true - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", - "dev": true - } - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - }, - "bootstrap-loader": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/bootstrap-loader/-/bootstrap-loader-2.2.0.tgz", - "integrity": "sha512-LG8/klminqsCCtPDDCMSCA50LdzmoRvC7JpvJAFFeqWAbSfSY0hZkPUEk5X4wygf33JuFGyiJ7CH/KVnT65I6A==", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "escape-regexp": "0.0.1", - "exports-loader": "^0.6.3", - "js-yaml": "^3.7.0", - "loader-utils": "^1.0.2", - "resolve": "^1.1.7", - "semver": "^5.3.0", - "strip-json-comments": "^2.0.1" - } - }, - "bootstrap-sass": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz", - "integrity": "sha1-ZZbHq0D2Y3OTMjqwvIDQZPxjBJg=", - "dev": true - }, - "brace": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/brace/-/brace-0.11.1.tgz", - "integrity": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "brcast": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/brcast/-/brcast-3.0.1.tgz", - "integrity": "sha512-eI3yqf9YEqyGl9PCNTR46MGvDylGtaHjalcz6Q3fAPnP/PhpKkkve52vFdfGpwp4VUvK6LUr4TQN+2stCrEwTg==" - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "dev": true, - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.4.1.tgz", - "integrity": "sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30000929", - "electron-to-chromium": "^1.3.103", - "node-releases": "^1.1.3" - }, - "dependencies": { - "electron-to-chromium": { - "version": "1.3.113", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz", - "integrity": "sha512-De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g==", - "dev": true - } - } - }, - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - }, - "cacache": { - "version": "10.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", - "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", - "dev": true, - "requires": { - "bluebird": "^3.5.1", - "chownr": "^1.0.1", - "glob": "^7.1.2", - "graceful-fs": "^4.1.11", - "lru-cache": "^4.1.1", - "mississippi": "^2.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.2", - "ssri": "^5.2.4", - "unique-filename": "^1.1.0", - "y18n": "^4.0.0" - }, - "dependencies": { - "bluebird": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.2.tgz", - "integrity": "sha512-dhHTWMI7kMx5whMQntl7Vr9C6BvV10lFXDAasnqnrMYhXVCzzk6IO9Fo2L75jXHT07WrOngL1WDXOp+yYS91Yg==", - "dev": true - }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true - } - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "caller-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", - "dev": true, - "requires": { - "callsites": "^0.2.0" - } - }, - "callsites": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=", - "dev": true - }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, - "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - } - }, - "caniuse-api": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", - "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", - "dev": true, - "requires": { - "browserslist": "^1.3.6", - "caniuse-db": "^1.0.30000529", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - }, - "dependencies": { - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "dev": true, - "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" - } - } - } - }, - "caniuse-db": { - "version": "1.0.30000889", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000889.tgz", - "integrity": "sha512-Rf9Sbm2KS7s6Rk8iNeI5zJdquqctXBXAfy/bb1tCCYRds5RAaHNdyt2D4z8TSRToDkYsAwiSBV/bFHR+4IgTiw==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30000938", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000938.tgz", - "integrity": "sha512-ekW8NQ3/FvokviDxhdKLZZAx7PptXNwxKgXtnR5y+PR3hckwuP3yJ1Ir+4/c97dsHNqtAyfKUGdw8P4EYzBNgw==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "dev": true, - "requires": { - "align-text": "^0.1.3", - "lazy-cache": "^1.0.3" - } - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "change-emitter": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/change-emitter/-/change-emitter-0.1.6.tgz", - "integrity": "sha1-6LL+PX8at9aaMhma/5HqaTFAlRU=" - }, - "chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", - "dev": true - }, - "check-types": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-7.4.0.tgz", - "integrity": "sha512-YbulWHdfP99UfZ73NcUDlNJhEIDgm9Doq9GhpyXbF+7Aegi3CVV7qqMCKTTqJxlvEvnQBp9IA+dxsGN6xK/nSg==", - "dev": true - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "requires": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" - } - }, - "chownr": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", - "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==" - }, - "chrome-trace-event": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz", - "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", - "dev": true - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "circular-json": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", - "dev": true - }, - "clap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz", - "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==", - "dev": true, - "requires": { - "chalk": "^1.1.3" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - }, - "clean-webpack-plugin": { - "version": "0.1.19", - "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-0.1.19.tgz", - "integrity": "sha512-M1Li5yLHECcN2MahoreuODul5LkjohJGFxLPTjl3j1ttKrF5rgjZET1SJduuqxLAuT1gAPOdkhg03qcaaU1KeA==", - "dev": true, - "requires": { - "rimraf": "^2.6.1" - } - }, - "cli-cursor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", - "dev": true, - "requires": { - "restore-cursor": "^1.0.1" - } - }, - "cli-spinners": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-0.1.2.tgz", - "integrity": "sha1-u3ZNiOGF+54eaiofGXcjGPYF4xw=", - "dev": true - }, - "cli-table3": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz", - "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==", - "dev": true, - "requires": { - "colors": "^1.1.2", - "object-assign": "^4.1.0", - "string-width": "^2.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "colors": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", - "integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==", - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "cli-truncate": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", - "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", - "dev": true, - "requires": { - "slice-ansi": "0.0.4", - "string-width": "^1.0.1" - } - }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "dev": true - }, - "clipboard": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.4.tgz", - "integrity": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==", - "requires": { - "good-listener": "^1.2.2", - "select": "^1.1.2", - "tiny-emitter": "^2.0.0" - } - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" - }, - "clone-deep": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz", - "integrity": "sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==", - "dev": true, - "requires": { - "for-own": "^1.0.0", - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.0", - "shallow-clone": "^1.0.0" - }, - "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - }, - "coa": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", - "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", - "dev": true, - "requires": { - "q": "^1.1.2" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "codemirror": { - "version": "5.48.2", - "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.48.2.tgz", - "integrity": "sha512-i9VsmC8AfA5ji6EDIZ+aoSe4vt9FcwPLdHB1k1ItFbVyuOFRrcfvnoKqwZlC7EVA2UmTRiNEypE4Uo7YvzVY8Q==" - }, - "codemirror-graphql": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/codemirror-graphql/-/codemirror-graphql-0.8.3.tgz", - "integrity": "sha512-ZipSnPXFKDMThfvfTKTAt1dQmuGctVNann8hTZg6017+vwOcGpIqCuQIZLRDw/Y3zZfCyydRARHgbSydSCXpow==", - "requires": { - "graphql-language-service-interface": "^1.3.2", - "graphql-language-service-parser": "^1.2.2" - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", - "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", - "dev": true, - "requires": { - "clone": "^1.0.2", - "color-convert": "^1.3.0", - "color-string": "^0.3.0" - }, - "dependencies": { - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", - "dev": true - } - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "color-string": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", - "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", - "dev": true, - "requires": { - "color-name": "^1.0.0" - } - }, - "colormin": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", - "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", - "dev": true, - "requires": { - "color": "^0.11.0", - "css-color-names": "0.0.4", - "has": "^1.0.1" - } - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - }, - "combined-stream": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", - "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.18.0.tgz", - "integrity": "sha512-6CYPa+JP2ftfRU2qkDK+UTVeQYosOg/2GbcjIcKPHfinyOLPVGXu/ovN86RP49Re5ndJK1N0kuiidFFuepc4ZQ==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "commonmark": { - "version": "0.28.1", - "resolved": "https://registry.npmjs.org/commonmark/-/commonmark-0.28.1.tgz", - "integrity": "sha1-Buq41SM4uDn6Gi11rwCF7tGxvq4=", - "requires": { - "entities": "~ 1.1.1", - "mdurl": "~ 1.0.1", - "minimist": "~ 1.2.0", - "string.prototype.repeat": "^0.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concat-stream": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", - "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "concurrently": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-3.6.1.tgz", - "integrity": "sha512-/+ugz+gwFSEfTGUxn0KHkY+19XPRTXR8+7oUK/HxgiN1n7FjeJmkrbSiXAJfyQ0zORgJYPaenmymwon51YXH9Q==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "commander": "2.6.0", - "date-fns": "^1.23.0", - "lodash": "^4.5.1", - "read-pkg": "^3.0.0", - "rx": "2.3.24", - "spawn-command": "^0.0.2-1", - "supports-color": "^3.2.3", - "tree-kill": "^1.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "commander": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz", - "integrity": "sha1-nfflL7Kgyw+4kFjugMMQQiXzfh0=", - "dev": true - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - }, - "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - } - } - } - } - }, - "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "requires": { - "date-now": "^0.1.4" - } - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, - "contains-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", - "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", - "dev": true - }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", - "dev": true - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true - }, - "convert-source-map": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", - "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", - "dev": true - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" - }, - "copy-to-clipboard": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.0.8.tgz", - "integrity": "sha512-c3GdeY8qxCHGezVb1EFQfHYK/8NZRemgcTIzPq7PuxjHAf/raKibn2QdhHPb/y6q74PMgH6yizaDZlRmw6QyKw==", - "requires": { - "toggle-selection": "^1.0.3" - } - }, - "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cosmiconfig": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz", - "integrity": "sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==", - "dev": true, - "requires": { - "is-directory": "^0.3.1", - "js-yaml": "^3.9.0", - "parse-json": "^4.0.0", - "require-from-string": "^2.0.1" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - } - } - }, - "crc": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz", - "integrity": "sha1-naHpgOO9RPxck79as9ozeNheRms=", - "dev": true - }, - "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.0.0" - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "create-react-class": { - "version": "15.6.3", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.3.tgz", - "integrity": "sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg==", - "requires": { - "fbjs": "^0.8.9", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - }, - "cross-fetch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.2.2.tgz", - "integrity": "sha1-pH/09/xxLauo9qaVoRyUhEDUVyM=", - "requires": { - "node-fetch": "2.1.2", - "whatwg-fetch": "2.0.4" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", - "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - } - }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", - "dev": true - }, - "css-list": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/css-list/-/css-list-0.1.3.tgz", - "integrity": "sha1-p7M7RBn4PUEjIN3pEzoNEASUjXA=", - "dev": true - }, - "css-loader": { - "version": "0.28.11", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz", - "integrity": "sha512-wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==", - "dev": true, - "requires": { - "babel-code-frame": "^6.26.0", - "css-selector-tokenizer": "^0.7.0", - "cssnano": "^3.10.0", - "icss-utils": "^2.1.0", - "loader-utils": "^1.0.2", - "lodash.camelcase": "^4.3.0", - "object-assign": "^4.1.1", - "postcss": "^5.0.6", - "postcss-modules-extract-imports": "^1.2.0", - "postcss-modules-local-by-default": "^1.2.0", - "postcss-modules-scope": "^1.1.0", - "postcss-modules-values": "^1.3.0", - "postcss-value-parser": "^3.3.0", - "source-list-map": "^2.0.0" - } - }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-selector-tokenizer": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz", - "integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=", - "dev": true, - "requires": { - "cssesc": "^0.1.0", - "fastparse": "^1.1.1", - "regexpu-core": "^1.0.0" - }, - "dependencies": { - "regexpu-core": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", - "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", - "dev": true, - "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - } - } - } - }, - "css-vendor": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-0.3.8.tgz", - "integrity": "sha1-ZCHP0wNM5mT+dnOXL9ARn8KJQfo=", - "requires": { - "is-in-browser": "^1.0.2" - } - }, - "css-what": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz", - "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=" - }, - "cssesc": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz", - "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=", - "dev": true - }, - "cssnano": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", - "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", - "dev": true, - "requires": { - "autoprefixer": "^6.3.1", - "decamelize": "^1.1.2", - "defined": "^1.0.0", - "has": "^1.0.1", - "object-assign": "^4.0.1", - "postcss": "^5.0.14", - "postcss-calc": "^5.2.0", - "postcss-colormin": "^2.1.8", - "postcss-convert-values": "^2.3.4", - "postcss-discard-comments": "^2.0.4", - "postcss-discard-duplicates": "^2.0.1", - "postcss-discard-empty": "^2.0.1", - "postcss-discard-overridden": "^0.1.1", - "postcss-discard-unused": "^2.2.1", - "postcss-filter-plugins": "^2.0.0", - "postcss-merge-idents": "^2.1.5", - "postcss-merge-longhand": "^2.0.1", - "postcss-merge-rules": "^2.0.3", - "postcss-minify-font-values": "^1.0.2", - "postcss-minify-gradients": "^1.0.1", - "postcss-minify-params": "^1.0.4", - "postcss-minify-selectors": "^2.0.4", - "postcss-normalize-charset": "^1.1.0", - "postcss-normalize-url": "^3.0.7", - "postcss-ordered-values": "^2.1.0", - "postcss-reduce-idents": "^2.2.2", - "postcss-reduce-initial": "^1.0.0", - "postcss-reduce-transforms": "^1.0.3", - "postcss-svgo": "^2.1.1", - "postcss-unique-selectors": "^2.0.2", - "postcss-value-parser": "^3.2.3", - "postcss-zindex": "^2.0.1" - } - }, - "csso": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", - "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", - "dev": true, - "requires": { - "clap": "^1.0.9", - "source-map": "^0.5.3" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "csstype": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.4.tgz", - "integrity": "sha512-lAJUJP3M6HxFXbqtGRc0iZrdyeN+WzOWeY0q/VnFzI+kqVrYIzC7bWlKqCW7oCIdzoPkvfp82EVvrTlQ8zsWQg==" - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "dev": true, - "requires": { - "array-find-index": "^1.0.1" - } - }, - "cyclist": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", - "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", - "dev": true - }, - "damerau-levenshtein": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz", - "integrity": "sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=", - "dev": true - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "date-fns": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.29.0.tgz", - "integrity": "sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw==", - "dev": true - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", - "dev": true - }, - "debounce": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz", - "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", - "dev": true - }, - "deep-diff": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/deep-diff/-/deep-diff-0.3.8.tgz", - "integrity": "sha1-wB3mPvsO7JeYgB1Ax+Da4ltYLIQ=" - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "deepmerge": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.2.0.tgz", - "integrity": "sha512-6+LuZGU7QCNUnAJyX8cIrlzoEgggTM6B7mm+znKOX4t5ltluT9KLjN6g61ECMS0LTsLW7yDpNoxhix5FZcrIow==" - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", - "dev": true - }, - "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "dev": true, - "requires": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "delegate": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", - "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "diff-match-patch": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.4.tgz", - "integrity": "sha512-Uv3SW8bmH9nAtHKaKSanOQmj2DnlH65fUpcrMdfdaOxUG02QQ4YGZ8AE7kKOMisF7UqvOlGKVYWRvezdncW9lg==" - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-converter": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.1.4.tgz", - "integrity": "sha1-pF71cnuJDJv/5tfIduexnLDhfzs=", - "requires": { - "utila": "~0.3" - }, - "dependencies": { - "utila": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.3.3.tgz", - "integrity": "sha1-1+jn1+MJEHCSsF+NloiCTWM6QiY=" - } - } - }, - "dom-helpers": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.3.1.tgz", - "integrity": "sha512-2Sm+JaYn74OiTM2wHvxJOo3roiq/h25Yi69Fqk269cNUwIXsCvATB6CRSFC9Am/20G2b28hGv/+7NiWydIrPvg==" - }, - "dom-serializer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", - "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", - "requires": { - "domelementtype": "~1.1.1", - "entities": "~1.1.1" - }, - "dependencies": { - "domelementtype": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", - "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=" - } - } - }, - "dom-walk": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", - "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=", - "dev": true - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, - "domelementtype": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", - "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=" - }, - "domhandler": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.1.0.tgz", - "integrity": "sha1-0mRvXlf2w7qxHPbLBdPArPdBJZQ=", - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "dotenv": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz", - "integrity": "sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow==", - "dev": true - }, - "duplexer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", - "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", - "dev": true - }, - "duplexify": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", - "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "optional": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "ejs": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz", - "integrity": "sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.73", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.73.tgz", - "integrity": "sha512-6PIg7v9zRoVGh6EheRF8h6Plti+3Yo/qtHobS4/Htyt53DNHmKKGFqSae1AIk0k1S4gCQvt7I2WgpbuZNcDY+g==", - "dev": true - }, - "elegant-spinner": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", - "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", - "dev": true - }, - "elliptic": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", - "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", - "dev": true, - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "emoji-regex": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.5.1.tgz", - "integrity": "sha512-PAHp6TxrCy7MGMFidro8uikr+zlJJKJ/Q6mm2ExZ7HwkyR9lSVFfE3kt36qcwa24BQL7y0G9axycGjK1A/0uNQ==", - "dev": true - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true - }, - "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "requires": { - "iconv-lite": "~0.4.13" - } - }, - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", - "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", - "tapable": "^1.0.0" - } - }, - "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", - "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", - "dev": true, - "requires": { - "es-to-primitive": "^1.1.1", - "function-bind": "^1.1.1", - "has": "^1.0.1", - "is-callable": "^1.1.3", - "is-regex": "^1.0.4" - } - }, - "es-to-primitive": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", - "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-promise": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz", - "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=", - "dev": true - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", - "dev": true - }, - "escape-regexp": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/escape-regexp/-/escape-regexp-0.0.1.tgz", - "integrity": "sha1-9EvaEtRbvfnLf4Yu5+SCez3TIlQ=", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "eslint": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz", - "integrity": "sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ==", - "dev": true, - "requires": { - "ajv": "^5.3.0", - "babel-code-frame": "^6.22.0", - "chalk": "^2.1.0", - "concat-stream": "^1.6.0", - "cross-spawn": "^5.1.0", - "debug": "^3.1.0", - "doctrine": "^2.1.0", - "eslint-scope": "^3.7.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^3.5.4", - "esquery": "^1.0.0", - "esutils": "^2.0.2", - "file-entry-cache": "^2.0.0", - "functional-red-black-tree": "^1.0.1", - "glob": "^7.1.2", - "globals": "^11.0.1", - "ignore": "^3.3.3", - "imurmurhash": "^0.1.4", - "inquirer": "^3.0.6", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.9.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.2", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.2", - "pluralize": "^7.0.0", - "progress": "^2.0.0", - "regexpp": "^1.0.1", - "require-uncached": "^1.0.3", - "semver": "^5.3.0", - "strip-ansi": "^4.0.0", - "strip-json-comments": "~2.0.1", - "table": "4.0.2", - "text-table": "~0.2.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "debug": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.5.tgz", - "integrity": "sha512-D61LaDQPQkxJ5AUM2mbSJRbPkNs/TmdmOeLAi1hgDkpDfIfetSrjmWhccwtuResSwMbACjx/xXQofvM9CE/aeg==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "globals": { - "version": "11.8.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.8.0.tgz", - "integrity": "sha512-io6LkyPVuzCHBSQV9fmOwxZkUk6nIaGmxheLDgmuFv89j0fm2aqDbIXKAGfzCMHqz3HLF2Zf8WSG6VqMh2qFmA==", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "progress": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", - "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "eslint-config-airbnb": { - "version": "16.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-16.1.0.tgz", - "integrity": "sha512-zLyOhVWhzB/jwbz7IPSbkUuj7X2ox4PHXTcZkEmDqTvd0baJmJyuxlFPDlZOE/Y5bC+HQRaEkT3FoHo9wIdRiw==", - "dev": true, - "requires": { - "eslint-config-airbnb-base": "^12.1.0" - } - }, - "eslint-config-airbnb-base": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz", - "integrity": "sha512-/vjm0Px5ZCpmJqnjIzcFb9TKZrKWz0gnuG/7Gfkt0Db1ELJR51xkZth+t14rYdqWgX836XbuxtArbIHlVhbLBA==", - "dev": true, - "requires": { - "eslint-restricted-globals": "^0.1.1" - } - }, - "eslint-import-resolver-node": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz", - "integrity": "sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==", - "dev": true, - "requires": { - "debug": "^2.6.9", - "resolve": "^1.5.0" - } - }, - "eslint-loader": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.9.0.tgz", - "integrity": "sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg==", - "dev": true, - "requires": { - "loader-fs-cache": "^1.0.0", - "loader-utils": "^1.0.2", - "object-assign": "^4.0.1", - "object-hash": "^1.1.4", - "rimraf": "^2.6.1" - } - }, - "eslint-module-utils": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz", - "integrity": "sha1-snA2LNiLGkitMIl2zn+lTphBF0Y=", - "dev": true, - "requires": { - "debug": "^2.6.8", - "pkg-dir": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", - "dev": true, - "requires": { - "find-up": "^1.0.0" - } - } - } - }, - "eslint-plugin-chai-friendly": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-chai-friendly/-/eslint-plugin-chai-friendly-0.4.1.tgz", - "integrity": "sha512-hkpLN7VVoGGsofZjUhcQ+sufC3FgqMJwD0DvAcRfxY1tVRyQyVsqpaKnToPHJQOrRo0FQ0fSEDwW2gr4rsNdGA==", - "dev": true - }, - "eslint-plugin-import": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz", - "integrity": "sha512-FpuRtniD/AY6sXByma2Wr0TXvXJ4nA/2/04VPlfpmUDPOpOY264x+ILiwnrk/k4RINgDAyFZByxqPUbSQ5YE7g==", - "dev": true, - "requires": { - "contains-path": "^0.1.0", - "debug": "^2.6.8", - "doctrine": "1.5.0", - "eslint-import-resolver-node": "^0.3.1", - "eslint-module-utils": "^2.2.0", - "has": "^1.0.1", - "lodash": "^4.17.4", - "minimatch": "^3.0.3", - "read-pkg-up": "^2.0.0", - "resolve": "^1.6.0" - }, - "dependencies": { - "doctrine": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", - "dev": true, - "requires": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" - } - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" - } - }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", - "dev": true, - "requires": { - "pify": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", - "dev": true, - "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - } - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", - "dev": true, - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - } - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.1.tgz", - "integrity": "sha512-JsxNKqa3TwmPypeXNnI75FntkUktGzI1wSa1LgNZdSOMI+B4sxnr1lSF8m8lPiz4mKiC+14ysZQM4scewUrP7A==", - "dev": true, - "requires": { - "aria-query": "^3.0.0", - "array-includes": "^3.0.3", - "ast-types-flow": "^0.0.7", - "axobject-query": "^2.0.1", - "damerau-levenshtein": "^1.0.4", - "emoji-regex": "^6.5.1", - "has": "^1.0.3", - "jsx-ast-utils": "^2.0.1" - } - }, - "eslint-plugin-react": { - "version": "7.11.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz", - "integrity": "sha512-cVVyMadRyW7qsIUh3FHp3u6QHNhOgVrLQYdQEB1bPWBsgbNCHdFAeNMquBMCcZJu59eNthX053L70l7gRt4SCw==", - "dev": true, - "requires": { - "array-includes": "^3.0.3", - "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.0.1", - "prop-types": "^15.6.2" - } - }, - "eslint-restricted-globals": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz", - "integrity": "sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=", - "dev": true - }, - "eslint-scope": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz", - "integrity": "sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", - "dev": true - }, - "espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", - "dev": true, - "requires": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "esquery": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", - "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", - "dev": true, - "requires": { - "estraverse": "^4.0.0" - } - }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", - "dev": true, - "requires": { - "estraverse": "^4.1.0" - } - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true - }, - "eventemitter3": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz", - "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==" - }, - "events": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", - "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", - "dev": true - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", - "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha1-KueOhdmJQVhnCwPUe+wfA72Ru50=" - }, - "exit-hook": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=", - "dev": true - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "requires": { - "fill-range": "^2.1.0" - } - }, - "exports-loader": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz", - "integrity": "sha1-1w/GEhl1s1/BKDDPUnVL4nQPyIY=", - "dev": true, - "requires": { - "loader-utils": "^1.0.2", - "source-map": "0.5.x" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "express": { - "version": "4.16.3", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz", - "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "array-flatten": "1.1.1", - "body-parser": "1.18.2", - "content-disposition": "0.5.2", - "content-type": "~1.0.4", - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.1.1", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.3", - "qs": "6.5.1", - "range-parser": "~1.2.0", - "safe-buffer": "5.1.1", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true - } - } - }, - "express-session": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz", - "integrity": "sha512-r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA==", - "dev": true, - "requires": { - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "crc": "3.4.4", - "debug": "2.6.9", - "depd": "~1.1.1", - "on-headers": "~1.0.1", - "parseurl": "~1.3.2", - "uid-safe": "~2.1.5", - "utils-merge": "1.0.1" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", - "dev": true, - "requires": { - "chardet": "^0.4.0", - "iconv-lite": "^0.4.17", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - } - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" - } - }, - "extract-hoc": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/extract-hoc/-/extract-hoc-0.0.5.tgz", - "integrity": "sha1-wGjkkNSSzmG/D2sSGGutcVmHE5w=", - "dev": true - }, - "extract-text-webpack-plugin": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz", - "integrity": "sha512-bt/LZ4m5Rqt/Crl2HiKuAl/oqg0psx1tsTLkvWbJen1CtD+fftkZhMaQ9HOtY2gWsl2Wq+sABmMVi9z3DhKWQQ==", - "dev": true, - "requires": { - "async": "^2.4.1", - "loader-utils": "^1.1.0", - "schema-utils": "^0.3.0", - "webpack-sources": "^1.0.1" - }, - "dependencies": { - "async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", - "dev": true, - "requires": { - "lodash": "^4.17.10" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fastparse": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz", - "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=", - "dev": true - }, - "fbjs": { - "version": "0.8.17", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", - "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", - "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" - }, - "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" - } - } - }, - "fclone": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/fclone/-/fclone-1.0.11.tgz", - "integrity": "sha1-EOhdo4v+p/xZk0HClu4ddyZu5kA=" - }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - } - }, - "file-entry-cache": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", - "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", - "dev": true, - "requires": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" - } - }, - "file-loader": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", - "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==", - "dev": true, - "requires": { - "loader-utils": "^1.0.2", - "schema-utils": "^0.4.5" - }, - "dependencies": { - "ajv": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz", - "integrity": "sha512-4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" - }, - "filesize": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", - "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", - "dev": true - }, - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", - "unpipe": "~1.0.0" - } - }, - "find-cache-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^2.0.0" - } - }, - "find-parent-dir": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.0.tgz", - "integrity": "sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ=", - "dev": true - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "flat-cache": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", - "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", - "dev": true, - "requires": { - "circular-json": "^0.3.1", - "del": "^2.0.2", - "graceful-fs": "^4.1.2", - "write": "^0.2.1" - } - }, - "flatten": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", - "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=", - "dev": true - }, - "flush-write-stream": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz", - "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.4" - } - }, - "font-awesome": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", - "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=", - "dev": true - }, - "font-awesome-webpack": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/font-awesome-webpack/-/font-awesome-webpack-0.0.4.tgz", - "integrity": "sha1-bXWEdGzGu8grRjTUkTnEe1bmEao=", - "dev": true, - "requires": { - "css-loader": "~0.17.0", - "less-loader": "~2.2.0", - "style-loader": "~0.12.3" - }, - "dependencies": { - "balanced-match": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz", - "integrity": "sha1-e8ZYtL7WHu5CStdPdfXD4sTfPMc=", - "dev": true - }, - "color": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/color/-/color-0.10.1.tgz", - "integrity": "sha1-wEGI34KiCd3rzOzazT7DIPGTc58=", - "dev": true, - "requires": { - "color-convert": "^0.5.3", - "color-string": "^0.3.0" - } - }, - "color-convert": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", - "integrity": "sha1-vbbGnOZg+t/+CwAHzER+G59ygr0=", - "dev": true - }, - "css-loader": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.17.0.tgz", - "integrity": "sha1-od3y34a6CPvSJ4G7Mzefw7CNpus=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.5.1", - "cssnano": "^2.6.1", - "loader-utils": "~0.2.2", - "postcss": "^4.1.11", - "postcss-modules-extract-imports": "0.0.5", - "postcss-modules-local-by-default": "0.0.12", - "postcss-modules-scope": "0.0.8", - "source-list-map": "^0.1.4" - } - }, - "css-selector-tokenizer": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.5.4.tgz", - "integrity": "sha1-E5uv00o1/QwUKEhwSeBpnm9qLCE=", - "dev": true, - "requires": { - "cssesc": "^0.1.0", - "fastparse": "^1.1.1" - } - }, - "cssnano": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-2.6.1.tgz", - "integrity": "sha1-f7NyEsz/RNPpNuAmxvZ14xR9gCQ=", - "dev": true, - "requires": { - "autoprefixer-core": "^5.2.1", - "balanced-match": "^0.2.0", - "css-list": "^0.1.2", - "decamelize": "^1.0.0", - "defined": "^1.0.0", - "indexes-of": "^1.0.1", - "minimist": "^1.1.3", - "postcss": "^4.1.16", - "postcss-calc": "^4.1.0", - "postcss-colormin": "^1.2.5", - "postcss-convert-values": "^1.2.4", - "postcss-discard-comments": "^1.2.1", - "postcss-discard-duplicates": "^1.1.5", - "postcss-discard-empty": "^1.1.2", - "postcss-discard-unused": "^1.0.3", - "postcss-filter-plugins": "^1.0.0", - "postcss-font-family": "^1.2.1", - "postcss-merge-idents": "^1.0.1", - "postcss-merge-longhand": "^1.0.1", - "postcss-merge-rules": "^1.3.5", - "postcss-minify-font-weight": "^1.0.1", - "postcss-minify-selectors": "^1.5.0", - "postcss-normalize-url": "^2.1.1", - "postcss-ordered-values": "^1.0.1", - "postcss-reduce-idents": "^1.0.2", - "postcss-single-charset": "^0.3.0", - "postcss-unique-selectors": "^1.0.0", - "postcss-zindex": "^1.1.3", - "read-file-stdin": "^0.2.0", - "write-file-stdout": "0.0.2" - } - }, - "flatten": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-0.0.1.tgz", - "integrity": "sha1-VURAdm2goNYDmZ9DNFP2wvxqdcE=", - "dev": true - }, - "js-base64": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", - "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", - "dev": true - }, - "less-loader": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-2.2.3.tgz", - "integrity": "sha1-ttj4E5yEk98J2ZKpOgBzSwj4RSg=", - "dev": true, - "requires": { - "loader-utils": "^0.2.5" - } - }, - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "postcss": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz", - "integrity": "sha1-TESbTIr53zyvbTf44eV10DYXWNw=", - "dev": true, - "requires": { - "es6-promise": "~2.3.0", - "js-base64": "~2.1.8", - "source-map": "~0.4.2" - } - }, - "postcss-calc": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-4.1.0.tgz", - "integrity": "sha1-vuf/ySjHmGmZ7vF7LdiXDIk31HI=", - "dev": true, - "requires": { - "postcss": "^4.1.11", - "postcss-message-helpers": "^2.0.0", - "reduce-css-calc": "^1.2.0" - } - }, - "postcss-colormin": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-1.2.7.tgz", - "integrity": "sha1-63Pb6DgE6pGYNWsTL2+Z9GAP1lQ=", - "dev": true, - "requires": { - "color": "^0.10.1", - "colormin": "^1.0.3", - "postcss": "^4.1.16", - "reduce-function-call": "^1.0.1" - } - }, - "postcss-convert-values": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-1.3.1.tgz", - "integrity": "sha1-I/GHxhP6d7Y3p4BblIteCJlpDkY=", - "dev": true, - "requires": { - "postcss": "^4.1.16", - "postcss-value-parser": "^1.1.0" - } - }, - "postcss-discard-comments": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-1.2.1.tgz", - "integrity": "sha1-hR3Ka5NUwPtjFssaEEj29eOWCtA=", - "dev": true, - "requires": { - "node-balanced": "0.0.14", - "postcss": "^4.1.16" - } - }, - "postcss-discard-duplicates": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-1.2.1.tgz", - "integrity": "sha1-SbsztNNHcQWwDQSDlfc6KQK8miU=", - "dev": true, - "requires": { - "postcss": "^4.1.16" - } - }, - "postcss-discard-empty": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-1.1.2.tgz", - "integrity": "sha1-KsVayPy4HCMEPmMQaTT9Y0cNXA0=", - "dev": true, - "requires": { - "postcss": "^4.1.13" - } - }, - "postcss-discard-unused": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-1.0.3.tgz", - "integrity": "sha1-Xsy5v6xGXqa+VjQpepx3gczQmIY=", - "dev": true, - "requires": { - "flatten": "0.0.1", - "postcss": "^4.1.16", - "uniqs": "^2.0.0" - } - }, - "postcss-filter-plugins": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-1.0.1.tgz", - "integrity": "sha1-J/gnnV76t6o8FwmIE5hrS50dUOI=", - "dev": true, - "requires": { - "postcss": "^4.1.11", - "uniqid": "^1.0.0" - } - }, - "postcss-merge-idents": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-1.0.2.tgz", - "integrity": "sha1-qToNrXj2UugjfZrew0LkHSwd01s=", - "dev": true, - "requires": { - "css-list": "^0.1.0", - "postcss": "^4.1.9" - } - }, - "postcss-merge-longhand": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-1.0.2.tgz", - "integrity": "sha1-QxcgZfz4We4RztMUH1ZkFMZzBX4=", - "dev": true, - "requires": { - "postcss": "^4.1.16" - } - }, - "postcss-merge-rules": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-1.3.6.tgz", - "integrity": "sha1-sUrRf31AEqMYut032r1ZuT8TUy8=", - "dev": true, - "requires": { - "postcss": "^4.1.16" - } - }, - "postcss-minify-selectors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-1.5.0.tgz", - "integrity": "sha1-5ZxWxtSVXaFXz30iv4Bptur1Jic=", - "dev": true, - "requires": { - "javascript-natural-sort": "^0.7.1", - "normalize-selector": "^0.2.0", - "postcss": "^4.1.16", - "postcss-selector-parser": "^1.1.2", - "uniqs": "^2.0.0" - } - }, - "postcss-modules-extract-imports": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-0.0.5.tgz", - "integrity": "sha1-zMy0Cz3SmFmZOEodumDGLJYKbaA=", - "dev": true, - "requires": { - "postcss": "^4.1.11" - } - }, - "postcss-modules-local-by-default": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.12.tgz", - "integrity": "sha1-qTQxpLHQt6QCHiOPwn1ejkSSgsI=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.5.1", - "postcss": "^4.1.5" - } - }, - "postcss-modules-scope": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-0.0.8.tgz", - "integrity": "sha1-gck1+/KJJyOIyLoulqEcohugmgQ=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.5.0", - "postcss": "^4.1.11" - } - }, - "postcss-normalize-url": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-2.1.3.tgz", - "integrity": "sha1-8StfShFDyV6gJfx/jgBQkFmPNgI=", - "dev": true, - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^1.3.0", - "object-assign": "^4.0.1", - "postcss": "^4.1.16", - "postcss-value-parser": "^1.4.2" - } - }, - "postcss-ordered-values": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-1.1.1.tgz", - "integrity": "sha1-nu1PrS55Kr/D0EAs93O6+G/ne4E=", - "dev": true, - "requires": { - "postcss": "^4.1.16", - "postcss-value-parser": "^1.1.0" - } - }, - "postcss-reduce-idents": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-1.0.3.tgz", - "integrity": "sha1-p58bJIXiPZs8x6gfXsY6XCvewg0=", - "dev": true, - "requires": { - "postcss": "^4.1.2", - "reduce-function-call": "^1.0.1" - } - }, - "postcss-selector-parser": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-1.3.3.tgz", - "integrity": "sha1-0u4Z33pk+O8hwacchvfUg1yIwoE=", - "dev": true, - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - }, - "dependencies": { - "flatten": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", - "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=", - "dev": true - } - } - }, - "postcss-unique-selectors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-1.0.1.tgz", - "integrity": "sha1-SBfnTHtPmZzgTI5mRRoZaRT12zw=", - "dev": true, - "requires": { - "javascript-natural-sort": "^0.7.1", - "postcss": "^4.1.10", - "uniqs": "^2.0.0" - } - }, - "postcss-value-parser": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-1.4.2.tgz", - "integrity": "sha1-GGVjPhNwH4pyHng02tGFyxRKrQw=", - "dev": true - }, - "postcss-zindex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-1.1.3.tgz", - "integrity": "sha1-SVZKtJ092hcGf42sHIM11/LQDOE=", - "dev": true, - "requires": { - "postcss": "^4.1.2" - } - }, - "source-list-map": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", - "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=", - "dev": true - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - }, - "style-loader": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.12.4.tgz", - "integrity": "sha1-rn0GZdxNxlPaov6Xu5CRS8HSLZs=", - "dev": true, - "requires": { - "loader-utils": "^0.2.7" - } - } - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "1.0.6", - "mime-types": "^2.1.12" - }, - "dependencies": { - "combined-stream": { - "version": "1.0.6", - "resolved": "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", - "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", - "requires": { - "delayed-stream": "~1.0.0" - } - } - } - }, - "formatio": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz", - "integrity": "sha1-XtPM1jZVEJc4NGXZlhmRAOhhYek=", - "dev": true, - "requires": { - "samsam": "~1.1" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "fs-minipass": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz", - "integrity": "sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==", - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", - "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", - "optional": true, - "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", - "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "optional": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz", - "integrity": "sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w==", - "optional": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", - "optional": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "optional": true - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "optional": true - }, - "iconv-lite": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.21.tgz", - "integrity": "sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==", - "optional": true, - "requires": { - "safer-buffer": "^2.1.0" - } - }, - "ignore-walk": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz", - "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "optional": true - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "optional": true - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "optional": true - }, - "needle": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.2.0.tgz", - "integrity": "sha512-eFagy6c+TYayorXw/qtAdSvaUpEbBsDwDyxYFgLZ0lTojfH7K+OdBqAF7TAFwDokJaGpubpSGG0wO3iC0XPi8w==", - "optional": true, - "requires": { - "debug": "^2.1.2", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz", - "integrity": "sha512-G7kEonQLRbcA/mOoFoxvlMrw6Q6dPf92+t/l0DFSMuSlDoWaI9JWIyPwK0jyE1bph//CUEL65/Fz1m2vJbmjQQ==", - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.0", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.1.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz", - "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz", - "integrity": "sha512-ByQ3oJ/5ETLyglU2+8dBObvhfWXX8dtPZDMePCahptliFX2iIuhyEszyFk401PZUNQH20vvdW5MLjJxkwU80Ow==", - "optional": true - }, - "npm-packlist": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz", - "integrity": "sha512-AQC0Dyhzn4EiYEfIUjCdMl0JJ61I2ER9ukf/sLxJUcZHfo+VyEfz2rMJgLZSS1v30OxPQe1cN0LZA1xbcaVfWA==", - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "optional": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "optional": true - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "optional": true - }, - "rc": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz", - "integrity": "sha512-LdLD8xD4zzLsAT5xyushXDNscEjB7+2ulnl8+r1pnESlYtlJtVSoCMBGr30eDRJ3+2Gq89jK9P9e4tCEH1+ywA==", - "optional": true, - "requires": { - "deep-extend": "^0.5.1", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", - "optional": true, - "requires": { - "glob": "^7.0.5" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "optional": true - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "optional": true - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "optional": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "optional": true - }, - "tar": { - "version": "4.4.8", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.8.tgz", - "integrity": "sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ==", - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "optional": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "optional": true - }, - "wide-align": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", - "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", - "optional": true, - "requires": { - "string-width": "^1.0.2" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "optional": true - }, - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", - "optional": true - } - } - }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "gather-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz", - "integrity": "sha1-szmUr0V6gRVwDUEPMXczy+egkEs=", - "dev": true - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dev": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", - "dev": true, - "requires": { - "globule": "^1.0.0" - } - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "get-own-enumerable-property-symbols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz", - "integrity": "sha512-TtY/sbOemiMKPRUDDanGCSgBYe7Mf0vbRsWnBZ+9yghpZ1MvcpSpuZFjHdEeY/LZjZy0vdLjS77L6HosisFiug==", - "dev": true - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-all": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-all/-/glob-all-3.1.0.tgz", - "integrity": "sha1-iRPd+17hrHgSZWJBsD1SF8ZLAqs=", - "dev": true, - "requires": { - "glob": "^7.0.5", - "yargs": "~1.2.6" - }, - "dependencies": { - "minimist": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz", - "integrity": "sha1-md9lelJXTCHJBXSX33QnkLK0wN4=", - "dev": true - }, - "yargs": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-1.2.6.tgz", - "integrity": "sha1-nHtKgv1dWVsr8Xq23MQxNUMv40s=", - "dev": true, - "requires": { - "minimist": "^0.1.0" - } - } - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "requires": { - "is-glob": "^2.0.0" - } - }, - "global": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", - "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", - "dev": true, - "requires": { - "min-document": "^2.19.0", - "process": "~0.5.1" - } - }, - "global-modules-path": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.0.tgz", - "integrity": "sha512-HchvMJNYh9dGSCy8pOQ2O8u/hoXaL+0XhnrwH0RyLiSXMMTl9W3N6KUU73+JFOg5PGjtzl6VZzUQsnrpm7Szag==", - "dev": true - }, - "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "globule": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", - "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", - "dev": true, - "requires": { - "glob": "~7.1.1", - "lodash": "~4.17.10", - "minimatch": "~3.0.2" - } - }, - "good-listener": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", - "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", - "requires": { - "delegate": "^3.1.2" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "graphiql": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/graphiql/-/graphiql-0.13.2.tgz", - "integrity": "sha512-4N2HmQQpUfApS1cxrTtoZ15tnR3EW88oUiqmza6GgNQYZZfDdBGphdQlBYsKcjAB/SnIOJort+RA1dB6kf4M7Q==", - "requires": { - "codemirror": "^5.47.0", - "codemirror-graphql": "^0.8.3", - "copy-to-clipboard": "^3.2.0", - "markdown-it": "^8.4.0" - }, - "dependencies": { - "copy-to-clipboard": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz", - "integrity": "sha512-eOZERzvCmxS8HWzugj4Uxl8OJxa7T2k1Gi0X5qavwydHIfuSHq2dTD09LOg/XyGq4Zpb5IsR/2OJ5lbOegz78w==", - "requires": { - "toggle-selection": "^1.0.6" - } - } - } - }, - "graphiql-explorer": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/graphiql-explorer/-/graphiql-explorer-0.4.4.tgz", - "integrity": "sha512-NuQ1XAjZwykKb9GoHM6ofI9qITZ8Lue/mXi1Bj3/ZbGZv1Srk3sz0QkKQ5jBaxmuS3Ay09LRvJQSOr0Ci1dlfg==" - }, - "graphql": { - "version": "14.3.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.3.0.tgz", - "integrity": "sha512-MdfI4v7kSNC3NhB7cF8KNijDsifuWO2XOtzpyququqaclO8wVuChYv+KogexDwgP5sp7nFI9Z6N4QHgoLkfjrg==", - "requires": { - "iterall": "^1.2.2" - } - }, - "graphql-config": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-2.0.1.tgz", - "integrity": "sha512-eb4FzlODifHE/Q+91QptAmkGw39wL5ToinJ2556UUsGt2drPc4tzifL+HSnHSaxiIbH8EUhc/Fa6+neinF04qA==", - "requires": { - "graphql-import": "^0.4.4", - "graphql-request": "^1.5.0", - "js-yaml": "^3.10.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.4" - } - }, - "graphql-import": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/graphql-import/-/graphql-import-0.4.5.tgz", - "integrity": "sha512-G/+I08Qp6/QGTb9qapknCm3yPHV0ZL7wbaalWFpxsfR8ZhZoTBe//LsbsCKlbALQpcMegchpJhpTSKiJjhaVqQ==", - "requires": { - "lodash": "^4.17.4" - } - }, - "graphql-language-service-interface": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-interface/-/graphql-language-service-interface-1.3.2.tgz", - "integrity": "sha512-sOxFV5sBSnYtKIFHtlmAHHVdhok7CRbvCPLcuHvL4Q1RSgKRsPpeHUDKU+yCbmlonOKn/RWEKaYWrUY0Sgv70A==", - "requires": { - "graphql-config": "2.0.1", - "graphql-language-service-parser": "^1.2.2", - "graphql-language-service-types": "^1.2.2", - "graphql-language-service-utils": "^1.2.2" - } - }, - "graphql-language-service-parser": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-parser/-/graphql-language-service-parser-1.2.2.tgz", - "integrity": "sha512-38zMqJibNKeQe3GheyJtBENoXMp+qc29smiiRQtHLZcwnQfsYtu6reJZKxxwzU7XOVh3SedNH15Gf3LjWJVkiQ==", - "requires": { - "graphql-config": "2.0.1", - "graphql-language-service-types": "^1.2.2" - } - }, - "graphql-language-service-types": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-types/-/graphql-language-service-types-1.2.2.tgz", - "integrity": "sha512-WEAYYCP4jSzbz/Mw0Klc7HHMgtUHLgtaPMV6zyMMmvefCg/yBUkv7wREXKmqF1k1u9+f5ZX3dki0BMaXiwmJug==", - "requires": { - "graphql-config": "2.0.1" - } - }, - "graphql-language-service-utils": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-1.2.2.tgz", - "integrity": "sha512-98hzn1Dg3sSAiB+TuvNwWAoBrzuHs8NylkTK26TFyBjozM5wBZttp+T08OvOt+9hCFYRa43yRPrWcrs78KH9Hw==", - "requires": { - "graphql-config": "2.0.1", - "graphql-language-service-types": "^1.2.2" - } - }, - "graphql-request": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.2.tgz", - "integrity": "sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==", - "requires": { - "cross-fetch": "2.2.2" - } - }, - "graphql-voyager": { - "version": "1.0.0-rc.27", - "resolved": "https://registry.npmjs.org/graphql-voyager/-/graphql-voyager-1.0.0-rc.27.tgz", - "integrity": "sha512-I0Tg4QtHB8s2UjNXu/hgFQKv7HNCM+Os8AmnjsQmmWCtQV61Ibum2l3n+y0qhdf+nH5mVwkWwRwlEswF143hiQ==", - "requires": { - "@f/animate": "^1.0.1", - "@material-ui/core": "^3.9.2", - "classnames": "^2.2.6", - "clipboard": "^2.0.4", - "commonmark": "^0.28.1", - "lodash": "^4.17.10", - "prop-types": "^15.7.2", - "svg-pan-zoom": "^3.6.0", - "viz.js": "2.1.2" - }, - "dependencies": { - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==" - } - } - }, - "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", - "dev": true, - "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - } - } - }, - "handlebars": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", - "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", - "dev": true, - "requires": { - "neo-async": "^2.6.0", - "optimist": "^0.6.1", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4" - }, - "dependencies": { - "commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", - "dev": true, - "optional": true - }, - "neo-async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", - "dev": true - }, - "uglify-js": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz", - "integrity": "sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==", - "dev": true, - "optional": true, - "requires": { - "commander": "~2.20.0", - "source-map": "~0.6.1" - } - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.0.tgz", - "integrity": "sha512-+qnmNjI4OfH2ipQ9VQOw23bBd/ibtfbVdK2fYbY4acTDqKTW/YDp9McimZdDbG8iV9fZizUqQMD5xvriB146TA==", - "requires": { - "ajv": "^5.3.0", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "has-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "hash.js": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", - "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "hasura-console-graphiql": { - "version": "0.1.0-alpha.1", - "resolved": "https://registry.npmjs.org/hasura-console-graphiql/-/hasura-console-graphiql-0.1.0-alpha.1.tgz", - "integrity": "sha512-czqojY68Kjrq/AXVdaiY8Lse7gz5oT48WQC3AXXoEekksk+HRDEP+ZvqMc1UmSwHTXdSBYwNMfg9WiluEH62DQ==", - "requires": { - "codemirror": "^5.26.0", - "codemirror-graphql": "^0.7.1", - "markdown-it": "^8.4.0", - "react-modal": "^3.6.1" - }, - "dependencies": { - "codemirror-graphql": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/codemirror-graphql/-/codemirror-graphql-0.7.1.tgz", - "integrity": "sha512-HtHXMJAn6iGJYpijkzi3IlqWIdGrB6V0RqJ607yffJTCKk/OgaNtdLOb8hZJyEtHfkw7PZDaKybMAVCi6ScWSQ==", - "requires": { - "graphql-language-service-interface": "^1.3.2", - "graphql-language-service-parser": "^1.2.2" - } - } - } - }, - "history": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/history/-/history-3.3.0.tgz", - "integrity": "sha1-/O3M6PEpdTcVRdc1RhAzV5ptrpw=", - "requires": { - "invariant": "^2.2.1", - "loose-envify": "^1.2.0", - "query-string": "^4.2.2", - "warning": "^3.0.0" - }, - "dependencies": { - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - } - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "home-or-tmp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-3.0.0.tgz", - "integrity": "sha1-V6j+JM8zzdUkhgoVgh3cJchmcfs=", - "dev": true - }, - "hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", - "dev": true - }, - "hosted-git-info": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", - "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", - "dev": true - }, - "html-comment-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz", - "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4=", - "dev": true - }, - "html-entities": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", - "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", - "dev": true - }, - "htmlparser2": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.3.0.tgz", - "integrity": "sha1-zHDQWln2VC5D8OaFyYLhTJJKnv4=", - "requires": { - "domelementtype": "1", - "domhandler": "2.1", - "domutils": "1.1", - "readable-stream": "1.0" - }, - "dependencies": { - "domutils": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.1.6.tgz", - "integrity": "sha1-vdw94Jm5ou+sxRxiPyj0FuzFdIU=", - "requires": { - "domelementtype": "1" - } - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - } - } - }, - "http-basic": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz", - "integrity": "sha1-jORHvbW2xXf4pj4/p4BW7Eu02/s=", - "dev": true, - "requires": { - "caseless": "~0.11.0", - "concat-stream": "^1.4.6", - "http-response-object": "^1.0.0" - }, - "dependencies": { - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", - "dev": true - } - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "http-response-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz", - "integrity": "sha1-p8TnWq6C87tJBOT0P2FWc7TVGMM=", - "dev": true - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", - "dev": true - }, - "husky": { - "version": "0.14.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-0.14.3.tgz", - "integrity": "sha512-e21wivqHpstpoiWA/Yi8eFti8E+sQDSS53cpJsPptPs295QTOQR0ZwnHo2TXy1XOpZFD9rPOd3NpmqTK6uMLJA==", - "dev": true, - "requires": { - "is-ci": "^1.0.10", - "normalize-path": "^1.0.0", - "strip-indent": "^2.0.0" - }, - "dependencies": { - "normalize-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-1.0.0.tgz", - "integrity": "sha1-MtDkcvkf80VwHBWoMRAY07CpA3k=", - "dev": true - } - } - }, - "hyphenate-style-name": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz", - "integrity": "sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==" - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-replace-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", - "dev": true - }, - "icss-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz", - "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=", - "dev": true, - "requires": { - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "ieee754": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", - "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==", - "dev": true - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", - "dev": true - }, - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", - "dev": true - }, - "ignore-loader": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ignore-loader/-/ignore-loader-0.1.2.tgz", - "integrity": "sha1-2B8kA3bQuk8Nd4lyw60lh0EXpGM=", - "dev": true - }, - "image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", - "optional": true - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", - "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - } - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "in-publish": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", - "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", - "dev": true - }, - "indefinite-observable": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-1.0.2.tgz", - "integrity": "sha512-Mps0898zEduHyPhb7UCgNmfzlqNZknVmaFz5qzr0mm04YQ5FGLhAyK/dJ+NaRxGyR6juQXIxh5Ev0xx+qq0nYA==", - "requires": { - "symbol-observable": "1.2.0" - } - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, - "requires": { - "repeating": "^2.0.0" - } - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", - "dev": true - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", - "dev": true, - "requires": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^2.0.4", - "figures": "^2.0.0", - "lodash": "^4.3.0", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", - "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-escapes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", - "dev": true - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "interpret": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", - "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", - "dev": true - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true - }, - "ipaddr.js": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", - "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=", - "dev": true - }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", - "dev": true - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "^1.0.0" - } - }, - "is-callable": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", - "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", - "dev": true - }, - "is-ci": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz", - "integrity": "sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=", - "dev": true, - "requires": { - "ci-info": "^1.0.0" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", - "dev": true - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - } - }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "dev": true - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "requires": { - "is-primitive": "^2.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "requires": { - "is-extglob": "^1.0.0" - } - }, - "is-in-browser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", - "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - }, - "is-observable": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-0.2.0.tgz", - "integrity": "sha1-s2ExHYPG5dcmyr9eJQsCNxBvWuI=", - "dev": true, - "requires": { - "symbol-observable": "^0.2.2" - }, - "dependencies": { - "symbol-observable": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-0.2.4.tgz", - "integrity": "sha1-lag9smGG1q9+ehjb2XYKL4bQj0A=", - "dev": true - } - } - }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", - "dev": true - }, - "is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "requires": { - "is-path-inside": "^1.0.0" - } - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true - }, - "is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", - "dev": true, - "requires": { - "has": "^1.0.1" - } - }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", - "dev": true - }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "is-svg": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", - "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", - "dev": true, - "requires": { - "html-comment-regex": "^1.1.0" - } - }, - "is-symbol": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", - "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", - "dev": true, - "requires": { - "has-symbols": "^1.0.0" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - }, - "isomorphic-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "requires": { - "node-fetch": "^1.0.1", - "whatwg-fetch": ">=0.10.0" - }, - "dependencies": { - "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" - } - } - } - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz", - "integrity": "sha512-ooVllVGT38HIk8MxDj/OIHXSYvH+1tq/Vb38s8ixt9GoJadXska4WkGY+0wkmtYCZNYtaARniH/DixUGGLZ0uA==", - "dev": true, - "requires": { - "@babel/generator": "^7.0.0", - "@babel/parser": "^7.0.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", - "istanbul-lib-coverage": "^2.0.3", - "semver": "^5.5.0" - } - }, - "iterall": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz", - "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==" - }, - "javascript-natural-sort": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", - "integrity": "sha1-+eIwPUUH9tdDVac2ZNFED7Wg71k=", - "dev": true - }, - "jest-get-type": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-21.2.0.tgz", - "integrity": "sha512-y2fFw3C+D0yjNSDp7ab1kcd6NUYfy3waPTlD8yWkAtiocJdBRQqNoRqVfMNxgj+IjT0V5cBIHJO0z9vuSSZ43Q==", - "dev": true - }, - "jest-validate": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-21.2.1.tgz", - "integrity": "sha512-k4HLI1rZQjlU+EC682RlQ6oZvLrE5SCh3brseQc24vbZTxzT/k/3urar5QMCVgjadmSO7lECeGdc6YxnM3yEGg==", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "jest-get-type": "^21.2.0", - "leven": "^2.1.0", - "pretty-format": "^21.2.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "jquery": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz", - "integrity": "sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==", - "dev": true - }, - "js-base64": { - "version": "2.4.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.9.tgz", - "integrity": "sha512-xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ==", - "dev": true - }, - "js-levenshtein": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "json-loader": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", - "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "jsonwebtoken": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.0.tgz", - "integrity": "sha512-IqEycp0znWHNA11TpYi77bVgyBO/pGESDh7Ajhas+u0ttkGkKYIIAjniL4Bw5+oVejVF+SYkaI7XKfwCCyeTuA==", - "requires": { - "jws": "^3.2.1", - "lodash.includes": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isinteger": "^4.0.4", - "lodash.isnumber": "^3.0.3", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.once": "^4.0.0", - "ms": "^2.1.1", - "semver": "^5.6.0" - }, - "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - }, - "semver": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", - "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==" - } - } - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jss": { - "version": "9.8.7", - "resolved": "https://registry.npmjs.org/jss/-/jss-9.8.7.tgz", - "integrity": "sha512-awj3XRZYxbrmmrx9LUSj5pXSUfm12m8xzi/VKeqI1ZwWBtQ0kVPTs3vYs32t4rFw83CgFDukA8wKzOE9sMQnoQ==", - "requires": { - "is-in-browser": "^1.1.3", - "symbol-observable": "^1.1.0", - "warning": "^3.0.0" - } - }, - "jss-camel-case": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jss-camel-case/-/jss-camel-case-6.1.0.tgz", - "integrity": "sha512-HPF2Q7wmNW1t79mCqSeU2vdd/vFFGpkazwvfHMOhPlMgXrJDzdj9viA2SaHk9ZbD5pfL63a8ylp4++irYbbzMQ==", - "requires": { - "hyphenate-style-name": "^1.0.2" - } - }, - "jss-default-unit": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/jss-default-unit/-/jss-default-unit-8.0.2.tgz", - "integrity": "sha512-WxNHrF/18CdoAGw2H0FqOEvJdREXVXLazn7PQYU7V6/BWkCV0GkmWsppNiExdw8dP4TU1ma1dT9zBNJ95feLmg==" - }, - "jss-global": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jss-global/-/jss-global-3.0.0.tgz", - "integrity": "sha512-wxYn7vL+TImyQYGAfdplg7yaxnPQ9RaXY/cIA8hawaVnmmWxDHzBK32u1y+RAvWboa3lW83ya3nVZ/C+jyjZ5Q==" - }, - "jss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/jss-nested/-/jss-nested-6.0.1.tgz", - "integrity": "sha512-rn964TralHOZxoyEgeq3hXY8hyuCElnvQoVrQwKHVmu55VRDd6IqExAx9be5HgK0yN/+hQdgAXQl/GUrBbbSTA==", - "requires": { - "warning": "^3.0.0" - } - }, - "jss-props-sort": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/jss-props-sort/-/jss-props-sort-6.0.0.tgz", - "integrity": "sha512-E89UDcrphmI0LzmvYk25Hp4aE5ZBsXqMWlkFXS0EtPkunJkRr+WXdCNYbXbksIPnKlBenGB9OxzQY+mVc70S+g==" - }, - "jss-vendor-prefixer": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/jss-vendor-prefixer/-/jss-vendor-prefixer-7.0.0.tgz", - "integrity": "sha512-Agd+FKmvsI0HLcYXkvy8GYOw3AAASBUpsmIRvVQheps+JWaN892uFOInTr0DRydwaD91vSSUCU4NssschvF7MA==", - "requires": { - "css-vendor": "^0.3.8" - } - }, - "jsx-ast-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz", - "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=", - "dev": true, - "requires": { - "array-includes": "^3.0.3" - } - }, - "jwa": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.0.tgz", - "integrity": "sha512-mt6IHaq0ZZWDBspg0Pheu3r9sVNMEZn+GJe1zcdYyhFcDSclp3J8xEdO4PjZolZ2i8xlaVU1LetHM0nJejYsEw==", - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "jws": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.1.tgz", - "integrity": "sha512-bGA2omSrFUkd72dhh05bIAN832znP4wOU3lfuXtRBuGTbsmNmDXMQg28f0Vsxaxgk4myF5YkKQpz6qeRpMgX9g==", - "requires": { - "jwa": "^1.2.0", - "safe-buffer": "^5.0.1" - } - }, - "keycode": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.0.tgz", - "integrity": "sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=" - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.9" - } - }, - "last-call-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", - "dev": true, - "requires": { - "lodash": "^4.17.5", - "webpack-sources": "^1.1.0" - } - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", - "dev": true - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "dev": true, - "requires": { - "invert-kv": "^1.0.0" - } - }, - "less": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/less/-/less-3.8.1.tgz", - "integrity": "sha512-8HFGuWmL3FhQR0aH89escFNBQH/nEiYPP2ltDFdQw2chE28Yx2E3lhAIq9Y2saYwLSwa699s4dBVEfCY8Drf7Q==", - "requires": { - "clone": "^2.1.2", - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "mime": "^1.4.1", - "mkdirp": "^0.5.0", - "promise": "^7.1.1", - "request": "^2.83.0", - "source-map": "~0.6.0" - } - }, - "less-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-4.1.0.tgz", - "integrity": "sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==", - "dev": true, - "requires": { - "clone": "^2.1.1", - "loader-utils": "^1.1.0", - "pify": "^3.0.0" - } - }, - "leven": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", - "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", - "dev": true - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "linkify-it": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz", - "integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==", - "requires": { - "uc.micro": "^1.0.1" - } - }, - "lint-staged": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-6.1.1.tgz", - "integrity": "sha512-M/7bwLdXbeG7ZNLcasGeLMBDg60/w6obj3KOtINwJyxAxb53XGY0yH5FSZlWklEzuVbTtqtIfAajh6jYIN90AA==", - "dev": true, - "requires": { - "app-root-path": "^2.0.0", - "chalk": "^2.1.0", - "commander": "^2.11.0", - "cosmiconfig": "^4.0.0", - "debug": "^3.1.0", - "dedent": "^0.7.0", - "execa": "^0.8.0", - "find-parent-dir": "^0.3.0", - "is-glob": "^4.0.0", - "jest-validate": "^21.1.0", - "listr": "^0.13.0", - "lodash": "^4.17.4", - "log-symbols": "^2.0.0", - "minimatch": "^3.0.0", - "npm-which": "^3.0.1", - "p-map": "^1.1.1", - "path-is-inside": "^1.0.2", - "pify": "^3.0.0", - "staged-git-files": "1.0.0", - "stringify-object": "^3.2.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "debug": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.5.tgz", - "integrity": "sha512-D61LaDQPQkxJ5AUM2mbSJRbPkNs/TmdmOeLAi1hgDkpDfIfetSrjmWhccwtuResSwMbACjx/xXQofvM9CE/aeg==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "execa": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz", - "integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=", - "dev": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", - "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "listr": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/listr/-/listr-0.13.0.tgz", - "integrity": "sha1-ILsLowuuZg7oTMBQPfS+PVYjiH0=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-truncate": "^0.2.1", - "figures": "^1.7.0", - "indent-string": "^2.1.0", - "is-observable": "^0.2.0", - "is-promise": "^2.1.0", - "is-stream": "^1.1.0", - "listr-silent-renderer": "^1.1.1", - "listr-update-renderer": "^0.4.0", - "listr-verbose-renderer": "^0.4.0", - "log-symbols": "^1.0.2", - "log-update": "^1.0.2", - "ora": "^0.2.3", - "p-map": "^1.1.1", - "rxjs": "^5.4.2", - "stream-to-observable": "^0.2.0", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "log-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", - "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", - "dev": true, - "requires": { - "chalk": "^1.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "listr-update-renderer": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz", - "integrity": "sha1-NE2YDaLKLosUW6MFkI8yrj9MyKc=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-truncate": "^0.2.1", - "elegant-spinner": "^1.0.1", - "figures": "^1.7.0", - "indent-string": "^3.0.0", - "log-symbols": "^1.0.2", - "log-update": "^1.0.2", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "dev": true - }, - "log-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", - "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", - "dev": true, - "requires": { - "chalk": "^1.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "stream-to-observable": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/stream-to-observable/-/stream-to-observable-0.2.0.tgz", - "integrity": "sha1-WdbqOT2HwsDdrBCqDVYbxrpvDhA=", - "dev": true, - "requires": { - "any-observable": "^0.2.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "listr-silent-renderer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", - "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", - "dev": true - }, - "listr-verbose-renderer": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz", - "integrity": "sha1-ggb0z21S3cWCfl/RSYng6WWTOjU=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-cursor": "^1.0.2", - "date-fns": "^1.27.2", - "figures": "^1.7.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "loader-fs-cache": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz", - "integrity": "sha1-VuC/CL2XCLJqdltoUJhAyN7J/bw=", - "dev": true, - "requires": { - "find-cache-dir": "^0.1.1", - "mkdirp": "0.5.1" - }, - "dependencies": { - "find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", - "dev": true, - "requires": { - "find-up": "^1.0.0" - } - } - } - }, - "loader-runner": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz", - "integrity": "sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==", - "dev": true - }, - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" - }, - "lodash-es": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.11.tgz", - "integrity": "sha512-DHb1ub+rMjjrxqlB3H56/6MXtm1lSksDp2rA2cNWjG8mlDUYFhUj3Di2Zn5IwSU87xLv8tNIQ7sSwE/YOX/D/Q==" - }, - "lodash._baseassign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", - "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", - "dev": true, - "requires": { - "lodash._basecopy": "^3.0.0", - "lodash.keys": "^3.0.0" - } - }, - "lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", - "dev": true - }, - "lodash._bindcallback": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", - "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=", - "dev": true - }, - "lodash._createassigner": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", - "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", - "dev": true, - "requires": { - "lodash._bindcallback": "^3.0.0", - "lodash._isiterateecall": "^3.0.0", - "lodash.restparam": "^3.0.0" - } - }, - "lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", - "dev": true - }, - "lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", - "dev": true - }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=", - "dev": true - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", - "dev": true - }, - "lodash.curry": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", - "integrity": "sha1-JI42By7ekGUB11lmIAqG2riyMXA=", - "dev": true - }, - "lodash.debounce": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-3.1.1.tgz", - "integrity": "sha1-gSIRw3ipTMKdWqTjNGzwv846ffU=", - "dev": true, - "requires": { - "lodash._getnative": "^3.0.0" - } - }, - "lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=", - "dev": true - }, - "lodash.flow": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", - "integrity": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=", - "dev": true - }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" - }, - "lodash.includes": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", - "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" - }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", - "dev": true - }, - "lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", - "dev": true - }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" - }, - "lodash.isinteger": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", - "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" - }, - "lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" - }, - "lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", - "dev": true, - "requires": { - "lodash._getnative": "^3.0.0", - "lodash.isarguments": "^3.0.0", - "lodash.isarray": "^3.0.0" - } - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" - }, - "lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", - "dev": true - }, - "lodash.tail": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz", - "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=", - "dev": true - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", - "dev": true - }, - "log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", - "dev": true, - "requires": { - "chalk": "^2.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "log-update": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-1.0.2.tgz", - "integrity": "sha1-GZKfZMQJPS0ucHWh2tivWcKWuNE=", - "dev": true, - "requires": { - "ansi-escapes": "^1.0.0", - "cli-cursor": "^1.0.2" - } - }, - "lolex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz", - "integrity": "sha1-fD2mL/yzDw9agKJWbKJORdigHzE=", - "dev": true - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", - "dev": true - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "dev": true, - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, - "lru-cache": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", - "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "lru-memoize": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lru-memoize/-/lru-memoize-1.0.2.tgz", - "integrity": "sha1-9a6E0ojn1V/sg4jsC9clYhvIFdA=" - }, - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "map-age-cleaner": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.2.tgz", - "integrity": "sha512-UN1dNocxQq44IhJyMI4TU8phc2m9BddacHRPRjKGLYaF0jqd3xLz0jS0skpAU9WgYyoR4gHtUpzytNBS385FWQ==", - "dev": true, - "requires": { - "p-defer": "^1.0.0" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true - }, - "map-props": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-props/-/map-props-1.0.0.tgz", - "integrity": "sha1-bkO5yAcjiXBaRi67SK+R/okSv1M=" - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "requires": { - "object-visit": "^1.0.0" - } - }, - "markdown-it": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz", - "integrity": "sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==", - "requires": { - "argparse": "^1.0.7", - "entities": "~1.1.1", - "linkify-it": "^2.0.0", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - } - }, - "match-sorter": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-2.3.0.tgz", - "integrity": "sha512-0/F1ezfjs5vegTvdH0sJEDrIi+w7wvUeDW/yqLMsK6jQWgNNJRv8jYCLBc8QrCxQNpSEpei6vrOcnJwAbnYhkw==", - "requires": { - "diacritic": "0.0.2" - }, - "dependencies": { - "diacritic": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/diacritic/-/diacritic-0.0.2.tgz", - "integrity": "sha1-/CqIe1pbwKCoVPthTHwvIJBh7gQ=" - } - } - }, - "math-expression-evaluator": { - "version": "1.2.17", - "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz", - "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=", - "dev": true - }, - "math-random": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz", - "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=" - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "dev": true - }, - "mem": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.0.0.tgz", - "integrity": "sha512-WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^1.0.0", - "p-is-promise": "^1.1.0" - } - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "dev": true - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "optional": true - }, - "mime-db": { - "version": "1.36.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.36.0.tgz", - "integrity": "sha512-L+xvyD9MkoYMXb1jAmzI/lWYAxAMCPvIBSWur0PZ5nOf5euahRLVqH//FKW9mWp2lkqUgYiXPgkzfMUFi4zVDw==" - }, - "mime-types": { - "version": "2.1.20", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.20.tgz", - "integrity": "sha512-HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==", - "requires": { - "mime-db": "~1.36.0" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", - "dev": true, - "requires": { - "dom-walk": "^0.1.0" - } - }, - "mini-css-extract-plugin": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.3.tgz", - "integrity": "sha512-Mxs0nxzF1kxPv4TRi2NimewgXlJqh0rGE30vviCU2WHrpbta6wklnUV9dr9FUtoAHmB3p3LeXEC+ZjgHvB0Dzg==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" - }, - "dependencies": { - "ajv": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz", - "integrity": "sha512-4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "minipass": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz", - "integrity": "sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==", - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - }, - "dependencies": { - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", - "optional": true - } - } - }, - "minizlib": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz", - "integrity": "sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==", - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mississippi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", - "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^2.0.1", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mixin-object": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", - "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", - "dev": true, - "requires": { - "for-in": "^0.1.3", - "is-extendable": "^0.1.1" - }, - "dependencies": { - "for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=", - "dev": true - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "multireducer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/multireducer/-/multireducer-1.0.2.tgz", - "integrity": "sha1-EDX14lyzg7nknbWceq+3qvsG0iQ=" - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "nan": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz", - "integrity": "sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==", - "optional": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true - }, - "ncp": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz", - "integrity": "sha1-0VNn5cuHQyuhF9K/gP30Wuz7QkY=", - "dev": true - }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", - "dev": true - }, - "neo-async": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.5.2.tgz", - "integrity": "sha512-vdqTKI9GBIYcAEbFAcpKPErKINfPF5zIuz3/niBfq8WUZjpT2tytLlFVrBgWdOtqI4uaA/Rb6No0hux39XXDuw==", - "dev": true - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node-balanced": { - "version": "0.0.14", - "resolved": "https://registry.npmjs.org/node-balanced/-/node-balanced-0.0.14.tgz", - "integrity": "sha1-ozxyeFfTBE8eiL5y3X2anQtPwh8=", - "dev": true - }, - "node-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz", - "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=" - }, - "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", - "dev": true, - "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "^2.87.0", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" - }, - "dependencies": { - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", - "dev": true - } - } - }, - "node-libs-browser": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz", - "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^1.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.0", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.10.3", - "vm-browserify": "0.0.4" - }, - "dependencies": { - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - } - } - }, - "node-modules-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", - "dev": true - }, - "node-releases": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.7.tgz", - "integrity": "sha512-bKdrwaqJUPHqlCzDD7so/R+Nk0jGv9a11ZhLrD9f6i947qGLrGAhU3OxRENa19QQmwzGy/g6zCDEuLGDO8HPvA==", - "dev": true, - "requires": { - "semver": "^5.3.0" - } - }, - "node-sass": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz", - "integrity": "sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ==", - "dev": true, - "requires": { - "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "in-publish": "^2.0.0", - "lodash": "^4.17.11", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "nan": "^2.13.2", - "node-gyp": "^3.8.0", - "npmlog": "^4.0.0", - "request": "^2.88.0", - "sass-graph": "^2.2.4", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "dependencies": { - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "nan": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", - "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", - "dev": true - } - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "is-builtin-module": "^1.0.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", - "dev": true - }, - "normalize-scroll-left": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz", - "integrity": "sha512-F9YMRls0zCF6BFIE2YnXDRpHPpfd91nOIaNdDgrx5YMoPLo8Wqj+6jNXHQsYBavJeXP4ww8HCt0xQAKc5qk2Fg==" - }, - "normalize-selector": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", - "integrity": "sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=", - "dev": true - }, - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", - "dev": true, - "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" - }, - "dependencies": { - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "dev": true, - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - } - } - }, - "npm-path": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/npm-path/-/npm-path-2.0.4.tgz", - "integrity": "sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==", - "dev": true, - "requires": { - "which": "^1.2.10" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "dev": true, - "requires": { - "path-key": "^2.0.0" - } - }, - "npm-which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz", - "integrity": "sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo=", - "dev": true, - "requires": { - "commander": "^2.9.0", - "npm-path": "^2.0.2", - "which": "^1.2.10" - } - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "dev": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "nth-check": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz", - "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", - "requires": { - "boolbase": "~1.0.0" - } - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", - "dev": true - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "nyc": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/nyc/-/nyc-13.3.0.tgz", - "integrity": "sha512-P+FwIuro2aFG6B0Esd9ZDWUd51uZrAEoGutqZxzrVmYl3qSfkLgcQpBPBjtDFsUQLFY1dvTQJPOyeqr8S9GF8w==", - "dev": true, - "requires": { - "archy": "^1.0.0", - "arrify": "^1.0.1", - "caching-transform": "^3.0.1", - "convert-source-map": "^1.6.0", - "find-cache-dir": "^2.0.0", - "find-up": "^3.0.0", - "foreground-child": "^1.5.6", - "glob": "^7.1.3", - "istanbul-lib-coverage": "^2.0.3", - "istanbul-lib-hook": "^2.0.3", - "istanbul-lib-instrument": "^3.1.0", - "istanbul-lib-report": "^2.0.4", - "istanbul-lib-source-maps": "^3.0.2", - "istanbul-reports": "^2.1.1", - "make-dir": "^1.3.0", - "merge-source-map": "^1.1.0", - "resolve-from": "^4.0.0", - "rimraf": "^2.6.3", - "signal-exit": "^3.0.2", - "spawn-wrap": "^1.4.2", - "test-exclude": "^5.1.0", - "uuid": "^3.3.2", - "yargs": "^12.0.5", - "yargs-parser": "^11.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "append-transform": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz", - "integrity": "sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==", - "dev": true, - "requires": { - "default-require-extensions": "^2.0.0" - } - }, - "archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "caching-transform": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-3.0.1.tgz", - "integrity": "sha512-Y1KTLNwSPd4ljsDrFOtyXVmm7Gnk42yQitNq43AhE+cwUR/e4T+rmOHs1IPtzBg8066GBJfTOj1rQYFSWSsH2g==", - "dev": true, - "requires": { - "hasha": "^3.0.0", - "make-dir": "^1.3.0", - "package-hash": "^3.0.0", - "write-file-atomic": "^2.3.0" - } - }, - "camelcase": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz", - "integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==", - "dev": true - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "convert-source-map": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", - "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cross-spawn": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz", - "integrity": "sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "default-require-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-2.0.0.tgz", - "integrity": "sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc=", - "dev": true, - "requires": { - "strip-bom": "^3.0.0" - } - }, - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es6-error": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", - "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "dev": true - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - } - } - }, - "find-cache-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.0.0.tgz", - "integrity": "sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "foreground-child": { - "version": "1.5.6", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-1.5.6.tgz", - "integrity": "sha1-T9ca0t/elnibmApcCilZN8svXOk=", - "dev": true, - "requires": { - "cross-spawn": "^4", - "signal-exit": "^3.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "hasha": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hasha/-/hasha-3.0.0.tgz", - "integrity": "sha1-UqMvq4Vp1BymmmH/GiFPjrfIvTk=", - "dev": true, - "requires": { - "is-stream": "^1.0.1" - } - }, - "hosted-git-info": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", - "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "istanbul-lib-coverage": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", - "integrity": "sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw==", - "dev": true - }, - "istanbul-lib-hook": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz", - "integrity": "sha512-CLmEqwEhuCYtGcpNVJjLV1DQyVnIqavMLFHV/DP+np/g3qvdxu3gsPqYoJMXm15sN84xOlckFB3VNvRbf5yEgA==", - "dev": true, - "requires": { - "append-transform": "^1.0.0" - } - }, - "istanbul-lib-report": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz", - "integrity": "sha512-sOiLZLAWpA0+3b5w5/dq0cjm2rrNdAfHWaGhmn7XEFW6X++IV9Ohn+pnELAl9K3rfpaeBfbmH9JU5sejacdLeA==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^2.0.3", - "make-dir": "^1.3.0", - "supports-color": "^6.0.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz", - "integrity": "sha512-JX4v0CiKTGp9fZPmoxpu9YEkPbEqCqBbO3403VabKjH+NRXo72HafD5UgnjTEqHL2SAjaZK1XDuDOkn6I5QVfQ==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.3", - "make-dir": "^1.3.0", - "rimraf": "^2.6.2", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "istanbul-reports": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.1.1.tgz", - "integrity": "sha512-FzNahnidyEPBCI0HcufJoSEoKykesRlFcSzQqjH9x0+LC8tnnE/p/90PBLu8iZTxr8yYZNyTtiAujUqyN+CIxw==", - "dev": true, - "requires": { - "handlebars": "^4.1.0" - } - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash.flattendeep": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", - "dev": true - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", - "dev": true, - "requires": { - "p-defer": "^1.0.0" - } - }, - "mem": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.1.0.tgz", - "integrity": "sha512-I5u6Q1x7wxO0kdOpYBB28xueHADYps5uty/zg936CiG8NTe5sJL8EjrCuLneuDW3PlMdZBGDIn8BirEVdovZvg==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^1.0.0", - "p-is-promise": "^2.0.0" - } - }, - "merge-source-map": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", - "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", - "dev": true, - "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - }, - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - } - } - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "dev": true, - "requires": { - "path-key": "^2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "p-is-promise": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.0.0.tgz", - "integrity": "sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==", - "dev": true - }, - "p-limit": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz", - "integrity": "sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - }, - "package-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-3.0.0.tgz", - "integrity": "sha512-lOtmukMDVvtkL84rJHI7dpTYq+0rli8N2wlnqUcBuDWCfVhRUfOmnR9SsoHFMLpACvEV60dX7rd0rFaYDZI+FA==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.15", - "hasha": "^3.0.0", - "lodash.flattendeep": "^4.4.0", - "release-zalgo": "^1.0.0" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", - "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", - "dev": true, - "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - } - }, - "release-zalgo": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz", - "integrity": "sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=", - "dev": true, - "requires": { - "es6-error": "^4.0.1" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "resolve": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", - "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "semver": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", - "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==", - "dev": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "spawn-wrap": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-1.4.2.tgz", - "integrity": "sha512-vMwR3OmmDhnxCVxM8M+xO/FtIp6Ju/mNaDfCMMW7FDcLRTPFWUswec4LXJHTJE2hwTI9O0YBfygu4DalFl7Ylg==", - "dev": true, - "requires": { - "foreground-child": "^1.5.6", - "mkdirp": "^0.5.0", - "os-homedir": "^1.0.1", - "rimraf": "^2.6.2", - "signal-exit": "^3.0.2", - "which": "^1.3.0" - } - }, - "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", - "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz", - "integrity": "sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g==", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true - }, - "test-exclude": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.1.0.tgz", - "integrity": "sha512-gwf0S2fFsANC55fSeSqpb8BYk6w3FDvwZxfNjeF6FRgvFa43r+7wRiA/Q0IxoRU37wB/LE8IQ4221BsNucTaCA==", - "dev": true, - "requires": { - "arrify": "^1.0.1", - "minimatch": "^3.0.4", - "read-pkg-up": "^4.0.0", - "require-main-filename": "^1.0.1" - } - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write-file-atomic": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.2.tgz", - "integrity": "sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - }, - "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - } - }, - "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "object-hash": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.3.0.tgz", - "integrity": "sha512-05KzQ70lSeGSrZJQXE5wNDiTkBJDlUT/myi6RX9dVIvz7a7Qh4oH93BQdiPMn27nldYvVQCKMUaM83AfizZlsQ==", - "dev": true - }, - "object-keys": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", - "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==", - "dev": true - }, - "object-path": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz", - "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "requires": { - "isobject": "^3.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "object.getownpropertydescriptors": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", - "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", - "dev": true, - "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.5.1" - } - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "requires": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "requires": { - "isobject": "^3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz", - "integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "1.1.0", - "resolved": "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=", - "dev": true - }, - "opener": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.1.tgz", - "integrity": "sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA==", - "dev": true - }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", - "dev": true, - "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" - }, - "dependencies": { - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", - "dev": true - } - } - }, - "optimize-css-assets-webpack-plugin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-4.0.3.tgz", - "integrity": "sha512-iOfMsuGMPbM/bZZ731gwtAXfXjIkR97BXqUXsPGIzBaQzpvqajsoIFlR+z+Q7FLcq2TmV4JFGo80d98ttfRzhA==", - "dev": true, - "requires": { - "cssnano": "^3.10.0", - "last-call-webpack-plugin": "^3.0.0" - } - }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" - } - }, - "ora": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/ora/-/ora-0.2.3.tgz", - "integrity": "sha1-N1J9Igrc1Tw5tzVx11QVbV22V6Q=", - "dev": true, - "requires": { - "chalk": "^1.1.1", - "cli-cursor": "^1.0.2", - "cli-spinners": "^0.1.2", - "object-assign": "^4.0.1" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true, - "requires": { - "lcid": "^1.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "dev": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "p-is-promise": { - "version": "1.1.0", - "resolved": "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", - "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", - "dev": true - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-map": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", - "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", - "dev": true - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - }, - "pako": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", - "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==", - "dev": true - }, - "parallel-transform": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", - "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", - "dev": true, - "requires": { - "cyclist": "~0.2.2", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - } - }, - "parse-asn1": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", - "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==", - "dev": true, - "requires": { - "asn1.js": "^4.0.0", - "browserify-aes": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3" - } - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "requires": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, - "parse-key": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/parse-key/-/parse-key-0.2.1.tgz", - "integrity": "sha1-e892WVU242B1Zkvk1ofkvdkQII8=", - "dev": true - }, - "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" - }, - "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "pbkdf2": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", - "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "piping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/piping/-/piping-0.3.2.tgz", - "integrity": "sha1-1WZCCABwQZ42IK7ND/RbYNBkqMo=", - "requires": { - "chokidar": "^1.1.0", - "colors": "1.0.x" - } - }, - "pirates": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.0.tgz", - "integrity": "sha512-8t5BsXy1LUIjn3WWOlOuFDuKswhQb/tkak641lvBgmPOBUQHXveORtlMCp6OdPV1dtuTaEahKA8VNz6uLfKBtA==", - "dev": true, - "requires": { - "node-modules-regexp": "^1.0.0" - } - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "requires": { - "find-up": "^2.1.0" - } - }, - "pluralize": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", - "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", - "dev": true - }, - "popper.js": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz", - "integrity": "sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA==" - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" - }, - "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - }, - "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - } - } - }, - "postcss-calc": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", - "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", - "dev": true, - "requires": { - "postcss": "^5.0.2", - "postcss-message-helpers": "^2.0.0", - "reduce-css-calc": "^1.2.6" - } - }, - "postcss-colormin": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", - "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", - "dev": true, - "requires": { - "colormin": "^1.0.5", - "postcss": "^5.0.13", - "postcss-value-parser": "^3.2.3" - } - }, - "postcss-convert-values": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", - "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", - "dev": true, - "requires": { - "postcss": "^5.0.11", - "postcss-value-parser": "^3.1.2" - } - }, - "postcss-discard-comments": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", - "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", - "dev": true, - "requires": { - "postcss": "^5.0.14" - } - }, - "postcss-discard-duplicates": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", - "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-discard-empty": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", - "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", - "dev": true, - "requires": { - "postcss": "^5.0.14" - } - }, - "postcss-discard-overridden": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", - "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", - "dev": true, - "requires": { - "postcss": "^5.0.16" - } - }, - "postcss-discard-unused": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", - "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", - "dev": true, - "requires": { - "postcss": "^5.0.14", - "uniqs": "^2.0.0" - } - }, - "postcss-filter-plugins": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz", - "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-font-family": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/postcss-font-family/-/postcss-font-family-1.2.1.tgz", - "integrity": "sha1-dQJSSzmDox5q9k5LqhA07W7YQYw=", - "dev": true, - "requires": { - "object-assign": "^3.0.0", - "postcss": "^4.1.16", - "uniqs": "^2.0.0" - }, - "dependencies": { - "js-base64": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", - "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", - "dev": true - }, - "object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", - "dev": true - }, - "postcss": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz", - "integrity": "sha1-TESbTIr53zyvbTf44eV10DYXWNw=", - "dev": true, - "requires": { - "es6-promise": "~2.3.0", - "js-base64": "~2.1.8", - "source-map": "~0.4.2" - } - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "postcss-merge-idents": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", - "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", - "dev": true, - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.10", - "postcss-value-parser": "^3.1.1" - } - }, - "postcss-merge-longhand": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", - "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-merge-rules": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", - "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", - "dev": true, - "requires": { - "browserslist": "^1.5.2", - "caniuse-api": "^1.5.2", - "postcss": "^5.0.4", - "postcss-selector-parser": "^2.2.2", - "vendors": "^1.0.0" - }, - "dependencies": { - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "dev": true, - "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" - } - } - } - }, - "postcss-message-helpers": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz", - "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=", - "dev": true - }, - "postcss-minify-font-values": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", - "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", - "dev": true, - "requires": { - "object-assign": "^4.0.1", - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" - } - }, - "postcss-minify-font-weight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-font-weight/-/postcss-minify-font-weight-1.0.1.tgz", - "integrity": "sha1-aI5CzfI27Osb1WOojPHSTQOgWIg=", - "dev": true, - "requires": { - "postcss": "^4.1.11" - }, - "dependencies": { - "js-base64": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", - "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", - "dev": true - }, - "postcss": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz", - "integrity": "sha1-TESbTIr53zyvbTf44eV10DYXWNw=", - "dev": true, - "requires": { - "es6-promise": "~2.3.0", - "js-base64": "~2.1.8", - "source-map": "~0.4.2" - } - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "postcss-minify-gradients": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", - "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", - "dev": true, - "requires": { - "postcss": "^5.0.12", - "postcss-value-parser": "^3.3.0" - } - }, - "postcss-minify-params": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", - "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.2", - "postcss-value-parser": "^3.0.2", - "uniqs": "^2.0.0" - } - }, - "postcss-minify-selectors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", - "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.2", - "has": "^1.0.1", - "postcss": "^5.0.14", - "postcss-selector-parser": "^2.0.0" - } - }, - "postcss-modules-extract-imports": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz", - "integrity": "sha1-ZhQOzs447wa/DT41XWm/WdFB6oU=", - "dev": true, - "requires": { - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-modules-local-by-default": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", - "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-modules-scope": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", - "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-modules-values": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", - "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", - "dev": true, - "requires": { - "icss-replace-symbols": "^1.1.0", - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-normalize-charset": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", - "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", - "dev": true, - "requires": { - "postcss": "^5.0.5" - } - }, - "postcss-normalize-url": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", - "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", - "dev": true, - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^1.4.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3" - } - }, - "postcss-ordered-values": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", - "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", - "dev": true, - "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.1" - } - }, - "postcss-reduce-idents": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", - "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", - "dev": true, - "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" - } - }, - "postcss-reduce-initial": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", - "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-reduce-transforms": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", - "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", - "dev": true, - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.8", - "postcss-value-parser": "^3.0.1" - } - }, - "postcss-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", - "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", - "dev": true, - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - }, - "postcss-single-charset": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/postcss-single-charset/-/postcss-single-charset-0.3.0.tgz", - "integrity": "sha1-2n/Q3szPYy8bdMei7j41vilFZXM=", - "dev": true, - "requires": { - "fs-extra": "^0.14.0", - "postcss": "^4.1.0" - }, - "dependencies": { - "fs-extra": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.14.0.tgz", - "integrity": "sha1-RmCWxroticIAA4DaskULeFn/Z0M=", - "dev": true, - "requires": { - "jsonfile": "^2.0.0", - "ncp": "^1.0.1", - "rimraf": "^2.2.8" - } - }, - "js-base64": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", - "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=", - "dev": true - }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "postcss": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz", - "integrity": "sha1-TESbTIr53zyvbTf44eV10DYXWNw=", - "dev": true, - "requires": { - "es6-promise": "~2.3.0", - "js-base64": "~2.1.8", - "source-map": "~0.4.2" - } - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "postcss-svgo": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", - "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", - "dev": true, - "requires": { - "is-svg": "^2.0.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3", - "svgo": "^0.7.0" - } - }, - "postcss-unique-selectors": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", - "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - } - }, - "postcss-value-parser": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", - "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=", - "dev": true - }, - "postcss-zindex": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", - "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", - "dev": true, - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" - }, - "prettier": { - "version": "1.16.4", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.16.4.tgz", - "integrity": "sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g==" - }, - "pretty-error": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-1.2.0.tgz", - "integrity": "sha1-8oBYQUvzTdLpk0liGTN+nSWlraU=", - "requires": { - "renderkid": "~1.0.0", - "utila": "~0.4" - } - }, - "pretty-format": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-21.2.1.tgz", - "integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0", - "ansi-styles": "^3.2.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - } - } - }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true - }, - "process": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", - "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" - } - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "prop-types": { - "version": "15.6.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz", - "integrity": "sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==", - "requires": { - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - }, - "prop-types-extra": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.0.tgz", - "integrity": "sha512-QFyuDxvMipmIVKD2TwxLVPzMnO4e5oOf1vr3tJIomL8E7d0lr6phTHd5nkPhFIzTD1idBLLEPeylL9g+rrTzRg==", - "requires": { - "react-is": "^16.3.2", - "warning": "^3.0.0" - } - }, - "proxy-addr": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", - "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", - "dev": true, - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.8.0" - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "psl": { - "version": "1.1.29", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", - "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "pure-color": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", - "integrity": "sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=", - "dev": true - }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "random-bytes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", - "integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs=", - "dev": true - }, - "randomatic": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz", - "integrity": "sha512-KnGPVE0lo2WoXxIZ7cPR8YBpiol4gsSuOwDSg410oHh80ZMp5EiypNqL2K4Z77vJn6lB5rap7IkAmcUlalcnBQ==", - "requires": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "randombytes": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz", - "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", - "dev": true - }, - "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "dev": true, - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "unpipe": "1.0.0" - }, - "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", - "dev": true - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "dev": true, - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" - } - }, - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==", - "dev": true - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", - "dev": true - } - } - }, - "react": { - "version": "16.8.2", - "resolved": "https://registry.npmjs.org/react/-/react-16.8.2.tgz", - "integrity": "sha512-aB2ctx9uQ9vo09HVknqv3DGRpI7OIGJhCx3Bt0QqoRluEjHSaObJl+nG12GDdYH6sTgE7YiPJ6ZUyMx9kICdXw==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.2" - } - }, - "react-a11y": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/react-a11y/-/react-a11y-0.2.8.tgz", - "integrity": "sha1-IzahMoLERiV5rThdAJcjv74p87I=", - "dev": true - }, - "react-ace": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/react-ace/-/react-ace-6.2.0.tgz", - "integrity": "sha512-Cr27xFNZV2wlQi+mFjgUWfd3yPZV84Sf7XVrEXkDBZmQ5I/oY3x4KvtBjX6ImN7SCWu3sU6z9F3Zh6jH3/jtzw==", - "requires": { - "brace": "^0.11.1", - "diff-match-patch": "^1.0.4", - "lodash.get": "^4.4.2", - "lodash.isequal": "^4.5.0", - "prop-types": "^15.6.2" - } - }, - "react-addons-test-utils": { - "version": "15.6.2", - "resolved": "https://registry.npmjs.org/react-addons-test-utils/-/react-addons-test-utils-15.6.2.tgz", - "integrity": "sha1-wStu/cIkfBDae4dw0YUICnsEcVY=", - "dev": true - }, - "react-base16-styling": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.5.3.tgz", - "integrity": "sha1-OFjyTpxN2MvT9wLz901YHKKRcmk=", - "dev": true, - "requires": { - "base16": "^1.0.0", - "lodash.curry": "^4.0.1", - "lodash.flow": "^3.3.0", - "pure-color": "^1.2.0" - } - }, - "react-bootstrap": { - "version": "0.32.4", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-0.32.4.tgz", - "integrity": "sha512-xj+JfaPOvnvr3ow0aHC7Y3HaBKZNR1mm361hVxVzVX3fcdJNIrfiodbQ0m9nLBpNxiKG6FTU2lq/SbTDYT2vew==", - "requires": { - "@babel/runtime-corejs2": "^7.0.0", - "classnames": "^2.2.5", - "dom-helpers": "^3.2.0", - "invariant": "^2.2.4", - "keycode": "^2.2.0", - "prop-types": "^15.6.1", - "prop-types-extra": "^1.0.1", - "react-overlays": "^0.8.0", - "react-prop-types": "^0.4.0", - "react-transition-group": "^2.0.0", - "uncontrollable": "^5.0.0", - "warning": "^3.0.0" - } - }, - "react-copy-to-clipboard": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.1.tgz", - "integrity": "sha512-ELKq31/E3zjFs5rDWNCfFL4NvNFQvGRoJdAKReD/rUPA+xxiLPQmZBZBvy2vgH7V0GE9isIQpT9WXbwIVErYdA==", - "requires": { - "copy-to-clipboard": "^3", - "prop-types": "^15.5.8" - } - }, - "react-dock": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/react-dock/-/react-dock-0.2.4.tgz", - "integrity": "sha1-5yfcdVCztzEWY13LnA4E0Lev4Xw=", - "dev": true, - "requires": { - "lodash.debounce": "^3.1.1", - "prop-types": "^15.5.8" - } - }, - "react-dom": { - "version": "16.8.2", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.2.tgz", - "integrity": "sha512-cPGfgFfwi+VCZjk73buu14pYkYBR1b/SRMSYqkLDdhSEHnSwcuYTPu6/Bh6ZphJFIk80XLvbSe2azfcRzNF+Xg==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.13.2" - } - }, - "react-event-listener": { - "version": "0.6.6", - "resolved": "https://registry.npmjs.org/react-event-listener/-/react-event-listener-0.6.6.tgz", - "integrity": "sha512-+hCNqfy7o9wvO6UgjqFmBzARJS7qrNoda0VqzvOuioEpoEXKutiKuv92dSz6kP7rYLmyHPyYNLesi5t/aH1gfw==", - "requires": { - "@babel/runtime": "^7.2.0", - "prop-types": "^15.6.0", - "warning": "^4.0.1" - }, - "dependencies": { - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - } - } - }, - "react-helmet": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-helmet/-/react-helmet-5.2.0.tgz", - "integrity": "sha1-qBgR3yExOm1VxfBYxK66XW89l6c=", - "requires": { - "deep-equal": "^1.0.1", - "object-assign": "^4.1.1", - "prop-types": "^15.5.4", - "react-side-effect": "^1.1.0" - } - }, - "react-hot-loader": { - "version": "4.6.5", - "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.6.5.tgz", - "integrity": "sha512-ZPAJEWVd8KDdm6dcK0iWrnJiGHruLrcbkIpqn/wQmNjnROpsm2nzrWh23Yh3I/XAjB+35pMa/ZgariwGqwFD9A==", - "dev": true, - "requires": { - "fast-levenshtein": "^2.0.6", - "global": "^4.3.0", - "hoist-non-react-statics": "^2.5.0", - "loader-utils": "^1.1.0", - "lodash.merge": "^4.6.1", - "prop-types": "^15.6.1", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.0.2", - "source-map": "^0.7.3" - }, - "dependencies": { - "hoist-non-react-statics": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", - "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==", - "dev": true - }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - } - } - }, - "react-is": { - "version": "16.5.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.5.2.tgz", - "integrity": "sha512-hSl7E6l25GTjNEZATqZIuWOgSnpXb3kD0DVCujmg46K5zLxsbiKaaT6VO9slkSBDPZfYs30lwfJwbOFOnoEnKQ==" - }, - "react-json-tree": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-json-tree/-/react-json-tree-0.11.0.tgz", - "integrity": "sha1-9bF+gzKanHauOL5cBP2jp/1oSjU=", - "dev": true, - "requires": { - "babel-runtime": "^6.6.1", - "prop-types": "^15.5.8", - "react-base16-styling": "^0.5.1" - } - }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "react-modal": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.6.1.tgz", - "integrity": "sha512-vAhnawahH1fz8A5x/X/1X20KHMe6Q0mkfU5BKPgKSVPYhMhsxtRbNHSitsoJ7/oP27xZo3naZZlwYuuzuSO1xw==", - "requires": { - "exenv": "^1.2.0", - "prop-types": "^15.5.10", - "react-lifecycles-compat": "^3.0.0", - "warning": "^3.0.0" - } - }, - "react-notification-system": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/react-notification-system/-/react-notification-system-0.2.17.tgz", - "integrity": "sha1-pg7du2IiWtj5/F14N1Rr9s2zaBg=", - "requires": { - "create-react-class": "^15.5.1", - "object-assign": "^4.0.1", - "prop-types": "^15.5.6" - } - }, - "react-overlays": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-overlays/-/react-overlays-0.8.3.tgz", - "integrity": "sha512-h6GT3jgy90PgctleP39Yu3eK1v9vaJAW73GOA/UbN9dJ7aAN4BTZD6793eI1D5U+ukMk17qiqN/wl3diK1Z5LA==", - "requires": { - "classnames": "^2.2.5", - "dom-helpers": "^3.2.1", - "prop-types": "^15.5.10", - "prop-types-extra": "^1.0.1", - "react-transition-group": "^2.2.0", - "warning": "^3.0.0" - } - }, - "react-progress-bar-plus": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/react-progress-bar-plus/-/react-progress-bar-plus-1.3.1.tgz", - "integrity": "sha512-ATfMeD/98IMhPQSYEfno9m/Phwd+YaxwJ4nzLmivoUYK6MSC91nX4agYIUHKwwnCc7tGCxf/oN91pAgb2N0ErQ==", - "requires": { - "classnames": "^2.1.5", - "prop-types": "^15.5.10" - } - }, - "react-prop-types": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/react-prop-types/-/react-prop-types-0.4.0.tgz", - "integrity": "sha1-+ZsL+0AGkpya8gUefBQUpcdbk9A=", - "requires": { - "warning": "^3.0.0" - } - }, - "react-pure-render": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/react-pure-render/-/react-pure-render-1.0.2.tgz", - "integrity": "sha1-nYqSjH8sN1E8LQZOV7Pjw1bp+rs=", - "dev": true - }, - "react-redux": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-5.0.7.tgz", - "integrity": "sha512-5VI8EV5hdgNgyjfmWzBbdrqUkrVRKlyTKk1sGH3jzM2M2Mhj/seQgPXaz6gVAj2lz/nz688AdTqMO18Lr24Zhg==", - "requires": { - "hoist-non-react-statics": "^2.5.0", - "invariant": "^2.0.0", - "lodash": "^4.17.5", - "lodash-es": "^4.17.5", - "loose-envify": "^1.1.0", - "prop-types": "^15.6.0" - }, - "dependencies": { - "hoist-non-react-statics": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", - "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" - } - } - }, - "react-router": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-3.2.1.tgz", - "integrity": "sha512-SXkhC0nr3G0ltzVU07IN8jYl0bB6FsrDIqlLC9dK3SITXqyTJyM7yhXlUqs89w3Nqi5OkXsfRUeHX+P874HQrg==", - "requires": { - "create-react-class": "^15.5.1", - "history": "^3.0.0", - "hoist-non-react-statics": "^2.3.1", - "invariant": "^2.2.1", - "loose-envify": "^1.2.0", - "prop-types": "^15.5.6", - "warning": "^3.0.0" - }, - "dependencies": { - "hoist-non-react-statics": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", - "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" - } - } - }, - "react-router-redux": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/react-router-redux/-/react-router-redux-4.0.8.tgz", - "integrity": "sha1-InQDWWtRUeGCN32rg1tdRfD4BU4=" - }, - "react-side-effect": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-1.1.5.tgz", - "integrity": "sha512-Z2ZJE4p/jIfvUpiUMRydEVpQRf2f8GMHczT6qLcARmX7QRb28JDBTpnM2g/i5y/p7ZDEXYGHWg0RbhikE+hJRw==", - "requires": { - "exenv": "^1.2.1", - "shallowequal": "^1.0.1" - } - }, - "react-tabs": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-tabs/-/react-tabs-2.3.0.tgz", - "integrity": "sha512-pYaefgVy76/36AMEP+B8YuVVzDHa3C5UFZ3REU78zolk0qMxEhKvUFofvDCXyLZwf0RZjxIfiwok1BEb18nHyA==", - "requires": { - "classnames": "^2.2.0", - "prop-types": "^15.5.0" - } - }, - "react-transition-group": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.5.0.tgz", - "integrity": "sha512-qYB3JBF+9Y4sE4/Mg/9O6WFpdoYjeeYqx0AFb64PTazVy8RPMiE3A47CG9QmM4WJ/mzDiZYslV+Uly6O1Erlgw==", - "requires": { - "dom-helpers": "^3.3.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2", - "react-lifecycles-compat": "^3.0.4" - } - }, - "read-file-stdin": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz", - "integrity": "sha1-JezP86FTtoCa+ssj7hU4fbng7mE=", - "dev": true, - "requires": { - "gather-stream": "^1.0.0" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - } - } - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - } - } - }, - "recompose": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/recompose/-/recompose-0.30.0.tgz", - "integrity": "sha512-ZTrzzUDa9AqUIhRk4KmVFihH0rapdCSMFXjhHbNrjAWxBuUD/guYlyysMnuHjlZC/KRiOKRtB4jf96yYSkKE8w==", - "requires": { - "@babel/runtime": "^7.0.0", - "change-emitter": "^0.1.2", - "fbjs": "^0.8.1", - "hoist-non-react-statics": "^2.3.1", - "react-lifecycles-compat": "^3.0.2", - "symbol-observable": "^1.0.4" - }, - "dependencies": { - "hoist-non-react-statics": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz", - "integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==" - } - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - }, - "dependencies": { - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, - "requires": { - "get-stdin": "^4.0.1" - } - } - } - }, - "reduce-css-calc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", - "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", - "dev": true, - "requires": { - "balanced-match": "^0.4.2", - "math-expression-evaluator": "^1.2.14", - "reduce-function-call": "^1.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=", - "dev": true - } - } - }, - "reduce-function-call": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz", - "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=", - "dev": true, - "requires": { - "balanced-match": "^0.4.2" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=", - "dev": true - } - } - }, - "redux": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.0.tgz", - "integrity": "sha512-NnnHF0h0WVE/hXyrB6OlX67LYRuaf/rJcbWvnHHEPCF/Xa/AZpwhs/20WyqzQae5x4SD2F9nPObgBh2rxAgLiA==", - "requires": { - "loose-envify": "^1.1.0", - "symbol-observable": "^1.2.0" - } - }, - "redux-devtools": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/redux-devtools/-/redux-devtools-3.4.1.tgz", - "integrity": "sha1-CdNCzgq2CHvmeelTodfFMO+hE44=", - "dev": true, - "requires": { - "lodash": "^4.2.0", - "prop-types": "^15.5.7", - "redux-devtools-instrument": "^1.0.1" - } - }, - "redux-devtools-dock-monitor": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/redux-devtools-dock-monitor/-/redux-devtools-dock-monitor-1.1.3.tgz", - "integrity": "sha512-yAXzoI0lpjv19CxVuw8RECeFWUVdyzayqnkX8ePZyeXV2ZgIk4T+rKx82Wk+REP1y3rl8o1/oFDq4B7EobOqMg==", - "dev": true, - "requires": { - "babel-runtime": "^6.2.0", - "parse-key": "^0.2.1", - "prop-types": "^15.5.8", - "react-dock": "^0.2.4", - "react-pure-render": "^1.0.2" - } - }, - "redux-devtools-instrument": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/redux-devtools-instrument/-/redux-devtools-instrument-1.9.0.tgz", - "integrity": "sha512-pLFQoja1ojpsSRTWbC9yyc/a+z8uwOD7FPKLp+Abs7qjsah6khA5o8HBE2wa0VipE5vniYINdkNyxV/2iWADKg==", - "dev": true, - "requires": { - "lodash": "^4.2.0", - "symbol-observable": "^1.0.2" - } - }, - "redux-devtools-log-monitor": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/redux-devtools-log-monitor/-/redux-devtools-log-monitor-1.4.0.tgz", - "integrity": "sha1-cWuVgO2iozHNNZo2qgnjoWAqhUs=", - "dev": true, - "requires": { - "lodash.debounce": "^4.0.4", - "prop-types": "^15.0.0", - "react-json-tree": "^0.11.0", - "react-pure-render": "^1.0.2", - "redux-devtools-themes": "^1.0.0" - }, - "dependencies": { - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", - "dev": true - } - } - }, - "redux-devtools-themes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redux-devtools-themes/-/redux-devtools-themes-1.0.0.tgz", - "integrity": "sha1-xILc48U3OXYEX0ATSQfZ3LOuPV0=", - "dev": true, - "requires": { - "base16": "^1.0.0" - } - }, - "redux-logger": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/redux-logger/-/redux-logger-3.0.6.tgz", - "integrity": "sha1-91VZZvMJjzyIYExEnPC69XeCdL8=", - "requires": { - "deep-diff": "^0.3.5" - } - }, - "redux-thunk": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz", - "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==" - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - }, - "regenerate-unicode-properties": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz", - "integrity": "sha512-s5NGghCE4itSlUS+0WUj88G6cfMVMmH8boTPNvABf8od+2dhT9WDlWu8n01raQAJZMOK8Ch6jSexaRO7swd6aw==", - "dev": true, - "requires": { - "regenerate": "^1.4.0" - } - }, - "regenerator-runtime": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", - "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" - }, - "regenerator-transform": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.13.3.tgz", - "integrity": "sha512-5ipTrZFSq5vU2YoGoww4uaRVAK4wyYC4TSICibbfEPOruUu8FFP7ErV0BjmbIOEpn3O/k9na9UEdYR/3m7N6uA==", - "dev": true, - "requires": { - "private": "^0.1.6" - } - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "requires": { - "is-equal-shallow": "^0.1.3" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regex-parser": { - "version": "2.2.9", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.9.tgz", - "integrity": "sha512-VncXxOF6uFlYog5prG2j+e2UGJeam5MfNiJnB/qEgo4KTnMm2XrELCg4rNZ6IlaEUZnGlb8aB6lXowCRQtTkkA==", - "dev": true - }, - "regexp-tree": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.1.tgz", - "integrity": "sha512-HwRjOquc9QOwKTgbxvZTcddS5mlNlwePMQ3NFL8broajMLD5CXDAqas8Y5yxJH5QtZp5iRor3YCILd5pz71Cgw==", - "dev": true, - "requires": { - "cli-table3": "^0.5.0", - "colors": "^1.1.2", - "yargs": "^12.0.5" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "camelcase": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz", - "integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==", - "dev": true - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - } - }, - "colors": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", - "integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==", - "dev": true - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-limit": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz", - "integrity": "sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" - } - }, - "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, - "regexpp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz", - "integrity": "sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==", - "dev": true - }, - "regexpu-core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.4.0.tgz", - "integrity": "sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA==", - "dev": true, - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^7.0.0", - "regjsgen": "^0.5.0", - "regjsparser": "^0.6.0", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.0.2" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", - "dev": true - }, - "regjsparser": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - } - } - } - }, - "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", - "dev": true - }, - "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - } - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - }, - "renderkid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-1.0.0.tgz", - "integrity": "sha1-KeFsX2S+m91SmJtqYwrHmcc4FYs=", - "requires": { - "css-select": "^1.1.0", - "dom-converter": "~0.1", - "htmlparser2": "~3.3.0", - "strip-ansi": "^3.0.0", - "utila": "~0.3" - }, - "dependencies": { - "utila": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.3.3.tgz", - "integrity": "sha1-1+jn1+MJEHCSsF+NloiCTWM6QiY=" - } - } - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "^1.0.0" - } - }, - "request": { - "version": "2.88.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", - "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.0", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.4.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "require-hacker": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/require-hacker/-/require-hacker-3.0.1.tgz", - "integrity": "sha1-CHm+Bn/PBnUwZlvM5MiayBqHBHc=", - "dev": true, - "requires": { - "babel-runtime": "^6.6.1", - "colors": "^1.1.2" - }, - "dependencies": { - "colors": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz", - "integrity": "sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ==", - "dev": true - } - } - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "require-uncached": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", - "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", - "dev": true, - "requires": { - "caller-path": "^0.1.0", - "resolve-from": "^1.0.0" - } - }, - "resolve": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", - "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", - "dev": true, - "requires": { - "path-parse": "^1.0.5" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - } - } - }, - "resolve-from": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - }, - "resolve-url-loader": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-2.3.1.tgz", - "integrity": "sha512-tpt4A/tOT8jxRDa91RbBV4c22AGj+WllOxT8rYSYhT2XDdL33Nca9HudwVx4mvP9PLokz+wpCu44tWUGVMYYLA==", - "dev": true, - "requires": { - "adjust-sourcemap-loader": "^1.1.0", - "camelcase": "^4.1.0", - "convert-source-map": "^1.5.1", - "loader-utils": "^1.1.0", - "lodash.defaults": "^4.0.0", - "rework": "^1.0.1", - "rework-visit": "^1.0.0", - "source-map": "^0.5.7", - "urix": "^0.1.0" - }, - "dependencies": { - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "restore-cursor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", - "dev": true, - "requires": { - "exit-hook": "^1.0.0", - "onetime": "^1.0.0" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "rework": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", - "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", - "dev": true, - "requires": { - "convert-source-map": "^0.3.3", - "css": "^2.0.0" - }, - "dependencies": { - "convert-source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", - "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=", - "dev": true - } - } - }, - "rework-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", - "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=", - "dev": true - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "dev": true, - "requires": { - "align-text": "^0.1.1" - } - }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", - "dev": true, - "requires": { - "glob": "^7.0.5" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "dev": true, - "requires": { - "is-promise": "^2.1.0" - } - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "dev": true, - "requires": { - "aproba": "^1.1.1" - } - }, - "rx": { - "version": "2.3.24", - "resolved": "https://registry.npmjs.org/rx/-/rx-2.3.24.tgz", - "integrity": "sha1-FPlQpCF9fjXapxu8vljv9o6ksrc=", - "dev": true - }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=", - "dev": true - }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", - "dev": true, - "requires": { - "rx-lite": "*" - } - }, - "rxjs": { - "version": "5.5.12", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz", - "integrity": "sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==", - "dev": true, - "requires": { - "symbol-observable": "1.0.1" - }, - "dependencies": { - "symbol-observable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz", - "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=", - "dev": true - } - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "samsam": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz", - "integrity": "sha1-vsEf3IOp/aBjQBIQ5AF2wwJNFWc=", - "dev": true - }, - "sass-graph": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", - "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", - "dev": true, - "requires": { - "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^7.0.0" - } - }, - "sass-loader": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-7.1.0.tgz", - "integrity": "sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w==", - "dev": true, - "requires": { - "clone-deep": "^2.0.1", - "loader-utils": "^1.0.1", - "lodash.tail": "^4.1.1", - "neo-async": "^2.5.0", - "pify": "^3.0.0", - "semver": "^5.5.0" - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "scheduler": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.13.2.tgz", - "integrity": "sha512-qK5P8tHS7vdEMCW5IPyt8v9MJOHqTrOUgPXib7tqm9vh834ibBX5BNhwkplX/0iOzHW5sXyluehYfS9yrkz9+w==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", - "dev": true, - "requires": { - "ajv": "^5.0.0" - } - }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", - "dev": true, - "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "select": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", - "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" - }, - "semver": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", - "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==" - }, - "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" - }, - "dependencies": { - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true - } - } - }, - "serialize-javascript": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz", - "integrity": "sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==", - "dev": true - }, - "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz", - "integrity": "sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==", - "dev": true, - "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^5.0.0", - "mixin-object": "^2.0.1" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "sinon": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/sinon/-/sinon-1.17.7.tgz", - "integrity": "sha1-RUKk9JugxFwF6y6d2dID4rjv4L8=", - "dev": true, - "requires": { - "formatio": "1.1.1", - "lolex": "1.3.2", - "samsam": "1.1.2", - "util": ">=0.10.3 <1" - } - }, - "slice-ansi": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", - "dev": true - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "requires": { - "kind-of": "^3.2.0" - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "dev": true, - "requires": { - "is-plain-obj": "^1.0.0" - } - }, - "source-list-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", - "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.10.tgz", - "integrity": "sha512-YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" - }, - "spawn-command": { - "version": "0.0.2-1", - "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", - "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", - "dev": true - }, - "spdx-correct": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.1.tgz", - "integrity": "sha512-hxSPZbRZvSDuOvADntOElzJpenIR7wXJkuoUcUtS0erbgt2fgeaoPIYretfKpslMhfFDY4k0MZ2F5CUzhBsSvQ==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", - "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz", - "integrity": "sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==", - "dev": true - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "sshpk": { - "version": "1.14.2", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz", - "integrity": "sha1-xvxhZIo9nE52T9P8306hBeSSupg=", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", - "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.1" - } - }, - "staged-git-files": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/staged-git-files/-/staged-git-files-1.0.0.tgz", - "integrity": "sha1-zbhHg3wfzFLAioctSIPMCHdmioA=", - "dev": true - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", - "dev": true - }, - "stdout-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", - "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } - }, - "stream-browserify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", - "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", - "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", - "dev": true - }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string.prototype.repeat": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz", - "integrity": "sha1-q6Nt4I3O5qWjN9SbLqHaGyj8Ds8=" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "stringify-object": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.2.2.tgz", - "integrity": "sha512-O696NF21oLiDy8PhpWu8AEqoZHw++QW6mUv0UvKZe8gWSdSvMXkiLufK7OmnP27Dro4GU5kb9U7JIO0mBuCRQg==", - "dev": true, - "requires": { - "get-own-enumerable-property-symbols": "^2.0.1", - "is-obj": "^1.0.1", - "is-regexp": "^1.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "^0.2.0" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true - }, - "strip-indent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz", - "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "style-loader": { - "version": "0.20.3", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.20.3.tgz", - "integrity": "sha512-2I7AVP73MvK33U7B9TKlYZAqdROyMXDYSMvHLX43qy3GCOaJNiV6i0v/sv9idWIaQ42Yn2dNv79Q5mKXbKhAZg==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0", - "schema-utils": "^0.4.5" - }, - "dependencies": { - "ajv": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz", - "integrity": "sha512-4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "subscriptions-transport-ws": { - "version": "0.9.15", - "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.15.tgz", - "integrity": "sha512-f9eBfWdHsePQV67QIX+VRhf++dn1adyC/PZHP6XI5AfKnZ4n0FW+v5omxwdHVpd4xq2ZijaHEcmlQrhBY79ZWQ==", - "requires": { - "backo2": "^1.0.2", - "eventemitter3": "^3.1.0", - "iterall": "^1.2.1", - "symbol-observable": "^1.0.4", - "ws": "^5.2.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "svg-pan-zoom": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/svg-pan-zoom/-/svg-pan-zoom-3.6.0.tgz", - "integrity": "sha512-ZBEL2z/n/W2fLLFzn3NTQgd+7QEfbrKvKmu29U3qvMflmJgLaWkwKbOzWJYESFidTiGYMHkijAKmY6m64moyYg==" - }, - "svgo": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", - "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", - "dev": true, - "requires": { - "coa": "~1.0.1", - "colors": "~1.1.2", - "csso": "~2.3.1", - "js-yaml": "~3.7.0", - "mkdirp": "~0.5.1", - "sax": "~1.2.1", - "whet.extend": "~0.9.9" - }, - "dependencies": { - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", - "dev": true - }, - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", - "dev": true - }, - "js-yaml": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", - "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^2.6.0" - } - } - } - }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" - }, - "sync-request": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/sync-request/-/sync-request-3.0.1.tgz", - "integrity": "sha1-yqEjWq+Im6UBB2oYNMQ2gwqC+3M=", - "dev": true, - "requires": { - "concat-stream": "^1.4.7", - "http-response-object": "^1.0.1", - "then-request": "^2.0.1" - } - }, - "table": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz", - "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==", - "dev": true, - "requires": { - "ajv": "^5.2.3", - "ajv-keywords": "^2.1.0", - "chalk": "^2.1.0", - "lodash": "^4.17.4", - "slice-ansi": "1.0.0", - "string-width": "^2.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "slice-ansi": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", - "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "tapable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.0.tgz", - "integrity": "sha512-IlqtmLVaZA2qab8epUXbVWRn3aB1imbDMJtjB3nu4X0NqPkcY/JH9ZtCBWKHWPxs8Svi9tyo8w2dBoi07qZbBA==", - "dev": true - }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "dev": true, - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" - } - }, - "test-exclude": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.1.0.tgz", - "integrity": "sha512-gwf0S2fFsANC55fSeSqpb8BYk6w3FDvwZxfNjeF6FRgvFa43r+7wRiA/Q0IxoRU37wB/LE8IQ4221BsNucTaCA==", - "dev": true, - "requires": { - "arrify": "^1.0.1", - "minimatch": "^3.0.4", - "read-pkg-up": "^4.0.0", - "require-main-filename": "^1.0.1" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", - "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", - "dev": true, - "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true - } - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "then-request": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/then-request/-/then-request-2.2.0.tgz", - "integrity": "sha1-ZnizL6DKIY/laZgbvYhxtZQGDYE=", - "dev": true, - "requires": { - "caseless": "~0.11.0", - "concat-stream": "^1.4.7", - "http-basic": "^2.5.1", - "http-response-object": "^1.1.0", - "promise": "^7.1.1", - "qs": "^6.1.0" - }, - "dependencies": { - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", - "dev": true - } - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dev": true, - "requires": { - "readable-stream": "^2.1.5", - "xtend": "~4.0.1" - } - }, - "timekeeper": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/timekeeper/-/timekeeper-1.0.0.tgz", - "integrity": "sha1-Lziu4elLEd1m2FgP8aqdzGoroNg=", - "dev": true - }, - "timers-browserify": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", - "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==", - "dev": true, - "requires": { - "setimmediate": "^1.0.4" - } - }, - "tiny-emitter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", - "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" - } - } - } - }, - "toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - } - }, - "tree-kill": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz", - "integrity": "sha512-DlX6dR0lOIRDFxI0mjL9IYg6OTncLm/Zt+JiBhE5OlFcAR8yc9S7FFXU9so0oda47frdM/JFsk7UjNt9vscKcg==", - "dev": true - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, - "true-case-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", - "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", - "dev": true, - "requires": { - "glob": "^7.1.2" - } - }, - "tryer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", - "dev": true - }, - "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", - "dev": true - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", - "dev": true - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-is": { - "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.18" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "ua-parser-js": { - "version": "0.7.18", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz", - "integrity": "sha512-LtzwHlVHwFGTptfNSgezHp7WUlwiqb0gA9AALRbKaERfxwJoiX0A73QbTToxteIAuIaFshhgIZfqK8s7clqgnA==" - }, - "uc.micro": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", - "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" - }, - "uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "dev": true, - "requires": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", - "dev": true - } - } - }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "dev": true, - "optional": true - }, - "uglifyjs-webpack-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz", - "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==", - "dev": true, - "requires": { - "cacache": "^10.0.4", - "find-cache-dir": "^1.0.0", - "schema-utils": "^0.4.5", - "serialize-javascript": "^1.4.0", - "source-map": "^0.6.1", - "uglify-es": "^3.3.4", - "webpack-sources": "^1.1.0", - "worker-farm": "^1.5.2" - }, - "dependencies": { - "ajv": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz", - "integrity": "sha512-4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "uid-safe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", - "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", - "dev": true, - "requires": { - "random-bytes": "~1.0.0" - } - }, - "uncontrollable": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-5.1.0.tgz", - "integrity": "sha512-5FXYaFANKaafg4IVZXUNtGyzsnYEvqlr9wQ3WpZxFpEUxl29A3H6Q4G1Dnnorvq9TGOGATBApWR4YpLAh+F5hw==", - "requires": { - "invariant": "^2.2.4" - } - }, - "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", - "dev": true - }, - "unicode-match-property-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", - "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", - "dev": true, - "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz", - "integrity": "sha512-Rx7yODZC1L/T8XKo/2kNzVAQaRE88AaMvI1EF/Xnj3GW2wzN6fop9DDWuFAKUVFH7vozkz26DzP0qyWLKLIVPQ==", - "dev": true - }, - "unicode-property-aliases-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz", - "integrity": "sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg==", - "dev": true - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", - "dev": true - }, - "uniqid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/uniqid/-/uniqid-1.0.0.tgz", - "integrity": "sha1-JYJSTgdASESkLelPviv1SeG3RVU=", - "dev": true - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", - "dev": true - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz", - "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "unused-files-webpack-plugin": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/unused-files-webpack-plugin/-/unused-files-webpack-plugin-3.4.0.tgz", - "integrity": "sha512-cmukKOBdIqaM1pqThY0+jp+mYgCVyzrD8uRbKEucQwIGZcLIRn+gSRiQ7uLjcDd3Zba9NUxVGyYa7lWM4UCGeg==", - "dev": true, - "requires": { - "babel-runtime": "^7.0.0-beta.3", - "glob-all": "^3.1.0", - "semver": "^5.5.0", - "util.promisify": "^1.0.0", - "warning": "^3.0.0" - }, - "dependencies": { - "babel-runtime": { - "version": "7.0.0-beta.3", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-7.0.0-beta.3.tgz", - "integrity": "sha512-jlzZ8RACjt0QGxq+wqsw5bCQE9RcUyWpw987mDY3GYxTpOQT2xoyNoG++oVCHzr/nACLBIprfVBNvv/If1ZYcg==", - "dev": true, - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true - } - } - }, - "upath": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", - "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==", - "dev": true - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - } - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - } - } - }, - "url-loader": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-1.1.1.tgz", - "integrity": "sha512-vugEeXjyYFBCUOpX+ZuaunbK3QXMKaQ3zUnRfIpRBlGkY7QizCnzyyn2ASfcxsvyU3ef+CJppVywnl3Kgf13Gg==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0", - "mime": "^2.0.3", - "schema-utils": "^1.0.0" - }, - "dependencies": { - "ajv": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz", - "integrity": "sha512-4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "mime": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.3.1.tgz", - "integrity": "sha512-OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg==", - "dev": true - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", - "dev": true, - "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - }, - "utila": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - }, - "v8-compile-cache": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz", - "integrity": "sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==", - "dev": true - }, - "valid-url": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", - "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=" - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "vendors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz", - "integrity": "sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ==", - "dev": true - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "viz.js": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/viz.js/-/viz.js-2.1.2.tgz", - "integrity": "sha512-UO6CPAuEMJ8oNR0gLLNl+wUiIzQUsyUOp8SyyDKTqVRBtq7kk1VnFmIZW8QufjxGrGEuI+LVR7p/C7uEKy0LQw==" - }, - "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", - "dev": true, - "requires": { - "indexof": "0.0.1" - } - }, - "warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz", - "integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "watchpack": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", - "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", - "dev": true, - "requires": { - "chokidar": "^2.0.2", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "chokidar": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", - "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.0", - "braces": "^2.3.0", - "fsevents": "^1.2.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "lodash.debounce": "^4.0.8", - "normalize-path": "^2.1.1", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0", - "upath": "^1.0.5" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", - "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - } - } - }, - "webpack": { - "version": "4.20.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.20.2.tgz", - "integrity": "sha512-75WFUMblcWYcocjSLlXCb71QuGyH7egdBZu50FtBGl2Nso8CK3Ej+J7bTZz2FPFq5l6fzCisD9modB7t30ikuA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.7.8", - "@webassemblyjs/helper-module-context": "1.7.8", - "@webassemblyjs/wasm-edit": "1.7.8", - "@webassemblyjs/wasm-parser": "1.7.8", - "acorn": "^5.6.2", - "acorn-dynamic-import": "^3.0.0", - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0", - "chrome-trace-event": "^1.0.0", - "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.0", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.3.0", - "loader-utils": "^1.1.0", - "memory-fs": "~0.4.1", - "micromatch": "^3.1.8", - "mkdirp": "~0.5.0", - "neo-async": "^2.5.0", - "node-libs-browser": "^2.0.0", - "schema-utils": "^0.4.4", - "tapable": "^1.1.0", - "uglifyjs-webpack-plugin": "^1.2.4", - "watchpack": "^1.5.0", - "webpack-sources": "^1.3.0" - }, - "dependencies": { - "ajv": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz", - "integrity": "sha512-4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "eslint-scope": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", - "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "webpack-bundle-analyzer": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.3.2.tgz", - "integrity": "sha512-7qvJLPKB4rRWZGjVp5U1KEjwutbDHSKboAl0IfafnrdXMrgC0tOtZbQD6Rw0u4cmpgRN4O02Fc0t8eAT+FgGzA==", - "dev": true, - "requires": { - "acorn": "^6.0.7", - "acorn-walk": "^6.1.1", - "bfj": "^6.1.1", - "chalk": "^2.4.1", - "commander": "^2.18.0", - "ejs": "^2.6.1", - "express": "^4.16.3", - "filesize": "^3.6.1", - "gzip-size": "^5.0.0", - "lodash": "^4.17.10", - "mkdirp": "^0.5.1", - "opener": "^1.5.1", - "ws": "^6.0.0" - }, - "dependencies": { - "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", - "dev": true, - "requires": { - "async-limiter": "~1.0.0" - } - } - } - }, - "webpack-cli": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz", - "integrity": "sha512-Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.0", - "global-modules-path": "^2.3.0", - "import-local": "^2.0.0", - "interpret": "^1.1.0", - "loader-utils": "^1.1.0", - "supports-color": "^5.5.0", - "v8-compile-cache": "^2.0.2", - "yargs": "^12.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "cliui": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", - "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0", - "wrap-ansi": "^2.0.0" - } - }, - "decamelize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", - "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", - "dev": true, - "requires": { - "xregexp": "4.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "os-locale": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.0.1.tgz", - "integrity": "sha512-7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw==", - "dev": true, - "requires": { - "execa": "^0.10.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-limit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", - "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", - "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "yargs": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz", - "integrity": "sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^2.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^10.1.0" - } - }, - "yargs-parser": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", - "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", - "dev": true, - "requires": { - "camelcase": "^4.1.0" - } - } - } - }, - "webpack-dev-middleware": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.4.0.tgz", - "integrity": "sha512-Q9Iyc0X9dP9bAsYskAVJ/hmIZZQwf/3Sy4xCAZgL5cUkjZmUZLt4l5HpbST/Pdgjn3u6pE7u5OdGd1apgzRujA==", - "dev": true, - "requires": { - "memory-fs": "~0.4.1", - "mime": "^2.3.1", - "range-parser": "^1.0.3", - "webpack-log": "^2.0.0" - }, - "dependencies": { - "mime": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.3.1.tgz", - "integrity": "sha512-OEUllcVoydBHGN1z84yfQDimn58pZNNNXgZlHXSboxMlFvgI6MXSWpWKpFRra7H1HxpVhHTkrghfRW49k6yjeg==", - "dev": true - } - } - }, - "webpack-hot-middleware": { - "version": "2.24.2", - "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.24.2.tgz", - "integrity": "sha512-VsBGNMC5JDnab5hbReMjmIYtnvDMT+odLSP49EbLZHwuAoJJDNOi0YLhTe40vvP7u7Be+Ww1mYHjwwelqdnaKA==", - "dev": true, - "requires": { - "ansi-html": "0.0.7", - "html-entities": "^1.2.0", - "querystring": "^0.2.0", - "strip-ansi": "^3.0.0" - } - }, - "webpack-isomorphic-tools": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/webpack-isomorphic-tools/-/webpack-isomorphic-tools-3.0.6.tgz", - "integrity": "sha512-hiFXDgHAk8AxA69ok3hVVu3dJxASK0wxNzVqYnw9dULKCEclQ3OxfmIGh2O4x8BlKz14ilVrb5Mj+iP87MzpnQ==", - "dev": true, - "requires": { - "babel-runtime": "^6.6.1", - "colors": "^1.1.2", - "fs-extra": "^0.30.0", - "require-hacker": "^3.0.0", - "semver": "^5.3.0", - "sync-request": "^3.0.1", - "uglify-js": "^2.7.0" - }, - "dependencies": { - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", - "dev": true - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "dev": true, - "requires": { - "center-align": "^0.1.1", - "right-align": "^0.1.1", - "wordwrap": "0.0.2" - } - }, - "colors": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz", - "integrity": "sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ==", - "dev": true - }, - "fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "dev": true, - "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" - } - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", - "dev": true - }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "dev": true, - "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" - } - } - } - }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "dev": true, - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - } - }, - "webpack-sources": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz", - "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "http://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - }, - "whet.extend": { - "version": "0.9.9", - "resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", - "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", - "dev": true - }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", - "dev": true - }, - "worker-farm": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz", - "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==", - "dev": true, - "requires": { - "errno": "~0.1.7" - } - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", - "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } - }, - "write-file-stdout": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz", - "integrity": "sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE=", - "dev": true - }, - "ws": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", - "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "xregexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", - "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==", - "dev": true - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", - "dev": true - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - }, - "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } - }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "dev": true, - "requires": { - "camelcase": "^3.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } - }, - "zen-observable": { - "version": "0.8.9", - "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.9.tgz", - "integrity": "sha512-Y9kPzjGvIZ5jchSlqlCpBW3I82zBBL4z+ulXDRVA1NwsKzjt5kwAi+gOYIy0htNkfuehGZZtP5mRXHRV6TjDWw==" - }, - "zen-observable-ts": { - "version": "0.8.10", - "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.10.tgz", - "integrity": "sha512-5vqMtRggU/2GhePC9OU4sYEWOdvmayp2k3gjPf4F0mXwB3CSbbNznfDUvDJx9O2ZTa1EIXdJhPchQveFKwNXPQ==", - "requires": { - "zen-observable": "^0.8.0" - } - } - } -} diff --git a/community/tools/graphiql-online/package.json b/community/tools/graphiql-online/package.json deleted file mode 100644 index 81e02637a09..00000000000 --- a/community/tools/graphiql-online/package.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "name": "graphqurl-graphiql", - "description": "Explore GraphQL APIs with headers", - "author": "Praveen ", - "license": "Apache 2.0", - "version": "0.2.0", - "repository": { - "type": "git", - "url": "https://github.com/hasura/graphql-engine" - }, - "main": "index.js", - "homepage": "https://hasura.io/", - "keywords": [], - "scripts": { - "start": "concurrently --kill-others \"npm run start-prod\"", - "start-prod": "better-npm-run start-prod", - "build": "webpack --progress -p --colors --display-error-details --config webpack/prod.config.js", - "now-build": "webpack --progress -p --colors --display-error-details --config webpack/prod.config.js", - "build-unused": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js --json | webpack-unused -s src", - "lint": "eslint -c .eslintrc src api", - "start-dev": "better-npm-run start-dev", - "watch-client": "better-npm-run watch-client", - "dev": "concurrently --kill-others \"npm run watch-client\" \"npm run start-dev\" ", - "deploy": "now" - }, - "betterScripts": { - "start-prod": { - "command": "node ./bin/server.js", - "env": { - "NODE_PATH": "./src", - "NODE_ENV": "production", - "PORT": 8080 - } - }, - "start-dev": { - "command": "node -r dotenv/config ./bin/server.js" - }, - "watch-client": { - "command": "node -r dotenv/config webpack/webpack-dev-server.js" - } - }, - "dependencies": { - "apollo-link": "^1.2.2", - "apollo-link-ws": "^1.0.8", - "graphiql": "^0.13.2", - "graphiql-explorer": "0.4.4", - "graphql": "^14.3.0", - "graphql-voyager": "^1.0.0-rc.27", - "hasura-console-graphiql": "0.1.0-alpha.1", - "history": "^3.0.0", - "isomorphic-fetch": "^2.2.1", - "jsonwebtoken": "^8.5.0", - "less": "^3.7.1", - "lru-memoize": "^1.0.0", - "map-props": "^1.0.0", - "match-sorter": "^2.3.0", - "multireducer": "^1.0.2", - "piping": "^0.3.2", - "prettier": "^1.16.4", - "pretty-error": "^1.2.0", - "prop-types": "^15.6.0", - "react": "16.8.2", - "react-ace": "^6.1.1", - "react-bootstrap": "^0.32.1", - "react-copy-to-clipboard": "^5.0.0", - "react-dom": "16.8.2", - "react-helmet": "^5.2.0", - "react-notification-system": "^0.2.17", - "react-progress-bar-plus": "^1.3.1", - "react-redux": "^5.0.6", - "react-router": "^3.2.0", - "react-router-redux": "^4.0.8", - "react-tabs": "^2.1.0", - "redux": "^4.0.0", - "redux-logger": "^3.0.6", - "redux-thunk": "^2.2.0", - "semver": "5.5.1", - "subscriptions-transport-ws": "^0.9.12", - "valid-url": "^1.0.9" - }, - "devDependencies": { - "@babel/core": "^7.3.3", - "@babel/plugin-proposal-class-properties": "^7.3.3", - "@babel/plugin-proposal-decorators": "^7.3.0", - "@babel/plugin-proposal-do-expressions": "^7.0.0", - "@babel/plugin-proposal-export-default-from": "^7.0.0", - "@babel/plugin-proposal-export-namespace-from": "^7.2.0", - "@babel/plugin-proposal-function-bind": "^7.0.0", - "@babel/plugin-proposal-function-sent": "^7.2.0", - "@babel/plugin-proposal-json-strings": "^7.2.0", - "@babel/plugin-proposal-logical-assignment-operators": "^7.0.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-proposal-numeric-separator": "^7.2.0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0", - "@babel/plugin-proposal-pipeline-operator": "^7.0.0", - "@babel/plugin-proposal-throw-expressions": "^7.0.0", - "@babel/plugin-syntax-dynamic-import": "^7.2.0", - "@babel/plugin-syntax-import-meta": "^7.2.0", - "@babel/preset-env": "^7.0.0", - "@babel/preset-react": "^7.0.0", - "@babel/register": "^7.0.0", - "@babel/runtime": "^7.0.0", - "babel-eslint": "^9.0.0", - "babel-loader": "^8.0.0", - "babel-plugin-istanbul": "^5.1.1", - "babel-plugin-transform-react-remove-prop-types": "^0.4.10", - "babel-plugin-typecheck": "^2.0.0", - "better-npm-run": "^0.1.0", - "bootstrap-loader": "^2.2.0", - "bootstrap-sass": "^3.3.7", - "clean-webpack-plugin": "^0.1.17", - "concurrently": "^3.5.0", - "css-loader": "^0.28.11", - "dotenv": "^5.0.1", - "eslint": "^4.19.1", - "eslint-config-airbnb": "16.1.0", - "eslint-loader": "^1.0.0", - "eslint-plugin-chai-friendly": "^0.4.1", - "eslint-plugin-import": "^2.12.0", - "eslint-plugin-jsx-a11y": "^6.0.3", - "eslint-plugin-react": "^7.9.1", - "express": "^4.13.3", - "express-session": "^1.12.1", - "extract-hoc": "0.0.5", - "extract-text-webpack-plugin": "^3.0.2", - "file-loader": "^1.1.11", - "font-awesome": "^4.7.0", - "font-awesome-webpack": "0.0.4", - "husky": "^0.14.3", - "ignore-loader": "^0.1.2", - "jquery": "^3.4.1", - "json-loader": "^0.5.4", - "less-loader": "^4.1.0", - "lint-staged": "^6.1.1", - "mini-css-extract-plugin": "^0.4.0", - "node-sass": "^4.12.0", - "nyc": "^13.3.0", - "optimize-css-assets-webpack-plugin": "^4.0.2", - "react-a11y": "^0.2.6", - "react-addons-test-utils": "^15.0.3", - "react-hot-loader": "^4.6.5", - "redux-devtools": "^3.4.1", - "redux-devtools-dock-monitor": "^1.1.2", - "redux-devtools-log-monitor": "^1.3.0", - "resolve-url-loader": "^2.3.0", - "sass-loader": "^7.0.1", - "sinon": "^1.17.7", - "style-loader": "^0.20.3", - "timekeeper": "1.0.0", - "uglifyjs-webpack-plugin": "^1.2.7", - "unused-files-webpack-plugin": "^3.4.0", - "url-loader": "^1.0.1", - "webpack": "^4.14.0", - "webpack-bundle-analyzer": "^3.3.2", - "webpack-cli": "^3.0.8", - "webpack-dev-middleware": "^3.1.3", - "webpack-hot-middleware": "^2.22.2", - "webpack-isomorphic-tools": "^3.0.5" - }, - "engines": { - "node": ">=8.9.1" - } -} diff --git a/community/tools/graphiql-online/src/client.js b/community/tools/graphiql-online/src/client.js deleted file mode 100755 index 3e591b31602..00000000000 --- a/community/tools/graphiql-online/src/client.js +++ /dev/null @@ -1,93 +0,0 @@ -/** - * THIS IS THE ENTRY POINT FOR THE CLIENT, JUST LIKE server.js IS THE ENTRY POINT FOR THE SERVER. - */ -// import 'babel-polyfill'; - -import React from 'react'; -import ReactDOM from 'react-dom'; -import { createLogger } from 'redux-logger'; -import thunk from 'redux-thunk'; - -import { Provider } from 'react-redux'; - -import { Router, browserHistory } from 'react-router'; -import { routerMiddleware, syncHistoryWithStore } from 'react-router-redux'; -import { compose, createStore, applyMiddleware } from 'redux'; -import { useBasename } from 'history'; - -import getRoutes from './routes'; - -import reducer from './reducer'; - -// Create the store -let _finalCreateStore; - -if (__DEVELOPMENT__) { - _finalCreateStore = compose( - applyMiddleware(thunk, routerMiddleware(browserHistory), createLogger()), - require('redux-devtools').persistState( - window.location.href.match(/[?&]debug_session=([^&]+)\b/) - ) - )(createStore); -} else { - _finalCreateStore = compose( - applyMiddleware(thunk, routerMiddleware(browserHistory)) - )(createStore); -} - -const hashLinkScroll = () => { - const { hash } = window.location; - if (hash !== '') { - // Push onto callback queue so it runs after the DOM is updated, - // this is required when navigating from a different page so that - // the element is rendered on the page before trying to getElementById. - setTimeout(() => { - const id = hash.replace('#', ''); - const element = document.getElementById(id); - if (element) { - element.scrollIntoView(); - } - }, 0); - } else { - // This is a hack to solve the issue with scroll retention during page change. - setTimeout(() => { - const element = document.getElementsByTagName('body'); - if (element && element.length > 0) { - element[0].scrollIntoView(); - } - }, 0); - } -}; - -const store = _finalCreateStore(reducer); -const history = syncHistoryWithStore(browserHistory, store); - -/* ****************************************************************** */ - -// Enable hot reloading -if (__DEVELOPMENT__ && module.hot) { - module.hot.accept('./reducer', () => { - store.replaceReducer(require('./reducer')); - }); -} - -// Main routes and rendering -const main = ( - history)({ basename: '/' })} - routes={getRoutes(store)} - onUpdate={hashLinkScroll} - /> -); - -const dest = document.getElementById('content'); -ReactDOM.render( - - {main} - , - dest -); - -if (process.env.NODE_ENV !== 'production') { - window.React = React; // enable debugger -} diff --git a/community/tools/graphiql-online/src/components/App/Actions.js b/community/tools/graphiql-online/src/components/App/Actions.js deleted file mode 100644 index cee376e2c3a..00000000000 --- a/community/tools/graphiql-online/src/components/App/Actions.js +++ /dev/null @@ -1,110 +0,0 @@ -import defaultState from './State'; - -const LOAD_REQUEST = 'App/ONGOING_REQUEST'; -const DONE_REQUEST = 'App/DONE_REQUEST'; -const FAILED_REQUEST = 'App/FAILED_REQUEST'; -const ERROR_REQUEST = 'App/ERROR_REQUEST'; -const CONNECTION_FAILED = 'App/CONNECTION_FAILED'; - -/** - * Global notification function - * options: type default, description - * level: string info, {success, error, warning, info} - * position: string br, {tr, tl, tc, br, bl, bc} - * title: string null - * message: string null - * autoDismiss: integer 5, set to 0 to not auto-dismiss - * dismissible: bool true, set if user can dismiss notification - * action: object null, action button with label string and callback function - * children: element/string, null, add custom element, over-rides action - * onAdd: function, null, called when notification is successfully created, 1st argument is the notification - * onRemove: function, null, same as onAdd - * uid: integer/string, null, unique identifier to the notification, same uid will not be shown again - */ -const showNotification = ({ - level = 'info', - position = 'tr', - ...options -} = {}) => { - return dispatch => { - if (level === 'success') { - dispatch(Notifications.removeAll()); - } - - dispatch( - Notifications.show( - { - position, - autoDismiss: ['error', 'warning'].includes(level) ? 0 : 5, - dismissible: ['error', 'warning'].includes(level) ? 'button' : 'both', - ...options, - }, - level - ) - ); - }; -}; - -const progressBarReducer = (state = defaultState, action) => { - switch (action.type) { - case LOAD_REQUEST: - return { - ...state, - ongoingRequest: true, - percent: 10, - requestSuccess: null, - requestError: null, - connectionFailed: false, - }; - - case DONE_REQUEST: - return { - ...state, - percent: 100, - ongoingRequest: false, - requestSuccess: true, - requestError: null, - connectionFailed: false, - }; - - case FAILED_REQUEST: - return { - ...state, - percent: 100, - ongoingRequest: false, - requestSuccess: null, - requestError: true, - connectionFailed: false, - }; - - case ERROR_REQUEST: - return { - ...state, - modalOpen: true, - error: action.data, - reqURL: action.url, - reqData: action.params, - statusCode: action.statusCode, - connectionFailed: false, - }; - case CONNECTION_FAILED: - return { - ...state, - modalOpen: true, - error: true, - connectionFailed: true, - }; - default: - return state; - } -}; - -export default progressBarReducer; -export { - LOAD_REQUEST, - DONE_REQUEST, - FAILED_REQUEST, - ERROR_REQUEST, - CONNECTION_FAILED, - showNotification, -}; diff --git a/community/tools/graphiql-online/src/components/App/App.js b/community/tools/graphiql-online/src/components/App/App.js deleted file mode 100644 index 152ced3e17e..00000000000 --- a/community/tools/graphiql-online/src/components/App/App.js +++ /dev/null @@ -1,72 +0,0 @@ -import PropTypes from 'prop-types'; -import React, { Component } from 'react'; -import { connect } from 'react-redux'; -import ProgressBar from 'react-progress-bar-plus'; -import { hot } from 'react-hot-loader'; -import ErrorBoundary from '../Error/ErrorBoundary'; - -class App extends Component { - componentDidMount() { - // Hide the loader once the react component is ready. - // NOTE: This will execute only onces (since this is parent component for all other component). - const className = document.getElementById('content').className; - document.getElementById('content').className = className + ' show'; - document.getElementById('loading').style.display = 'none'; - } - - render() { - const styles = require('./App.scss'); - const { - requestError, - error, - ongoingRequest, - percent, - intervalTime, - children, - connectionFailed, - dispatch, - } = this.props; - - return ( - -
- {ongoingRequest && ( - - )} -
{children}
-
-
- ); - } -} - -App.propTypes = { - reqURL: PropTypes.string, - reqData: PropTypes.object, - statusCode: PropTypes.number, - - error: PropTypes.object, - ongoingRequest: PropTypes.bool, - requestError: PropTypes.bool, - connectionFailed: PropTypes.bool, - - intervalTime: PropTypes.number, - percent: PropTypes.number, - - children: PropTypes.element, - dispatch: PropTypes.func.isRequired, - -}; - -const mapStateToProps = state => { - return { - ...state.progressBar, - }; -}; - -export default hot(module)(connect(mapStateToProps)(App)); diff --git a/community/tools/graphiql-online/src/components/App/App.scss b/community/tools/graphiql-online/src/components/App/App.scss deleted file mode 100644 index df8d5b87734..00000000000 --- a/community/tools/graphiql-online/src/components/App/App.scss +++ /dev/null @@ -1,68 +0,0 @@ -@import "../Common/Common.scss"; - -:global { - @keyframes react-progress-spinner { - 0% { - transform: rotate(0deg); - } - - 100% { - transform: rotate(360deg); - } - } - - .react-progress-bar { - position: fixed; - top: 0; - left: 0; - width: 100%; - visibility: visible; - opacity: 1; - transition: all 400ms; - z-index: 9999; - - &.react-progress-bar-on-top { - height: 100%; - } - - &.react-progress-bar-hide { - opacity: 0; - visibility: hidden; - z-index: -10; - } - } - - .react-progress-bar-percent { - height: 2px; - background: #e8694d; - box-shadow: 0 2px 5px #d3291c, 0 2px 5px #d3291c; - transition: all 200ms ease; - } - - .react-progress-bar-spinner { - display: block; - position: fixed; - top: 15px; - } - - .react-progress-bar-spinner-left { - left: 15px; - right: auto; - } - - .react-progress-bar-spinner-right { - left: auto; - right: 15px; - } - - .react-progress-bar-spinner-icon { - width: 18px; - height: 18px; - box-sizing: border-box; - border: solid 2px transparent; - border-top-color: #d3291c; - border-left-color: #d3291c; - border-radius: 50%; - animation: react-progress-spinner 400ms linear infinite; - } -} diff --git a/community/tools/graphiql-online/src/components/App/State.js b/community/tools/graphiql-online/src/components/App/State.js deleted file mode 100644 index 43c920a0dab..00000000000 --- a/community/tools/graphiql-online/src/components/App/State.js +++ /dev/null @@ -1,9 +0,0 @@ -const defaultState = { - percent: 0, - intervalTime: 200, - ongoingRequest: false, - requestSuccess: null, - requestError: null, - error: null, -}; -export default defaultState; diff --git a/community/tools/graphiql-online/src/components/AppState.js b/community/tools/graphiql-online/src/components/AppState.js deleted file mode 100644 index b24e664dc04..00000000000 --- a/community/tools/graphiql-online/src/components/AppState.js +++ /dev/null @@ -1,14 +0,0 @@ -const stateKey = 'graphiql'; -const loadAppState = () => JSON.parse(window.localStorage.getItem(stateKey)); - -const saveAppState = state => { - window.localStorage.setItem(stateKey, JSON.stringify(state)); -}; - -const clearState = () => window.localStorage.removeItem(stateKey); - -export { - saveAppState, - loadAppState, - clearState, -}; diff --git a/community/tools/graphiql-online/src/components/Common/CollapsibleToggle/CollapsibleToggle.js b/community/tools/graphiql-online/src/components/Common/CollapsibleToggle/CollapsibleToggle.js deleted file mode 100644 index 05085624451..00000000000 --- a/community/tools/graphiql-online/src/components/Common/CollapsibleToggle/CollapsibleToggle.js +++ /dev/null @@ -1,82 +0,0 @@ -import React from 'react'; - -/** - * Accepts following props - * `title, string || react-element `: Title of the collapsible toggle - * `isOpen`(optional, default to false): Whether the body should be shown or not - * `toggleHandler (optional)`: Function to call when the toggle is clicked - * `testId, string`: Test identifier - * `children, react-element`: The content which needs to be toggled - */ - -class CollapsibleToggle extends React.Component { - constructor(props) { - super(props); - - this.state = { - isOpen: props.isOpen || false, - toggleHandler: - props.toggleHandler || this.defaultToggleHandler.bind(this), - }; - } - - defaultToggleHandler() { - this.setState({ isOpen: !this.state.isOpen }); - } - - componentWillReceiveProps(nextProps) { - const { isOpen, toggleHandler } = nextProps; - - if (toggleHandler) { - this.setState({ isOpen: isOpen, toggleHandler: toggleHandler }); - } - } - - render() { - const styles = require('./CollapsibleToggle.scss'); - - const { title, children, testId, useDefaultTitleStyle } = this.props; - - const { isOpen, toggleHandler } = this.state; - - const getTitle = () => { - let _title; - - if (useDefaultTitleStyle) { - _title =
{title}
; - } else { - _title = title; - } - - return _title; - }; - - const getChildren = () => { - return
{children}
; - }; - - return ( -
-
- - - - - {getTitle()} -
- - {isOpen && getChildren()} -
- ); - } -} - -export default CollapsibleToggle; diff --git a/community/tools/graphiql-online/src/components/Common/CollapsibleToggle/CollapsibleToggle.scss b/community/tools/graphiql-online/src/components/Common/CollapsibleToggle/CollapsibleToggle.scss deleted file mode 100644 index 2d9c6593123..00000000000 --- a/community/tools/graphiql-online/src/components/Common/CollapsibleToggle/CollapsibleToggle.scss +++ /dev/null @@ -1,36 +0,0 @@ -.collapsibleWrapper { - margin-bottom: 5px; - - .collapsibleToggle { - cursor: pointer; - display: inline-block; - - .collapsibleIndicatorWrapper { - padding-right: 10px; - font-size: 12px; - - .collapsibleIndicator { - transition: transform 0.3s ease; - } - - .collapsibleIndicatorOpen { - transform: rotate(90deg); - } - } - - .titleWrapper { - display: inline-block; - } - - .defaultCollapsibleTitle { - color: #788095; - font-weight: bold; - font-size: 14px; - } - } - - .collapsibleContent { - margin-top: 10px; - display: block; - } -} diff --git a/community/tools/graphiql-online/src/components/Common/Common.scss b/community/tools/graphiql-online/src/components/Common/Common.scss deleted file mode 100644 index d8760d274ea..00000000000 --- a/community/tools/graphiql-online/src/components/Common/Common.scss +++ /dev/null @@ -1,1337 +0,0 @@ -@import url('https://fonts.googleapis.com/css?family=Gudea:400,700'); - -body { - background-color: #f8fafb; -} - -h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { - margin-top: 0; - margin-bottom: 0; - -webkit-margin-before: 0; - -webkit-margin-after: 0; -} - -.error_text { - color: #dc3545; -} - -.graphSpinner { - font-size: 40px; - text-align: center; -} - -input::-moz-focus-inner { - outline: 0; - -moz-outline: none; - border:0; -} - -select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #000; -} - -select::-moz-focus-inner { - outline: 0; - -moz-outline: none; - border: 0; -} - -option::-moz-focus-inner { border: 0; outline: 0 } - -table { - font-size: 14px; -} - -table thead tr th { - background-color: #F2F2F2 !important; - color: #4D4D4D; - font-weight: 600 !important; -} - -.pageSidebar { - height: calc(100vh - 50px); - overflow: auto; - // background: #444; - // color: $navbar-inverse-color; - color: #333; - border: 1px solid #E5E5E5; - border-bottom: 0px; - // background-color: #F8F8F8; - background-color: #fff; - - /* - a,a:visited { - color: $navbar-inverse-link-color; - } - - a:hover { - color: $navbar-inverse-link-hover-color; - } - */ - - hr { - margin: 0; - } - - ul { - list-style-type: none; - -webkit-padding-start: 0px; - -moz-padding-start: 0px; - - li { - transition: color 0.5s; - font-size: 16px; - border-bottom: 1px solid #E6E6E6; - padding: 0px 0px; - // border-left: 5px solid transparent; - - a { - color: #767E93; - background-color: #f0f0f0; - width: 100%; - word-wrap: break-word; - padding: 15px 0 15px 20px; - display: block; - } - } - - .linkBorder { - border-bottom: 1px solid #e6e6e6; - } - - li:last-child { - border-bottom: 0px; - } - - .active { - // border-left: 5px solid #FFC627; - font-weight: bold; - color: #333; - text-decoration: none; - - a { - text-decoration: none; - background-color: #FFF3D5; - display: inline-block; - } - } - } -} - -.sidebarCreateTable { - a { - background-color: transparent !important; - } -} - -.breadCrumbSeparator { - margin-bottom: 17px !important; -} - -.commentText { - display: inline-block; - padding: 5px !important; - margin-bottom: 0px; -} - -.commentEdit { - display: inline-block; - padding-left: 10px; - cursor: pointer; -} - -.comment_action { - text-decoration: underline; - cursor: pointer; -} - -.commentInput { - width: 30%; - display: inline-block; -} - -.fontAwosomeClose { - margin-left: 10px; - width: 15px; - min-width: 15px; - cursor: pointer; -} - -.display_flex { - display: flex; - align-items: center; -} - -.displayFlexContainer { - display: flex; -} - -.line_mar { - margin: 15px 20px; -} - -.wd5 { - width: 5%; - text-align: center; - vertical-align: middle !important; -} - -.wd45 { - width: 45%; - padding: 3px; -} - -.wd4 { - width: 4%; - text-align: center; - vertical-align: middle !important; -} - -.wd48 { - width: 48%; - padding: 3px; -} - -.wd100 { - width: 100%; - float: left; -} - -.wd90 { - width: 90%; -} - -.wd35 { - width: 31%; -} - -.wd60 { - width: 56%; -} - -.wd82 { - width: 82%; - float: left; - padding-left: 15px; -} - -.wd68 { - width: 68%; -} - -.wd15 { - width: 15%; -} - -.wd16 { - width: 16%; -} - -.wd80 { - width: 80%; - display: inline-block; -} - -.wd63 { - width: 62%; - display: inline-block; -} - -.wd20 { - width: 20%; - display: inline-block; -} - -.wd18 { - width: 18%; - float: left; - padding-left: 15px; -} - -.buttonLess { - border: 0; - background-color: transparent; - padding: 0 0; - display: flex; - align-items: center; - - span { - font-weight: bold; - } - - i { - font-size: 12px; - padding-right: 10px; - } -} - -.apiExplorerFlex { - display: flex; -} - -.collectionWrapper { - padding-top: 25px; - background-color: #f8f8f8; - border: 1px solid #e5e5e5; -} - -button { - outline: none; -} - -button > i { - padding-top: 3px; - padding-bottom: 3px; -} - -.no_border { - border: 0 !important; - border-radius: 0 !important; -} - -input { - border-radius: 4px; -} - -.sidebarCreateTable { - a { - color: #767E93; - - i { - color: #767E93; - } - } - - a:hover { - color: #767E93; - - i { - color: #767E93; - } - } -} - -.header_key_input { - background-color: transparent; - border: 0; - box-shadow: none; - border-radius: 0; - padding: 0; -} - -.header_key_input:focus { - box-shadow: none; -} - -.header_path_input { - background-color: transparent; - border: 0; - box-shadow: none; - border-radius: 0; - width: 100% !important; - padding: 0; - padding-left: 10px; -} - -.header_path_input:focus { - box-shadow: none; -} - -.ApiExplorerTable { - margin-bottom: 0; - - thead { - tr { - th { - border-bottom: 0; - padding: 8px; - } - - .ApiExplorerTableSuccess { - background-color: #fff; - } - - .ApiExplorerTableDefault { - background-color: #F3F3F3; - } - - td { - padding: 8px; - width: 50%; - } - } - } - - tbody { - tr { - th { - border-bottom: 0; - padding: 8px; - } - - td { - padding: 8px; - width: 50%; - } - - .ApiExplorerTableSuccess { - background-color: #fff; - } - - .ApiExplorerTableDefault { - background-color: #F3F3F3; - } - } - } -} - -.padd_left_remove { - padding-left: 0 !important; -} - -.padd_right_remove { - padding-right: 0 !important; -} - -.padding_top_20 { - padding-top: 20px; -} -.margin_bottom_20 { - margin-bottom: 20px; -} - -.remove_margin_bottom { - margin-bottom: 0 !important; -} - -.remove_padding_left { - padding-left: 0 !important; -} -.remove_margin { - margin: 0 !important; -} - -.display_inline { - display: inline-block; -} - -.form_inline_wrapper { - border: 1px solid #ccc; -} - -.background_transparent { - background-color: #f8fafb; - box-shadow: none; - padding: 0 0; -} - -.padd_left { - padding-left: 15px; -} - -.padd_small_left { - padding-left: 5px; -} - -.padd_small_right { - padding-right: 5px; -} - -.border_bottom { - border-bottom: 1px solid #e7e7e7; -} - -.border_right { - border-right: 1px solid #ccc; -} - -.mar_left { - margin-left: 15px; -} - -.mar_small_left { - margin-left: 5px; -} - -.mar_neg_left { - margin-left: -10px; -} - -.mar_small_neg_left { - margin-left: -5px; -} - -.padd_remove { - padding-left: 0 !important; - padding-right: 0 !important; -} - -.padd_remove_full { - padding: 0 0 !important; -} - -.mar_bottom { - margin-bottom: 20px; -} - -.remove_pad_bottom { - padding-bottom: 0 !important; -} - -.remove_pad_right { - padding-right: 0 !important; -} - -.add_pad_right { - padding-right: 15px; -} - -.width_auto { - width: auto; -} - -.add_pad_left { - padding-left: 15px; -} - -.add_mar_top_small { - margin-top: 10px; -} - -.add_mar_top { - margin-top: 20px; -} - -.add_mar_bottom { - margin-bottom: 20px; -} - -.add_mar_bottom_mid { - margin-bottom: 10px; -} - -.add_mar_bottom_small { - margin-bottom: 5px; -} - -.add_mar_right { - margin-right: 20px !important; -} - -.add_mar_right_mid { - margin-right: 10px !important; -} - -.add_mar_right_small { - margin-right: 5px !important; -} - -.add_mar_left { - margin-left: 20px; -} - -.add_mar_left_small { - margin-left: 5px; -} - -.add_mar_left_mid { - margin-left: 10px; -} - -.add_mar_small { - margin-right: 10px !important; -} - -.code_space { - padding: 3px 10px; - border: 1px solid #F9EAEF; -} - -code { - padding: 2px 12px !important; - - input { - border: 0; - background: transparent; - box-shadow: none; - - &:focus { - outline: none; - } - min-width: 200px; - } - - div { - display: inline-block; - } -} - -.padd_bottom_small { - padding-bottom: 5px; -} - -.padd_top_small { - padding-top: 5px; -} - -.padd_top_medium { - padding-top: 10px; -} - -.padd_bottom { - padding-bottom: 10px !important; -} - -.add_pad_bottom { - padding-bottom: 20px; -} - -.add_padd_bottom { - padding-bottom: 25px; -} - -.padd_right { - padding-right: 15px; -} - -.padd_top { - padding-top: 20px !important; -} - - -.clear_fix { - clear: both; -} - -.ul_left_small { - -webkit-padding-start: 15px; -} - -.subsection { - padding-left: 15px; - padding-right: 15px; -} - -.disabled { - color: #999; -} - -.select_option_height { - min-height: 33px; - height: 33px !important; - width: 100% !important; - display: flex !important; - align-items: center; -} - -.response_btn_success { - button { - padding: 2px 4px; - background-color: #59A21C; - border: 1px solid #539719; - color: #fff; - font-size: 13px; - font-weight: 600; - } - - button:focus { - outline: none; - } -} - -.response_btn_error { - button { - padding: 2px 4px; - background-color: #AC2925; - border: 1px solid #761c19; - color: #fff; - font-size: 13px; - font-weight: 600; - } - - button:focus { - outline: none; - } -} - -.response_btn_default { - button { - padding: 2px 4px; - background-color: #E6E6E6; - border: 1px solid #D7D7D7; - color: #000; - font-size: 13px; - font-weight: 600; - } - - button:focus { - outline: none; - } -} - -.response_btn_success { - button { - padding: 2px 4px; - background-color: #59A21C; - border: 1px solid #539719; - color: #fff; - font-size: 13px; - font-weight: 600; - } - - button:focus { - outline: none; - } -} - -.response_btn_error { - button { - padding: 2px 4px; - background-color: #AC2925; - border: 1px solid #761c19; - color: #fff; - font-size: 13px; - font-weight: 600; - } - - button:focus { - outline: none; - } -} - -.response_btn_default { - button { - padding: 2px 4px; - background-color: #E6E6E6; - border: 1px solid #D7D7D7; - color: #000; - font-size: 13px; - font-weight: 600; - } - - button:focus { - outline: none; - } -} - -.input_group_input { - border: none; - background-color: #F0F4F7 !important; - box-shadow: none; -} - -.input_group_width { - width: 400px; -} - -.remove_all_pad { - padding: 0 !important; -} - -.input_group_addon { - background-color: transparent; - color: #000; - border: 0; - padding: 0 0; -} - -.border_radius_left { - border-bottom-left-radius: 5px; - border-top-left-radius: 5px; -} - -.border_radius_right { - border-bottom-right-radius: 5px; - border-top-right-radius: 5px; -} - -.align_right { - float: right; -} - -.align_left { - float: left; -} - -.block_wrapper { - padding: 20px; - background-color: #fff; - width: 80%; - border: 1px solid #F0F4F7; - margin-bottom: 20px; -} - -.header_path_btn { - background-color: transparent; - color: #555; - margin-right: 10px; - height: 35px; -} - -.yellow_button { - background-color: #FEC53D; - border-radius: 3px; - color: #606060; - border: 1px solid #FEC53D; - padding: 5px 10px; - font-size: 13px; - font-weight: 600; - line-height: 1.5; - - &:hover { - background-color: #F2B130; - } -} - -.yellow_button1 { - padding: 5px 10px !important; - font-size: 13px !important; - font-weight: 600 !important; - line-height: 1.5; -} - -.yellow_button:focus { - outline: none; - background-color: #F2B130; -} - -.default_button { - background-color: #fff; - border-radius: 5px; - color: #292929; - border: 1px solid #292929; - padding: 5px 10px; - font-size: 13px; - font-weight: 600; - line-height: 1.5; - display: flex; - align-items: center; - - &:hover { - background-color: #efefef; - } -} - -.default_button:focus { - outline: none; - background-color: #efefef; -} - -.danger_button { - border-radius: 5px; - // color: #292929; - color: #000; - border: 1px solid #c9302c; - padding: 5px 10px; - font-size: 13px; - font-weight: 600; - line-height: 1.5; -} - -.danger_button:focus { - outline: none; -} - -.exploreButton { - background-color: #FEC53D; - border-radius: 5px; - color: #000; - border: 1px solid #FEC53D; - padding: 5px 10px; - font-size: 13px; - font-weight: 600; - line-height: 1.5; - - &:hover { - background-color: #F2B130; - color: #fff; - } - - &:focus { - background-color: #F2B130; - } -} - -.gray_button { - background: #f2f2f2 !important; -} - -.text_gray { - color: #767E96 -} - -.docsButton { - background-color: #fff; - border-radius: 5px; - color: #292929; - font-size: 13px; - font-weight: 600; - border: 1px solid #292929; - margin-right: 15px; - padding: 5px 10px; - line-height: 1.5; - - &:hover { - background-color: #efefef; - } - - &:focus { - background-color: #efefef; - } -} - -.small_login_disclaimer { - font-size: 12px; - padding: 15px 0; - width: 350px; - text-align: center; -} - -.subheading_text { - font-size: 15px; - font-weight: bold; - padding-bottom: 20px; - margin-top: 0; - margin-bottom: 0; - - i { - margin-left: 5px; - } -} - -.inline_block { - display: inline-block; - padding-right: 20px; - - .header_path_btn { - margin-right: 0 !important; - } -} - -.headerText { - font-size: 24px; - font-weight: bold; -} - -.subHeaderText { - font-size: 18px; - font-weight: 600; - display: flex; - - img { - display: inline-block; - width: 8px; - margin-right: 12px; - } -} - -.descriptionText { - font-size: 15px; - line-height: 1.2; - font-weight: 400; -} - -.fontWeightBold { - font-weight: 600; -} - -.heading_text { - font-size: 18px; - font-weight: bold; - padding-bottom: 20px -} - -.editable_heading_text { - font-size: 18px; - font-weight: bold; - display: flex; - align-items: center; - padding-bottom: 20px; - - h2 { - font-size: 18px; - font-weight: bold; - margin-right: 10px; - } - - i { - cursor: pointer; - } -} - -.editable_heading_textbox { - display: flex; - align-items: center; - padding-bottom: 12px; - - input { - width: 30%; - font-weight: normal; - } -} - -.editable_heading_action { - margin-left: 10px; - display: flex; - align-items: center; - - i { - margin-top: 2px; - } -} - -.editable_heading_action_item { - margin-right: 10px; - font-size: 14px; - text-decoration: underline; - font-weight: normal; - cursor: pointer; -} - -.header_project_name { - font-family: 'Gudea'; - color: #fff; - text-transform: uppercase; - display: inline-block; - padding-left: 20px; - font-size: 18px; - letter-spacing: 1px; - font-weight: 700; -} - -.tableButton { - display: inline-block; - float: right; - - button { - padding: 3px 8px; - background-color: #27AE60; - border: 1px solid #27AE60; - font-size: 13px; - font-weight: 600; - color: #fff; - border-radius: 5px; - - } -} - -.subHeader { - background: transparent; - font-family: 'Gudea'; - - h2 { - margin: 0; - line-height: 26px; - } - - .nav { - border-bottom: 1px solid #E6E6E6; - margin-left: -15px !important; - padding-left: 15px !important; - - ul { - margin-bottom: -2px; - - li { - border: 1px solid transparent; - border-top: 3px solid transparent; - margin-right: 10px; - background-color: #e6e6e6; - border-radius: 4px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - margin-bottom: 1px; - font-weight: bold; - - a { - color: #666666; - padding: 12px 16px; - } - - a:hover { - background-color: transparent; - } - - a:focus { - background-color: transparent; - } - } - - .active { - border-radius: 4px; - background-color: #f8fafb; - /* color: #333; */ - border: 1px solid #E6E6E6; - border-bottom: 0; - border-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - border-top: 3px solid #FFC627; - - a { - color: #333; - margin-bottom: 1px; - } - } - } - } -} - -.common_nav { - border-bottom: 1px solid #E6E6E6; - margin-left: -15px !important; - padding-left: 15px !important; - - ul { - margin-bottom: -2px; - - li { - border: 1px solid transparent; - border-top: 3px solid transparent; - margin-right: 10px; - background-color: #e6e6e6; - border-radius: 4px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - margin-bottom: 1px; - font-weight: bold; - - a { - color: #666666; - padding: 12px 16px; - } - - a:hover { - background-color: transparent; - } - - a:focus { - background-color: transparent; - } - } - - .active { - border-radius: 4px; - background-color: #f8fafb; - /* color: #333; */ - border: 1px solid #E6E6E6; - border-bottom: 0; - border-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - border-top: 3px solid #FFC627; - - a { - color: #333; - margin-bottom: 1px; - } - } - } -} - -.header { - background: #fff; - width: 100%; - float: left; - margin-bottom: 20px; - font-family: 'Gudea'; - - h2 { - margin: 0; - padding: 15px; - float: left; - line-height: 26px; - } - - .nav { - padding-top: 10px; - padding-left: 15px; - float: left; - - ul { - li { - a { - color: #6a6a6a; - } - - a:hover { - background-color: transparent; - } - - a:focus { - background-color: transparent; - } - } - - .active { - border-bottom: 4px solid #000; - font-weight: bold; - } - } - } -} - -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - border-bottom: 4px solid #000; -} - -.copyBtn { - background-color: #fff; - border-color: #ccc; - margin-right: -1px; - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} - -/* Explore slider starts here*/ -.circle_wrapper { - margin: 10px auto; - text-align: center; - - .active_circle { - width: 8px; - height: 8px; - border-radius: 50%; - background-color: #262A35; - margin: 0 5px; - display: inline-block; - } - - .deactiv_circle { - width: 8px; - height: 8px; - border-radius: 50%; - background-color: #D8D8D8; - margin: 0 5px; - display: inline-block; - } -} - -.collectionButtonLess { - border: 0; - background-color: transparent; - padding: 0 0; - display: flex; - align-items: center; - width: 100%; - - span { - font-size: 14px; - width: 90%; - text-align: left; - padding-left: 5px; - } - - i { - font-size: 12px; - width: 10%; - text-align: right; - } -} - -.collectionButtonWrapper { - padding: 10px 10px; -} - -.addOpacity { - opacity: 0.4; -} - -/* Explore slider ends here*/ -.stickyHeader { - display: block; - top: 0; - z-index: 11; - - .stickySeparator { - padding-top: 60px; - margin-left: -15px; - margin-right: -15px; - } -} - -.fixed_header_internal_link { - display: block; - position: relative; - top: -65px; - visibility: hidden; -} - -.graphQLHeight { - height: 72vh; - margin-bottom: 50px; -} - -.button_mar_right { - margin-right: 20px; -} - -.wd750 { - width: 750px; -} - -.iconCheck { - color: green; - font-size: 20px; -} - -.iconCross { - color: #d9534f; - font-size: 20px; -} - -.errorBanner { - top: 0; - z-index: 1000; -} - -.fontStyleNormal { - font-style: normal; -} - -.cursorPointer { - cursor: pointer; -} - -.wd50percent { - width: 50%; -} - -.alertDanger { - position: sticky; - position: -webkit-sticky; - position: -moz-sticky; - position: -o-sticky; - position: -ms-sticky; - top: 0; - z-index: 1000; -} -.pkEditorWrapper { - width: 325px; - text-align: left; -} - -.pkEditorExpandedTextWrapper { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 15px; -} - -.pkEditorExpandedText { - width: 325px; -} - -.wd100Percent { - width: 100% !important; -} - -/* container height subtracting top header and bottom scroll bar */ -$mainContainerHeight: calc(100vh - 50px - 25px); - -/* Min container width below which horizontal scroll will appear */ -$minContainerWidth: 1200px; - diff --git a/community/tools/graphiql-online/src/components/Common/ModalWrapper.js b/community/tools/graphiql-online/src/components/Common/ModalWrapper.js deleted file mode 100644 index 5f1a8954665..00000000000 --- a/community/tools/graphiql-online/src/components/Common/ModalWrapper.js +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import Modal from 'react-bootstrap/lib/Modal'; - -const ModalWrapper = ({ show, onHide, dialogClassName, title, children }) => { - return ( - - - {title} - - {children} - - ); -}; - -export default ModalWrapper; diff --git a/community/tools/graphiql-online/src/components/Common/Spinner/Spinner.js b/community/tools/graphiql-online/src/components/Common/Spinner/Spinner.js deleted file mode 100644 index 0e4dd4feb36..00000000000 --- a/community/tools/graphiql-online/src/components/Common/Spinner/Spinner.js +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react'; - -const Spinner = () => { - const styles = require('./Spinner.scss'); - - return ( -
-
-
-
-
-
-
-
-
-
-
-
-
-
- ); -}; - -export default Spinner; diff --git a/community/tools/graphiql-online/src/components/Common/Spinner/Spinner.scss b/community/tools/graphiql-online/src/components/Common/Spinner/Spinner.scss deleted file mode 100644 index 8764530ccf9..00000000000 --- a/community/tools/graphiql-online/src/components/Common/Spinner/Spinner.scss +++ /dev/null @@ -1,165 +0,0 @@ -.sk_circle { - margin: 100px auto; - width: 40px; - height: 40px; - position: relative; -} - -.sk_circle .sk_child { - width: 100%; - height: 100%; - position: absolute; - left: 0; - top: 0; -} - -.sk_circle .sk_child:before { - content: ''; - display: block; - margin: 0 auto; - width: 15%; - height: 15%; - background-color: #333; - border-radius: 100%; - -webkit-animation: sk_circleBounceDelay 1.2s infinite ease-in-out both; - animation: sk_circleBounceDelay 1.2s infinite ease-in-out both; -} - -.sk_circle .sk_circle2 { - -webkit-transform: rotate(30deg); - -ms-transform: rotate(30deg); - transform: rotate(30deg); -} - -.sk_circle .sk_circle3 { - -webkit-transform: rotate(60deg); - -ms-transform: rotate(60deg); - transform: rotate(60deg); -} - -.sk_circle .sk_circle4 { - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} - -.sk_circle .sk_circle5 { - -webkit-transform: rotate(120deg); - -ms-transform: rotate(120deg); - transform: rotate(120deg); -} - -.sk_circle .sk_circle6 { - -webkit-transform: rotate(150deg); - -ms-transform: rotate(150deg); - transform: rotate(150deg); -} - -.sk_circle .sk_circle7 { - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} - -.sk_circle .sk_circle8 { - -webkit-transform: rotate(210deg); - -ms-transform: rotate(210deg); - transform: rotate(210deg); -} - -.sk_circle .sk_circle9 { - -webkit-transform: rotate(240deg); - -ms-transform: rotate(240deg); - transform: rotate(240deg); -} - -.sk_circle .sk_circle10 { - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); } - -.sk_circle .sk_circle11 { - -webkit-transform: rotate(300deg); - -ms-transform: rotate(300deg); - transform: rotate(300deg); -} - -.sk_circle .sk_circle12 { - -webkit-transform: rotate(330deg); - -ms-transform: rotate(330deg); - transform: rotate(330deg); } - -.sk_circle .sk_circle2:before { - -webkit-animation-delay: -1.1s; - animation-delay: -1.1s; -} - -.sk_circle .sk_circle3:before { - -webkit-animation-delay: -1s; - animation-delay: -1s; -} - -.sk_circle .sk_circle4:before { - -webkit-animation-delay: -0.9s; - animation-delay: -0.9s; -} - -.sk_circle .sk_circle5:before { - -webkit-animation-delay: -0.8s; - animation-delay: -0.8s; -} - -.sk_circle .sk_circle6:before { - -webkit-animation-delay: -0.7s; - animation-delay: -0.7s; -} - -.sk_circle .sk_circle7:before { - -webkit-animation-delay: -0.6s; - animation-delay: -0.6s; -} - -.sk_circle .sk_circle8:before { - -webkit-animation-delay: -0.5s; - animation-delay: -0.5s; -} - -.sk_circle .sk_circle9:before { - -webkit-animation-delay: -0.4s; - animation-delay: -0.4s; -} - -.sk_circle .sk_circle10:before { - -webkit-animation-delay: -0.3s; - animation-delay: -0.3s; -} - -.sk_circle .sk_circle11:before { - -webkit-animation-delay: -0.2s; - animation-delay: -0.2s; -} - -.sk_circle .sk_circle12:before { - -webkit-animation-delay: -0.1s; - animation-delay: -0.1s; -} - -@-webkit-keyframes sk_circleBounceDelay { - 0%, 80%, 100% { - -webkit-transform: scale(0); - transform: scale(0); - } 40% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes sk_circleBounceDelay { - 0%, 80%, 100% { - -webkit-transform: scale(0); - transform: scale(0); - } 40% { - -webkit-transform: scale(1); - transform: scale(1); - } -} \ No newline at end of file diff --git a/community/tools/graphiql-online/src/components/Common/TextAreaWithCopy/TextAreaWithCopy.js b/community/tools/graphiql-online/src/components/Common/TextAreaWithCopy/TextAreaWithCopy.js deleted file mode 100644 index c775aef4ca1..00000000000 --- a/community/tools/graphiql-online/src/components/Common/TextAreaWithCopy/TextAreaWithCopy.js +++ /dev/null @@ -1,164 +0,0 @@ -import React from 'react'; - -import PropTypes from 'prop-types'; - -class TextAreaWithCopy extends React.Component { - copyToClip(id, e) { - e.preventDefault(); - - const { copyText, textLanguage, containerId } = this.props; - - let text = ''; - if (copyText.length > 0) { - switch (textLanguage) { - case 'sql': - text = window.sqlFormatter - ? window.sqlFormatter.format(copyText, { language: textLanguage }) - : copyText; - break; - default: - text = copyText; - } - } - - const textArea = document.createElement('textarea'); - textArea.value = text; - - const appendLoc = containerId - ? document.getElementById(containerId) - : document.body; - - appendLoc.appendChild(textArea); - - textArea.focus(); - textArea.select(); - - try { - const successful = document.execCommand('copy'); - // const msg = successful ? 'successful' : 'unsuccessful'; - const tooltip = document.getElementById(id); - if (!successful) { - tooltip.innerHTML = 'Error copying'; - throw new Error('Copy was unsuccessful'); - } else { - tooltip.innerHTML = 'Copied'; - } - } catch (err) { - alert('Oops, unable to copy - ' + err); - } - - appendLoc.removeChild(textArea); - } - - resetCopy(id) { - const tooltip = document.getElementById(id); - tooltip.innerHTML = 'Copy'; - } - - render() { - const style = require('./TextAreaWithCopy.scss'); - - const { - copyText, - toolTipClass, - id, - containerId, - textLanguage, - } = this.props; - - const renderSimpleValue = () => { - return ( -
-          {copyText}
-        
- ); - }; - - const renderSQLValue = () => { - if (!window || !window.hljs || !window.sqlFormatter) { - return renderSimpleValue(); - } - - return ( -
-          
-        
- ); - }; - - const renderJSONValue = () => { - if (!window || !window.hljs) { - return renderSimpleValue(); - } - - return ( -
-          
-        
- ); - }; - - const getTypeRenderer = type => { - let typeRenderer; - - switch (type) { - case 'sql': - typeRenderer = renderSQLValue; - break; - case 'json': - typeRenderer = renderJSONValue; - break; - default: - typeRenderer = renderSimpleValue; - } - - return typeRenderer; - }; - - return ( -
-
-
- - Copy - - -
-
- {getTypeRenderer(textLanguage)()} -
- ); - } -} - -TextAreaWithCopy.propTypes = { - copyText: PropTypes.string.isRequired, - textLanguage: PropTypes.string, - id: PropTypes.string.isRequired, - containerId: PropTypes.string, -}; - -export default TextAreaWithCopy; diff --git a/community/tools/graphiql-online/src/components/Common/TextAreaWithCopy/TextAreaWithCopy.scss b/community/tools/graphiql-online/src/components/Common/TextAreaWithCopy/TextAreaWithCopy.scss deleted file mode 100644 index 830c4d1607c..00000000000 --- a/community/tools/graphiql-online/src/components/Common/TextAreaWithCopy/TextAreaWithCopy.scss +++ /dev/null @@ -1,115 +0,0 @@ -.sqlBlock { - position: relative; - width: 80%; -} - -.codeBlockCustom { - /* position: relative; - padding: 10px 20px; */ - /* background-color: white; */ - background-color: rgb(253, 249, 237); - /* margin: 20px; - width: 100%; */ - width: auto; - border-radius: 5px; - // max-height: calc(100% - 60px); - // overflow: auto; - margin-top: 0px; - // min-height: calc(100% - 60px); - position: relative; -} - -.codeBlockCustom pre { - display: block; - padding: 10px 20px; - margin: 0px; - font-size: 13px; - line-height: unset; - word-break: unset; - word-wrap: unset; - color: #000; - background: none; - border: none; - border-radius: 0; - overflow: unset; - padding-bottom: 10px; -} - -.codeBlockCustom code { - color: #000; - background: none; -} - -.codeBlockCustom .formattedCode { - padding: 0px 0px !important; -} - -.schemaPreWrapper { - position: relative; - min-height: 40px; -} - -.copyGenerated { - position: absolute; - bottom: 10px; - right: 30px; - cursor: pointer; - z-index: 100; -} - -.copyGenerated img, .copyExecution img { - width: 20px; - opacity: .6; -} - -.copyGenerated img:hover, .copyExecution img:hover { - opacity: 1; -} - -.copyGenerated:focus, .copyExecution:focus { - outline: none; -} - -.copyTooltip { - position: relative; - display: inline-block; -} - -.copyTooltip i { - color: #505050; -} - -.copyTooltip .tooltiptext { - background-color: #555; - color: #fff; - text-align: center; - border-radius: 6px; - padding: 4px 0px; - font-size: 14px; - position: absolute; - z-index: 1000000000; - right: -21px; - bottom: 30px; - opacity: 0; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; - display: none; - width: 57px; -} - -.copyTooltip .tooltiptext::after { - content: ""; - position: absolute; - top: 26px; - right: 22px; - margin-left: -5px; - border-width: 5px; - border-style: solid; - border-color: #555 transparent transparent transparent; -} - -.copyTooltip:hover .tooltiptext { - visibility: visible; - opacity: 1; - display: block; -} diff --git a/community/tools/graphiql-online/src/components/Error/ErrorBoundary.js b/community/tools/graphiql-online/src/components/Error/ErrorBoundary.js deleted file mode 100644 index dbcc8d1059b..00000000000 --- a/community/tools/graphiql-online/src/components/Error/ErrorBoundary.js +++ /dev/null @@ -1,62 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import Spinner from '../Common/Spinner/Spinner'; - -import PageNotFound, { NotFoundError } from './PageNotFound'; - -class ErrorBoundary extends React.Component { - initialState = { - hasError: false, - info: null, - error: null, - type: '500', - }; - - constructor(props) { - super(props); - - this.state = this.initialState; - } - - resetState = () => { - this.setState({ ...this.initialState }); - }; - - componentDidCatch(error, info) { - const { dispatch } = this.props; - - // for invalid path segment errors - if (error instanceof NotFoundError) { - this.setState({ - type: '404', - }); - } - - this.setState({ hasError: true, info: info, error: error }); - } - - render() { - const { metadata } = this.props; - const { hasError, type, error } = this.state; - - if (hasError && metadata.ongoingRequest) { - return ( -
- -
- ); - } - - if (hasError) { - - } - - return this.props.children; - } -} - -ErrorBoundary.propTypes = { - children: PropTypes.element, -}; - -export default ErrorBoundary; diff --git a/community/tools/graphiql-online/src/components/Error/ErrorPage.scss b/community/tools/graphiql-online/src/components/Error/ErrorPage.scss deleted file mode 100644 index ac33f894368..00000000000 --- a/community/tools/graphiql-online/src/components/Error/ErrorPage.scss +++ /dev/null @@ -1,52 +0,0 @@ -.container { - padding: 0; -} - -.viewContainer { - height: 100vh; - width: 100vw; - display: table; - - .centerContent{ - display: table-cell; - vertical-align: middle; - - .message { - padding: 50px 20%; - } - - .message h1 { - font-size: 54px; - font-weight: bold; - } - - .message p { - margin-left: 15px; - } - - .message p > a { - font-weight: bold; - } - - .errorStack { - max-height: 300px; - width: 450px; - } - } -} - -.header { - background: #eee; - - h2 { - margin: 0; - padding: 26px; - float: left; - line-height: 26px; - } - - .nav { - padding: 20px; - float: left; - } -} diff --git a/community/tools/graphiql-online/src/components/Error/PageNotFound.js b/community/tools/graphiql-online/src/components/Error/PageNotFound.js deleted file mode 100644 index 320777c203c..00000000000 --- a/community/tools/graphiql-online/src/components/Error/PageNotFound.js +++ /dev/null @@ -1,44 +0,0 @@ -import PropTypes from 'prop-types'; -import React, { Component } from 'react'; -import { connect } from 'react-redux'; - -import { Link } from 'react-router'; -import Helmet from 'react-helmet'; - -export class NotFoundError extends Error {} - -class PageNotFound extends Component { - render() { - const styles = require('./ErrorPage.scss'); - - const { resetCallback } = this.props; - - return ( -
- -
-
-
-

404

-
-
- This page doesn't exist. Head back{' '} - - Home - - . -
-
-
-
-
- ); - } -} - -PageNotFound.propTypes = { - dispatch: PropTypes.func.isRequired, - resetCallback: PropTypes.func.isRequired, -}; - -export default connect()(PageNotFound); diff --git a/community/tools/graphiql-online/src/components/Login/App.css b/community/tools/graphiql-online/src/components/Login/App.css deleted file mode 100644 index d3e98967559..00000000000 --- a/community/tools/graphiql-online/src/components/Login/App.css +++ /dev/null @@ -1,83 +0,0 @@ -@import url('https://fonts.googleapis.com/css?family=Raleway:400,600'); -@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400'); -body -{ - font-family: 'Open Sans'; - font-size: 16px; - margin: 0; -} -.login { - text-align: center; -} -.loginTextbox { - font-size: 16px; - height: 43px; - width: 74%; - margin-right: 1%; - font-weight: 300; - border: 1px solid #ececec; - border-radius: 5px; - padding: 0; - padding-left: 10px; - display: inline-block; - -} -.loginButton { - height: 45px; - width: 10%; - display: inline-block; - border-radius: 5px; - background-color: 'green' !important; - cursor: pointer; - font-size: 16px; - margin-right: 1%; -} -.loginButton:hover -{ - background-color: #f6f6f6; -} -.loginHeading { - text-align: center; - font-family: 'Raleway'; - margin-top: 0; - padding-bottom: 20px; -} -.loginWrapper -{ - width: 600px; - padding: 30px; - margin: 0 auto; - position: fixed; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - border: 1px solid #ececec; - border-radius: 5px; - background-color: #f6f6f6; -} -.footerWrapper { - position: fixed; - bottom: 20px; - width: 100%; - display: flex; - justify-content: center; -} -.apiHasura { - font-size: 14px; - text-align: right; -} -.apiHasura i { - color: #757575;; - font-size: 22px; -} -.apiHasura i:hover { - color: #000; -} -.built { - text-align: right; - font-size: 14px; - margin-right: 10px; -} -.built i { - color: #f93c18; -} diff --git a/community/tools/graphiql-online/src/components/Login/Login.js b/community/tools/graphiql-online/src/components/Login/Login.js deleted file mode 100644 index 3c70fb7b6c1..00000000000 --- a/community/tools/graphiql-online/src/components/Login/Login.js +++ /dev/null @@ -1,89 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import Helmet from 'react-helmet'; -import './App.css'; -import { updateGraphQLEndpoint } from '../Services/ApiExplorer/Actions'; - -class LoginComponent extends React.Component { - constructor() { - super(); - this.state = { graphqlEndpoint: '' }; - } - setGraphQLEndpoint(e) { - this.setState({ graphqlEndpoint: e.target.value }); - } - render() { - const { dispatch } = this.props; - return ( -
-
- -

Online GraphiQL

-
-
-
- - - -
-
-
-
-
- Built with by Hasura -
-
- - - -
-
-
- ); - } -} - -LoginComponent.propTypes = { - dispatch: PropTypes.func.isRequired, -}; - -const generatedLoginComponent = connect => { - const mapStateToProps = state => { - return { - ...state.apiexplorer, - }; - }; - return connect(mapStateToProps)(LoginComponent); -}; - -export default generatedLoginComponent; - diff --git a/community/tools/graphiql-online/src/components/Services/ApiExplorer/Actions.js b/community/tools/graphiql-online/src/components/Services/ApiExplorer/Actions.js deleted file mode 100644 index 249aa487a41..00000000000 --- a/community/tools/graphiql-online/src/components/Services/ApiExplorer/Actions.js +++ /dev/null @@ -1,613 +0,0 @@ -import defaultState from './state'; -import requestAction from '../../../utils/requestAction'; - -import { SubscriptionClient } from 'subscriptions-transport-ws'; -import { WebSocketLink } from 'apollo-link-ws'; -import { parse } from 'graphql'; -import { execute } from 'apollo-link'; -import { push } from 'react-router-redux'; - -import { getHeadersAsJSON } from './utils'; -import { saveAppState, clearState } from '../../AppState.js'; - -const CHANGE_TAB = 'ApiExplorer/CHANGE_TAB'; -const CHANGE_API_SELECTION = 'ApiExplorer/CHANGE_API_SELECTION'; -const EXPAND_AUTH_API = 'ApiExplorer/EXPAND_AUTH_API'; -const CODE_GENERATOR_OPEN = 'ApiExplorer/CODE_GENERATOR_OPEN'; -const CODE_GENERATOR_CLOSE = 'ApiExplorer/CODE_GENERATOR_CLOSE'; -const CODE_GENERATOR_CHANGE_SELECTION = - 'ApiExplorer/CODE_GENERATOR_CHANGE_SELECTION'; -const CODE_GENERATOR_COPY_TO_CLIPBOARD = - 'ApiExplorer/CODE_GENERATOR_COPY_TO_CLIPBOARD'; - -const REQUEST_METHOD_CHANGED = 'ApiExplorer/REQUEST_METHOD_CHANGED'; -const REQUEST_URL_CHANGED = 'ApiExplorer/REQUEST_URL_CHANGED'; -const REQUEST_PARAMS_CHANGED = 'ApiExplorer/REQUEST_PARAMS_CHANGED'; -const REQUEST_HEADER_CHANGED = 'ApiExplorer/REQUEST_HEADER_CHANGED'; -const REQUEST_HEADER_ADDED = 'ApiExplorer/REQUEST_HEADER_ADDED'; -const REQUEST_HEADER_REMOVED = 'ApiExplorer/REQUEST_HEADER_REMOVED'; -const SET_INITIAL_HEADER_DATA = 'ApiExplorer/SET_INITIAL_HEADER_DATA'; - -const MAKING_API_REQUEST = 'ApiExplorer/MAKING_API_REQUEST'; -const RESET_MAKING_REQUEST = 'ApiExplorer/RESET_MAKING_REQUEST'; -const API_REQUEST_SUCCESS = 'ApiExplorer/API_REQUEST_SUCCESS'; -const API_REQUEST_FAILURE = 'ApiExplorer/API_REQUEST_FAILURE'; - -const CLEAR_HISTORY = 'ApiExplorer/CLEAR_HISTORY'; -const UPDATE_FILE_OBJECT = 'ApiExplorer/UPDATE_FILE_OBJECT'; - -const CREATE_WEBSOCKET_CLIENT = 'ApiExplorer/CREATE_WEBSOCKET_CLIENT'; - -const FOCUS_ROLE_HEADER = 'ApiExplorer/FOCUS_ROLE_HEADER'; -const UNFOCUS_ROLE_HEADER = 'ApiExplorer/UNFOCUS_ROLE_HEADER'; - -const GRAPHQL_ENDPOINT_CHANGED = 'ApiExplorer/GRAPHQL_ENDPOINT_CHANGED'; - -const clearHistory = () => { - return { - type: CLEAR_HISTORY, - }; -}; - -const updateGraphQLEndpoint = (endpoint) => { - return (dispatch) => { - dispatch({ type: GRAPHQL_ENDPOINT_CHANGED, data: endpoint }); - // set local storage - window.localStorage.setItem('ONLINE_GRAPHIQL_ENDPOINT', endpoint); - dispatch(push('/graphiql')); - }; -}; - -// This method adds a new empty header if no empty header is present -const getChangedHeaders = (headers, changedHeaderDetails) => { - const changedHeaderIndex = changedHeaderDetails.index; - - const newHeaders = Object.assign([], headers); - - if (newHeaders[changedHeaderIndex].isNewHeader) { - newHeaders[changedHeaderIndex].isNewHeader = false; - newHeaders[changedHeaderIndex].isActive = true; - newHeaders[changedHeaderIndex].isDisabled = false; - } - - if (changedHeaderDetails.keyName === 'isActive') { - newHeaders[changedHeaderIndex].isActive = !newHeaders[changedHeaderIndex] - .isActive; - } else { - newHeaders[changedHeaderIndex][changedHeaderDetails.keyName] = - changedHeaderDetails.newValue; - } - - newHeaders[changedHeaderIndex].isDisabled = - changedHeaderDetails.isDisabled === true; - - const nonEmptyHeaders = newHeaders.filter(header => { - return !header.isNewHeader; - }); - - nonEmptyHeaders.push({ - key: '', - value: '', - isActive: false, - isNewHeader: true, - isDisabled: false, - }); - - return nonEmptyHeaders; -}; - -const updateFileObject = fileObj => { - return { type: UPDATE_FILE_OBJECT, data: fileObj }; -}; - -const focusHeaderTextbox = () => ({ type: FOCUS_ROLE_HEADER }); -const unfocusTypingHeader = () => ({ type: UNFOCUS_ROLE_HEADER }); - -const copyCodeToClipboard = isCopying => { - return { - type: CODE_GENERATOR_COPY_TO_CLIPBOARD, - data: isCopying, - }; -}; - -const changeCodeGeneratorSelection = newSelection => { - return { - type: CODE_GENERATOR_CHANGE_SELECTION, - data: newSelection, - }; -}; - -const changeRequestMethod = newMethod => { - return { - type: REQUEST_METHOD_CHANGED, - data: newMethod, - }; -}; - -const changeRequestUrl = newUrl => { - return { - type: REQUEST_URL_CHANGED, - data: newUrl, - }; -}; - -const changeRequestParams = newParams => { - return dispatch => { - dispatch({ type: REQUEST_PARAMS_CHANGED, data: newParams }); - }; -}; - -const createWsClient = (url, headers) => { - const gqlUrl = new URL(url); - const websocketProtocol = gqlUrl.protocol === 'https:' ? 'wss' : 'ws'; - const headersFinal = getHeadersAsJSON(headers); - const graphqlUrl = `${websocketProtocol}://${url.split('//')[1]}`; - const client = new SubscriptionClient(graphqlUrl, { - connectionParams: { - headers: { - ...headersFinal, - }, - }, - reconnect: true, - }); - return client; -}; - -const graphqlSubscriber = (graphQLParams, url, headers) => { - const link = new WebSocketLink(createWsClient(url, headers)); - try { - const fetcher = operation => { - operation.query = parse(operation.query); - return execute(link, operation); - }; - return fetcher(graphQLParams); - } catch (e) { - return e.json(); - } -}; - -const isSubscription = graphQlParams => { - const queryDoc = parse(graphQlParams.query); - for (const definition of queryDoc.definitions) { - if (definition.kind === 'OperationDefinition') { - const operation = definition.operation; - if (operation === 'subscription') { - return true; - } - } - } - return false; -}; - -const graphQLFetcherFinal = (graphQLParams, url, headers) => { - if (isSubscription(graphQLParams)) { - return graphqlSubscriber(graphQLParams, url, headers); - } - return fetch(url, { - method: 'POST', - headers: getHeadersAsJSON(headers), - body: JSON.stringify(graphQLParams), - }).then(response => response.json()); -}; - -const setInitialHeaderState = headerObj => { - return { - type: SET_INITIAL_HEADER_DATA, - data: headerObj, - }; -}; - -const changeRequestHeader = (index, key, newValue, isDisabled) => { - return (dispatch, getState) => { - const currentState = getState().apiexplorer; - - const updatedHeader = { - index: index, - keyName: key, - newValue: newValue, - isDisabled: isDisabled, - }; - - const updatedHeaders = getChangedHeaders( - currentState.displayedApi.request.headers, - updatedHeader - ); - - dispatch({ - type: REQUEST_HEADER_CHANGED, - data: updatedHeaders, - }); - - return Promise.resolve(updatedHeaders); - }; -}; - -const removeRequestHeader = index => { - return (dispatch, getState) => { - const currentState = getState().apiexplorer; - - const updatedHeaders = currentState.displayedApi.request.headers.filter( - (header, i) => { - return !(i === index); - } - ); - - dispatch({ - type: REQUEST_HEADER_REMOVED, - data: updatedHeaders, - }); - - // const { headers } = getState().apiexplorer.displayedApi.request; - return Promise.resolve(updatedHeaders); - }; -}; - -const addRequestHeader = (key, value) => ({ - type: REQUEST_HEADER_ADDED, - data: { - key: key, - value: value, - }, -}); - -const generateApiCodeClicked = () => { - return { - type: CODE_GENERATOR_OPEN, - }; -}; - -const closeCodeGeneratorClicked = () => { - return { - type: CODE_GENERATOR_CLOSE, - }; -}; - -const changeTabSelection = newSelectionIndex => { - return { - type: CHANGE_TAB, - data: newSelectionIndex, - }; -}; - -const changeApiSelection = (newSelectedApi, index) => { - return { - type: CHANGE_API_SELECTION, - data: newSelectedApi, - index: index, - }; -}; - -const editGeneratedJson = () => { - return (dispatch, getState) => { - const tabs = getState().apiexplorer.tabs; - if ( - tabs[0] && - tabs[0].content && - tabs[0].content[0] && - tabs[0].content[0].content[1] - ) { - const newSelectedApi = tabs[0].content[0].content[2]; - const existingJson = getState().apiexplorer.displayedApi.request.params; - newSelectedApi.request.params = existingJson; - dispatch(changeApiSelection(newSelectedApi, 'Username-password Login')); - } - }; -}; - -const expandAuthApi = index => { - return { - type: EXPAND_AUTH_API, - data: index, - }; -}; - -// This method adds the new header and moves the empty header to the bottom of the list -const getHeadersAfterAddingNewHeader = (headers, newHeader) => { - const nonEmptyHeaders = headers.filter(header => { - return !header.isNewHeader; - }); - nonEmptyHeaders.push(newHeader); - nonEmptyHeaders.push({ - key: '', - value: '', - isActive: false, - isNewHeader: true, - }); - return nonEmptyHeaders; -}; - -const getStateAfterAddingRequestToHistory = oldState => { - const newState = Object.assign({}, oldState); - // Check if history is present - const isHistoryPresent = newState.tabs[1].content.length > 0; - if (!isHistoryPresent) { - newState.tabs[1].content.push( - { - title: 'Clear History', - content: [], - }, - { - title: '', - content: [], - } - ); - } - const index = newState.tabs[1].content[1].content.length; - const newRequest = { - id: 'History-' + index, - details: { - title: newState.displayedApi.details.title, - description: '', - }, - request: newState.displayedApi.request, - }; - newState.tabs[1].content[1].content.unshift(newRequest); - - // Saving the state to the local storage - saveAppState(newState.tabs[1]); - - return newState; -}; - -const getStateAfterClearingHistory = state => { - clearState(); - return { - ...state, - tabs: [ - state.tabs[0], - { - ...state.tabs[1], - content: [], - }, - ], - }; -}; - -const getRemoteQueries = (queryUrl, cb) => { - fetch(queryUrl) - .then(resp => resp.text().then(cb)) - .catch(e => console.error('Invalid query file URL: ', e)); -}; - -const apiExplorerReducer = (state = defaultState, action) => { - switch (action.type) { - case CHANGE_TAB: - return { - ...state, - currentTab: action.data, - }; - case CHANGE_API_SELECTION: - return { - ...state, - displayedApi: action.data, - explorerData: { - ...state.explorerData, - response: {}, - }, - }; - case EXPAND_AUTH_API: - return { - ...state, - authApiExpanded: action.data, - }; - case CODE_GENERATOR_OPEN: - return { - ...state, - modalState: { - ...state.modalState, - isOpen: true, - }, - }; - case CODE_GENERATOR_CLOSE: - return { - ...state, - modalState: { - ...state.modalState, - isOpen: false, - }, - }; - case CODE_GENERATOR_CHANGE_SELECTION: - return { - ...state, - modalState: { - ...state.modalState, - selectedCodeGen: action.data, - }, - }; - case CODE_GENERATOR_COPY_TO_CLIPBOARD: - return { - ...state, - modalState: { - ...state.modalState, - isCopied: action.data, - }, - }; - case REQUEST_METHOD_CHANGED: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - method: action.data, - }, - }, - }; - case REQUEST_URL_CHANGED: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - url: action.data, - }, - }, - }; - case REQUEST_PARAMS_CHANGED: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - params: action.data, - }, - }, - }; - case REQUEST_HEADER_CHANGED: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - headers: [...action.data], - }, - }, - }; - - case SET_INITIAL_HEADER_DATA: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - headers: [...action.data], - }, - }, - }; - case REQUEST_HEADER_ADDED: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - headers: getHeadersAfterAddingNewHeader( - state.displayedApi.request.headers, - { - key: action.data.key, - value: action.data.value, - isActive: true, - isNewHeader: false, - } - ), - }, - }, - }; - case MAKING_API_REQUEST: - return { - ...state, - explorerData: { - ...state.explorerData, - sendingRequest: true, - enableResponseSection: false, - response: {}, - }, - }; - case API_REQUEST_SUCCESS: - const newState = getStateAfterAddingRequestToHistory(state); - return { - ...newState, - explorerData: { - ...newState.explorerData, - sendingRequest: false, - enableResponseSection: true, - response: action.data, - }, - }; - case API_REQUEST_FAILURE: - const newState2 = getStateAfterAddingRequestToHistory(state); - return { - ...newState2, - explorerData: { - ...newState2.explorerData, - sendingRequest: false, - enableResponseSection: true, - response: action.data, - }, - }; - case REQUEST_HEADER_REMOVED: - return { - ...state, - displayedApi: { - ...state.displayedApi, - request: { - ...state.displayedApi.request, - headers: [...action.data], - }, - }, - }; - case CLEAR_HISTORY: - return { ...state, ...getStateAfterClearingHistory(state) }; - case UPDATE_FILE_OBJECT: - return { - ...state, - explorerData: { - ...state.explorerData, - fileObj: action.data, - }, - }; - case RESET_MAKING_REQUEST: - return { - ...state, - explorerData: { - ...state.explorerData, - sendingRequest: false, - enableResponseSection: false, - }, - }; - case CREATE_WEBSOCKET_CLIENT: - return { - ...state, - webSocketClient: action.data, - }; - case UNFOCUS_ROLE_HEADER: - return { - ...state, - headerFocus: false, - }; - case FOCUS_ROLE_HEADER: - return { - ...state, - headerFocus: true, - }; - case GRAPHQL_ENDPOINT_CHANGED: - return { - ...state, - graphqlEndpoint: action.data, - }; - default: - return state; - } -}; - -export default apiExplorerReducer; - -export { - changeTabSelection, - changeApiSelection, - expandAuthApi, - generateApiCodeClicked, - closeCodeGeneratorClicked, - changeCodeGeneratorSelection, - copyCodeToClipboard, - changeRequestMethod, - changeRequestUrl, - changeRequestParams, - changeRequestHeader, - addRequestHeader, - removeRequestHeader, - clearHistory, - updateFileObject, - editGeneratedJson, - graphQLFetcherFinal, - createWsClient, - focusHeaderTextbox, - unfocusTypingHeader, - getRemoteQueries, - setInitialHeaderState, - updateGraphQLEndpoint, -}; diff --git a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorer.js b/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorer.js deleted file mode 100644 index e5a0e18ad32..00000000000 --- a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorer.js +++ /dev/null @@ -1,81 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import Helmet from 'react-helmet'; - -import ApiRequestWrapper from './ApiRequestWrapper'; - -class ApiExplorer extends Component { - componentDidMount() { - let localStorageUrl; - if (window.__env.graphqlEndpoint && window.__env.graphqlEndpoint !== 'undefined') { - localStorageUrl = window.__env.graphqlEndpoint; - } else { - localStorageUrl = window.localStorage.getItem('ONLINE_GRAPHIQL_ENDPOINT'); - } - if (!this.props.graphqlEndpoint && (localStorageUrl === 'undefined' || localStorageUrl === null)) { - this.props.dispatch(push('/')); - } - } - - render() { - const { - displayedApi, - credentials, - explorerData, - route, - dataHeaders, - tables, - headerFocus, - location, - serverVersion, - serverConfig, - } = this.props; - - const styles = require('./ApiExplorer.scss'); - const consoleUrl = window.location.protocol + '//' + window.location.host; - - let localStorageUrl; - if (window.__env.graphqlEndpoint && window.__env.graphqlEndpoint !== 'undefined') { - localStorageUrl = window.__env.graphqlEndpoint; - } else { - localStorageUrl = window.localStorage.getItem('ONLINE_GRAPHIQL_ENDPOINT'); - } - - return ( -
- -
- -
-
- ); - } -} - -ApiExplorer.propTypes = { - modalState: PropTypes.object.isRequired, - displayedApi: PropTypes.object.isRequired, - dispatch: PropTypes.func.isRequired, - route: PropTypes.object.isRequired, - tables: PropTypes.array.isRequired, - headerFocus: PropTypes.bool.isRequired, - location: PropTypes.object.isRequired, -}; - -export default ApiExplorer; diff --git a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorer.scss b/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorer.scss deleted file mode 100644 index 3fa6b3ff5e1..00000000000 --- a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorer.scss +++ /dev/null @@ -1,867 +0,0 @@ -@import "../../Common/Common.scss"; - -.display_inl { - display: inline-block; -} - -.analyzerBearerModal { - width: 768px; -} -.analyzerLabel { - text-transform: uppercase; - margin: 0; - font-size: 12px; - color: #000; - zoom: 1; - border-bottom: 1px solid rgba(155,155,155,0.5); - line-height: 2.5; - padding-bottom: 2px; - .token_validity { - font-size: 14px; - .invalid_jwt_icon { - // cursor: pointer; - color: #dc3545; - } - .valid_jwt_token { - // cursor: pointer; - color: #28a745; - } - } - span { - color: #979797; - margin-left: 5px; - display: inline-block; - } -} -.jwt_verification_fail_message { - background-color: #e53935; - padding: 10px 10px; - color: #ffffff; - border-radius: 5px; -} -.width_80 { - width: 80%; -} - -.responseHeader { - color: #788095; - font-weight: bold; - font-size: 14px; -} - -.admin_token_align { - vertical-align: middle; - margin-left: 2px; -} - -.marginBottom { - margin-bottom: 15px; -} - -.apiExplorerMini { - width: 80%; -} - -.wrapperOnBoarding { - // width: 80% !important; -} - -.panelGreyed { - opacity: 0.1; -} - -.requestGreyed { - opacity: 0.1; -} - -.panelInFocus { - -} - -.requestInFocus { - -} - -.cursorNotAllowed { - cursor: not-allowed; -} - -.apiExplorerWrapper { - display: flex; - height: $mainContainerHeight; - - .ApiRequestWrapperVH { - height: 100%; - width: 100%; - } - - .apiCollectionWrapper { - background-color: #fff; - height: 100%; - overflow-y: auto; - // Changed it from overfllow-y: scroll - - .apiCollectionTabWrapper { - .apiCollectionTab { - -webkit-padding-start: 0px; - -webkit-margin-before: 0; - -webkit-margin-after: 0; - -moz-padding-start: 0px; - -moz-margin-before: 0; - -moz-margin-after: 0; - border-bottom: 1px solid #D8D8D8; - position: absolute; - width: 20%; - min-width: 240px; - background-color: #fff; - z-index: 10; - - .apiCollectionTabList { - list-style-type: none; - display: inline-block; - width: 50%; - text-align: center; - padding: 10px 11px; - font-weight: bold; - font-size: 16px; - color: #D8D8D8; - cursor: pointer; - } - - .activeApiCollectionTab { - border-bottom: 3px solid #ffca27; - color: #6B6B6B; - } - - .apiCollectionTabList:focus { - outline: none; - } - } - - .apiCollectionClearHistory { - padding: 0 15px; - margin: 0; - border-bottom: 1px solid #e5e5e5; - /* - position: absolute; - bottom: 0; - transform: translateX(-88%); - */ - - .apiCollectionClearHistoryButton { - /* - float: right; - margin: 10px 0; - cursor: pointer; - */ - margin: 10px 0; - cursor: pointer; - position: fixed; - bottom: 15px; - text-align: center; - width: 20%; - margin-left: -15px; - padding-top: 10px; - border-top: 1px solid #ccc; - background-color: #fff; - z-index: 1; - - i { - padding-right: 5px; - } - - } - } - - .apiPaddTop { - padding-top: 46px !important; - } - - .apiCollectionTabListDetails { - padding: 0 15px; - margin: 10px 0; - // padding-top: 46px; - - .apiCollectionTabListHead { - padding-left: 15px; - padding-bottom: 10px; - font-weight: bold; - font-size: 15px; - - .serviceBaseDomain { - color: #bbb; - } - } - - .add_ellipsis { - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; - } - - .apiCollectionGetPost { - .apiCollectionGetWrapper { - padding: 5px 0; - cursor: pointer; - - .apiCollectionGet { - text-align: left; - color: #70CD00; - font-size: 12px; - font-weight: bold; - padding-left: 15px; - } - - .apiCollectionGetDetailsWrapper { - display: flex; - align-items: center; - - .apiCollectionGetDetails { - word-wrap: break-word; - padding-right: 10px !important - } - - .apiCollectionPostDetails { - word-wrap: break-word; - padding-right: 10px !important - } - - .apiRightArrowWrapper { - padding-left: 5px; - } - } - - .activeApiCollectionGetWrapperIcon { - display: none; - } - } - - .activeApiCollectionGetWrapper { - background-color: #FFF3D5; - border-radius: 4px; - - .activeApiCollectionGetWrapperIcon { - display: block; - } - } - - .apiCollectionPostWrapper { - padding: 5px 0; - cursor: pointer; - - .apiCollectionPost { - text-align: left; - color: #FD9540; - font-size: 12px; - font-weight: bold; - padding-left: 15px; - } - - .apiCollectionGetDetailsWrapper { - display: flex; - align-items: center; - - .apiCollectionGetDetails { - word-wrap: break-word; - padding-right: 10px !important - } - - .apiCollectionPostDetails { - word-wrap: break-word; - padding-right: 10px !important - } - - .apiRightArrowWrapper { - padding-left: 5px; - } - } - - .activeApiCollectionGetWrapperIcon { - display: none; - } - } - - .activeApiCollectionGetWrapper { - background-color: #FFF3D5; - border-radius: 4px; - - .activeApiCollectionGetWrapperIcon { - display: block; - } - } - } - } - } - } - - .apiContentPadd { - padding-top: 20px; - border-color: rgba(23, 42, 58, .1); - border-width: 2px; - border-bottom-style: solid; - padding-bottom: 10px; - width: 100%; - float: left; - } - - .closeHeader { - cursor: pointer; - font-size: 16px; - float: right; - display: inline-block; - } - - .showAdminSecret, .showInspector { - cursor: pointer; - padding-right: 8px; - font-size: 16px; - float: left; - display: inline-block; - } - - .showInspectorLoading { - cursor: pointer; - font-size: 16px; - float: left; - display: inline-block; - } - - .apiRequestWrapper { - margin-bottom: 5px; - .headerWrapper { - margin-bottom: 20px; - } - .file_upload_wrapper { - width: 100%; - text-align: left; - display: inline-block; - padding: 20px; - border: 1px solid #ccc; - background-color: #fff; - margin-bottom: 15px; - - input[type="file"] { - display: inline-block; - width: 162px; - } - } - - .apiRequestheader { - font-weight: bold; - font-size: 18px; - padding-bottom: 10px; - color: #000; - } - - .apiHasura { - font-size: 14px; - text-align: right; - i { - color: #757575;; - font-size: 22px; - position: absolute; - right: 15px; - top: 15px; - } - i:hover { - color: #000; - } - } - .built { - text-align: right; - font-size: 14px; - position: absolute; - right: 40px; - top: 16px; - i { - color: #f93c18; - } - } - - .changeEndpoint { - padding: 10px 10px !important; - margin-left: 10px; - } - - .apiRequestContent { - font-size: 14px; - font-weight: bold; - - a { - color: #FEC53D; - text-decoration: underline; - } - - a:hover { - color: #FEC53D; - text-decoration: underline; - } - - code { - background-color: transparent; - border: 1px solid #767E93; - padding: 1px 4px !important; - color: #767E93; - } - } - - .apiPostRequestWrapper { - // padding: 20px 0; - // padding-top: 20px; - padding-top: 5px; - background-color: #f8fafb; - - .inputGroupWrapper { - -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - border-radius: 5px; - - .inputGroupBtn { - button { - width: 100px; - border: 0; - padding: 10px 12px; - background-color: #F9F9F9; - color: #FD9540; - font-size: 14px; - font-weight: bold; - text-align: left; - - .caret { - position: absolute; - right: 10px; - top: 16px; - } - } - } - - .inputGroupInput { - border: 0; - box-shadow: none; - padding: 10px 12px; - height: auto; - background-color: #fff; - } - } - - .sendBtn { - button { - width: 100%; - text-align: center; - height: 39px; - color: #606060; - font-weight: bold; - border-radius: 5px; - background-color: #FEC53D; - border: 1px solid #FEC53D; - /* - background-color: #FFCA27; - border: 1px solid #FFCA27; - */ - &:hover { - background-color: #F2B130; - } - } - - /* - button:hover { - border: 1px solid #F2B130; - background-color: #F2B130; - } - */ - } - - .generateBtn { - button { - width: 100%; - background-color: transparent; - text-align: center; - height: 39px; - border: 1px solid #606060; - color: #606060; - font-weight: bold; - border-radius: 5px; - } - - button:hover { - border: 1px solid #606060; - background-color: #efefef; - } - } - } - - .responseWrapper { - clear: both; - display: flex; - align-items: center; - - .responseHeader { - color: #788095; - font-weight: bold; - font-size: 14px; - - .viewDetails { - padding-left: 10px; - font-weight: normal; - color: #FFCA27; - } - - .addAdminToken { - text-align: right; - padding-left: 15px; - } - } - - .addAdminToken { - text-align: right; - padding-left: 15px; - } - } - } - - .apiResponseWrapper { - .apiResponseheaderWrapper { - border-bottom: 1px solid #ccc; - margin-bottom: 20px; - - .apiResponseheader { - font-weight: bold; - font-size: 14px; - padding-bottom: 10px; - // color: #000; - color: #788095 - } - - .statusDetails { - display: inline-block; - float: right; - padding-left: 20px; - - .statusView { - padding-left: 5px; - font-weight: normal; - color: #FFCA27; - } - } - } - - .helpTextWrapper { - padding: 15px; - border: 1px solid #ccc; - background-color: #fff; - clear: both; - margin-bottom: 20px; - - i { - padding-right: 10px; - } - - pre { - margin-top: 10px; - border-radius: 0; - } - - .copyBtn { - padding: 9px; - } - } - - .suggestionTextColor { - color: #111; - background-color: #ffd760; - border-color: #ffd760; - } - - .noResponseWrapper { - width: 100%; - min-height: 200px; - background-color: #fff; - -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - clear: both; - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 20px; - - .noResponseContainer { - width: 325px; - - .noResponseHeader { - font-size: 18px; - opacity: 0.6; - } - - .barWrapper { - padding-top: 15px; - text-align: center; - - .bigBar { - width: 56%; - margin-right: 7px; - height: 20px; - background-color: #EEEEEE; - display: inline-block; - border-radius: 4px; - } - - .mediumBar { - width: 23%; - margin-right: 7px; - height: 20px; - background-color: #FFCA27; - display: inline-block; - border-radius: 4px; - } - - .smallBar { - width: 13%; - margin-right: 7px; - height: 20px; - background-color: #EEEEEE; - display: inline-block; - border-radius: 4px; - } - } - } - } - - .responseHeader { - padding-top: 15px; - color: #788095; - font-weight: bold; - font-size: 14px; - clear: both; - - .viewDetails { - padding-left: 10px; - font-weight: normal; - color: #FFCA27; - } - } - } -} - -// Common -.responseTable { - padding-top: 15px; - - .tableBorder { - background-color: #fff; - border: 1px solid #E3E5E5; - - thead { - tr { - th { - border-bottom: 0px; - } - } - } - - tbody { - tr { - td { - border-top: 0; - // padding: 5px; - padding: 0px 5px; - min-width: 50px; - vertical-align: middle; - .responseTableInput { - background-color: transparent; - border: 0; - box-shadow: none; - border-radius: 0; - // padding: 0; - } - } - - .headerPadd { - padding: 15px !important; - } - - .borderTop { - border-top: 1px solid #ccc; - } - - .tableTdLeft { - padding-left: 5%; - } - - .tableEnterKey { - // padding: 10px 0; - padding: 0px 5px; - padding-left: 4.5%; - } - - .tableLastTd { - padding-left: 5px !important; - } - } - } - } - - .headerHeading { - background-color: #f5f5f5; - font-weight: bold; - padding-left: 15px; - } -} - -.queryBuilderWrapper { - padding-bottom: 20px; - - .queryBuilderTab { - ul { - border: 1px solid #E7E7E7; - -webkit-padding-start: 0px; - -moz-padding-start: 0px; - display: inline-block; - - li { - list-style-type: none; - display: inline-block; - padding: 12px 20px; - width: 150px; - text-align: center; - color: #788094; - cursor: pointer; - background-color: #fff; - font-weight: bold; - } - - li:focus { - outline: none; - } - - .activeQueryBuilderTab { - background-color: #FFF050; - } - } - } -} - -.AceEditorWrapper { - -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); - /* - margin-top: 15px; - margin-bottom: 20px; - margin-top: 20px; - */ -} - -.queryBuilderLayout { - background-color: #fff; - // padding: 15px; -} - -.queryBuilderLayoutSub { - padding: 20px; -} - -.qbTabHeading { - font-weight: bold; - padding-top: 15px; - padding-left: 20px; - padding-bottom: 15px; - - i { - padding-left: 5px; - } -} - - -.common_checkbox { - opacity: 0; - position: absolute; - - .common_checkbox_label { - display: inline-block; - vertical-align: middle; - margin: 0px; - - cursor: pointer; - position: relative; - } -} - -.common_checkbox_label { - margin-bottom: 0px !important; - padding-top: 0px; - display: flex; -} - -.common_checkbox + .common_checkbox_label:before { - content: ''; - background: #fff; - border: 1px solid #ddd; - display: inline-block; - vertical-align: middle; - width: 16px; - height: 16px; - padding-top: 2px; - margin-right: 2px; - text-align: center; - border-radius:4px; - cursor:pointer; -} - -label { - font-weight: normal; -} - -.common_checkbox:checked + .common_checkbox_label:before { - content: url('./tick.png'); - background: #FFCA27; - color: #fff; - padding-top:0px; -} - -.authPanelSubHeadings { - font-size: 16px; - font-weight: italic; - padding-left: 15px; - padding-bottom: 10px; -} - -.apiResponseTab { - padding-top: 20px; - - .apiResponseTabUl { - display: inline-block; - -webkit-padding-start: 0px; - -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1); - - .apiResponseTabList { - display: inline-block; - padding: 15px 25px; - list-style-type: none; - background-color: #fff; - font-weight: 600; - color: #6B6B6B; - cursor: pointer; - } - - .apiResponseTabList:focus { - outline: none; - } - - .activeApiResponseTab { - background-color: #FFF3D5 - } - } - - .apiResponseTabPanel { - .AceEditorWrapper { - margin-top: 15px; - margin-bottom: 15px; - } - } - - -} diff --git a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorerGenerator.js b/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorerGenerator.js deleted file mode 100644 index 2378dc58a11..00000000000 --- a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiExplorerGenerator.js +++ /dev/null @@ -1,13 +0,0 @@ -import ApiExplorer from './ApiExplorer'; - -const generatedApiExplorer = connect => { - const mapStateToProps = state => { - return { - ...state.apiexplorer, - credentials: {}, - }; - }; - return connect(mapStateToProps)(ApiExplorer); -}; - -export default generatedApiExplorer; diff --git a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiRequest/ApiRequest.js b/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiRequest/ApiRequest.js deleted file mode 100644 index 78d01ef4568..00000000000 --- a/community/tools/graphiql-online/src/components/Services/ApiExplorer/ApiRequest/ApiRequest.js +++ /dev/null @@ -1,590 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; - -import jwt from 'jsonwebtoken'; -import { push } from 'react-router-redux'; - -import TextAreaWithCopy from '../../../Common/TextAreaWithCopy/TextAreaWithCopy'; -import OverlayTrigger from 'react-bootstrap/lib/OverlayTrigger'; -import Tooltip from 'react-bootstrap/lib/Tooltip'; -import ModalWrapper from '../../../Common/ModalWrapper'; - -import { parseAuthHeader } from './utils'; - -import { - changeRequestHeader, - removeRequestHeader, - focusHeaderTextbox, - unfocusTypingHeader, - setInitialHeaderState, -} from '../Actions'; - -import GraphiQLWrapper from '../GraphiQLWrapper/GraphiQLWrapper'; - -import CollapsibleToggle from '../../../Common/CollapsibleToggle/CollapsibleToggle'; - -import { - getEndPointSectionIsOpen, - setEndPointSectionIsOpen, - getHeadersSectionIsOpen, - setHeadersSectionIsOpen, - getGraphiQLHeadersFromLocalStorage, - setGraphiQLHeadersInLocalStorage, -} from './utils'; - -import styles from '../ApiExplorer.scss'; - -const inspectJWTTooltip = ( - Decode JWT -); - -const jwtValidityStatus = message => ( - {message} -); - -/* When the page is loaded for the first time, hydrate the header state from the localStorage - * Keep syncing the localStorage state when user modifies. - * */ - -class ApiRequest extends Component { - constructor(props) { - super(props); - - this.state = { - endpointSectionIsOpen: getEndPointSectionIsOpen(), - headersSectionIsOpen: getHeadersSectionIsOpen(), - isAnalyzingToken: false, - analyzingHeaderRow: -1, - tokenInfo: { - header: {}, - payload: {}, - error: null, - serverResp: {}, - }, - }; - - if (this.props.numberOfTables !== 0) { - const graphqlQueryInLS = window.localStorage.getItem('graphiql:query'); - if (graphqlQueryInLS && graphqlQueryInLS.indexOf('do not have') !== -1) { - window.localStorage.removeItem('graphiql:query'); - } - } - - this.analyzeBearerToken = this.analyzeBearerToken.bind(this); - this.onAnalyzeBearerClose = this.onAnalyzeBearerClose.bind(this); - } - - componentDidMount() { - const { headers } = this.props; - const HEADER_FROM_LS = getGraphiQLHeadersFromLocalStorage(); - if (HEADER_FROM_LS) { - try { - const initialHeader = JSON.parse(HEADER_FROM_LS); - this.props.dispatch(setInitialHeaderState(initialHeader)); - } catch (e) { - console.error(e); - setGraphiQLHeadersInLocalStorage(JSON.stringify(headers)); - } - } else { - setGraphiQLHeadersInLocalStorage(JSON.stringify(headers)); - } - } - - onAnalyzeBearerClose() { - this.setState({ - isAnalyzingToken: false, - analyzingHeaderRow: -1, - }); - } - - changeEndpoint() { - this.props.dispatch(push('/')); - } - - analyzeBearerToken(e) { - const { dispatch } = this.props; - - const token = e.target.getAttribute('token'); - - const analyzingHeaderRow = parseInt( - e.target.getAttribute('data-header-index'), - 10 - ); - - this.setState({ - isAnalyzingToken: true, - analyzingHeaderRow, - tokenInfo: { - ...this.state.tokenInfo, - serverResp: {}, - error: null, - }, - }); - - const decodeAndSetState = serverResp => { - const decoded = jwt.decode(token, { complete: true }); - - if (decoded) { - this.setState({ - tokenInfo: { - ...this.state.tokenInfo, - header: decoded.header, - payload: decoded.payload, - error: null, - serverResp: serverResp, - }, - }); - } else { - const message = - 'This JWT seems to be invalid. Please check the token value and try again!'; - - this.setState({ - tokenInfo: { - ...this.state.tokenInfo, - error: message, - serverResp: serverResp, - }, - }); - } - }; - - } - - render() { - const { isAnalyzingToken, tokenInfo, analyzingHeaderRow } = this.state; - - const { - error: tokenAnalyzeError, - serverResp: tokenAnalyzeResp, - } = tokenInfo; - - const getGraphQLEndpointBar = () => { - const { endpointSectionIsOpen } = this.state; - - const toggleHandler = () => { - const newIsOpen = !endpointSectionIsOpen; - - setEndPointSectionIsOpen(newIsOpen); - - this.setState({ endpointSectionIsOpen: newIsOpen }); - }; - - return ( - -